Spaces:
Runtime error
Runtime error
Mahadih534
commited on
Commit
•
2318c88
1
Parent(s):
a6da436
test
Browse files
app.py
CHANGED
@@ -16,7 +16,7 @@ def predict(message, history):
|
|
16 |
history_langchain_format.append(HumanMessage(content=message))
|
17 |
gpt_response = llm(history_langchain_format)
|
18 |
return gpt_response.content
|
19 |
-
|
20 |
gr.ChatInterface(
|
21 |
predict,
|
22 |
chatbot=gr.Chatbot(height=300),
|
|
|
16 |
history_langchain_format.append(HumanMessage(content=message))
|
17 |
gpt_response = llm(history_langchain_format)
|
18 |
return gpt_response.content
|
19 |
+
|
20 |
gr.ChatInterface(
|
21 |
predict,
|
22 |
chatbot=gr.Chatbot(height=300),
|