chasetank commited on
Commit
ab52a11
·
1 Parent(s): 082f846

fix: model test

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -913,7 +913,7 @@ class ConversationBot:
913
  raise ValueError(
914
  "You have to load ImageCaptioning as a basic function for VisualChatGPT")
915
 
916
- self.llm = OpenAIChat(temperature=0)
917
  self.memory = ConversationBufferMemory(
918
  memory_key="chat_history", output_key='output')
919
 
 
913
  raise ValueError(
914
  "You have to load ImageCaptioning as a basic function for VisualChatGPT")
915
 
916
+ self.llm = OpenAI(temperature=0)
917
  self.memory = ConversationBufferMemory(
918
  memory_key="chat_history", output_key='output')
919