Update streamHandler.ts

pull/5580/head
maradini77 1 month ago committed by Aniket
parent 22ef3f8fe3
commit bc08fd16de
  1. 4
      libs/remix-ai-core/src/helpers/streamHandler.ts

@ -58,6 +58,6 @@ export const HandleStreamResponse = async (streamResponse,
}
}
export const UpdtateChatHistory = (userPromptprompt: string, AIAnswer: string) => {
ChatHistory.pushHistory(userPromptprompt, AIAnswer)
export const UpdateChatHistory = (userPrompt: string, AIAnswer: string) => {
ChatHistory.pushHistory(userPrompt, AIAnswer)
}
Loading…
Cancel
Save