Spaces:
Runtime error
Runtime error
fix: model test
Browse files
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 =
|
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 |
|