Skip to content

Commit

Permalink
Chat History webapp changes
Browse files Browse the repository at this point in the history
  • Loading branch information
teresaqhoang committed Aug 4, 2023
1 parent 03d4adb commit c161182
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions webapp/src/libs/models/BotResponsePrompt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ export interface BotResponsePrompt {
// Relevant additional knowledge extracted using a planner.
externalInformation: string;

// Recent messages from history of the conversation.
chatHistory: string;

// Preamble to the LLM's response.
systemChatContinuation: string;
}
Expand All @@ -25,5 +28,6 @@ export const PromptSectionsNameMap: Record<string, string> = {
userIntent: 'User Intent',
chatMemories: 'Chat Memories',
externalInformation: 'External Information',
chatHistory: 'Chat History',
systemChatContinuation: 'System Chat Continuation',
};

0 comments on commit c161182

Please sign in to comment.