TRaw commited on
Commit
dafb630
·
1 Parent(s): 16238b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -20,4 +20,6 @@ def predict(message, history):
20
  gpt_response = llm(history_langchain_format)
21
  return gpt_response.content
22
 
23
- gr.ChatInterface(theme='rottenlittlecreature/Moon_Goblin'(predict).launch(share=True)
 
 
 
20
  gpt_response = llm(history_langchain_format)
21
  return gpt_response.content
22
 
23
+ gr.themes.Monochrome()
24
+
25
+ gr.ChatInterface(predict).launch(share=True)