balibabu
feat: Fetch conversation list by @tanstack/react-query and displays error message that task_executor does not exist #2088 (#2112)
11e3284
| export enum MessageType { | |
| Assistant = 'assistant', | |
| User = 'user', | |
| } | |
| export const variableEnabledFieldMap = { | |
| temperatureEnabled: 'temperature', | |
| topPEnabled: 'top_p', | |
| presencePenaltyEnabled: 'presence_penalty', | |
| frequencyPenaltyEnabled: 'frequency_penalty', | |
| maxTokensEnabled: 'max_tokens', | |
| }; | |
| export enum SharedFrom { | |
| Agent = 'agent', | |
| Chat = 'chat', | |
| } | |
| export enum ChatSearchParams { | |
| DialogId = 'dialogId', | |
| ConversationId = 'conversationId', | |
| } | |
| export const EmptyConversationId = 'empty'; | |