karar-shah commited on
Commit
b1135e0
1 Parent(s): a753c8e

Update test_gradio.py

Browse files
Files changed (1) hide show
  1. test_gradio.py +6 -6
test_gradio.py CHANGED
@@ -18,11 +18,11 @@ def predict(message, history):
18
  gpt_response = open_chain.run(message)
19
  return gpt_response
20
 
21
- with gr.Blocks() as demo:
22
- gr.Markdown(
23
- """
24
- # Let's think step by step!
25
- I will break your question into steps :)
26
- """)
27
 
28
  gr.ChatInterface(predict).launch(share=False)
 
18
  gpt_response = open_chain.run(message)
19
  return gpt_response
20
 
21
+ gr.Markdown(
22
+ """
23
+ # Let's think step by step!
24
+ I will break your question into steps :)
25
+
26
+ """)
27
 
28
  gr.ChatInterface(predict).launch(share=False)