feat: support guest session (#919)
This commit is contained in:
parent
24cb2ce19b
commit
9279135355
34 changed files with 741 additions and 288 deletions
29
lib/ai/entitlements.ts
Normal file
29
lib/ai/entitlements.ts
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
import type { UserType } from '@/app/(auth)/auth';
|
||||
import type { ChatModel } from './models';
|
||||
|
||||
interface Entitlements {
|
||||
maxMessagesPerDay: number;
|
||||
availableChatModelIds: Array<ChatModel['id']>;
|
||||
}
|
||||
|
||||
export const entitlementsByUserType: Record<UserType, Entitlements> = {
|
||||
/*
|
||||
* For users without an account
|
||||
*/
|
||||
guest: {
|
||||
maxMessagesPerDay: 20,
|
||||
availableChatModelIds: ['chat-model', 'chat-model-reasoning'],
|
||||
},
|
||||
|
||||
/*
|
||||
* For users with an account
|
||||
*/
|
||||
regular: {
|
||||
maxMessagesPerDay: 100,
|
||||
availableChatModelIds: ['chat-model', 'chat-model-reasoning'],
|
||||
},
|
||||
|
||||
/*
|
||||
* TODO: For users with an account and a paid membership
|
||||
*/
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue