balibabu
fix: Fixed an issue where the first message would be displayed when sending the second message #2625 (#2626)
809dc5c
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', | |
isNew = 'isNew', | |
} | |
export const EmptyConversationId = 'empty'; | |