sultan-hassan commited on
Commit
4c6d55a
·
verified ·
1 Parent(s): 147decf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -7
app.py CHANGED
@@ -81,13 +81,12 @@ examples = ['I feel dizzy', 'what is the possible sickness for fatigue']
81
 
82
 
83
  title = "Real-time AI App with Groq API and LangChain to Answer medical questions"
84
- demo = gr.ChatInterface(
85
- title=title,
86
- fn=rag_memory_stream,
87
- inputs="text",
88
- outputs="text",
89
- examples=examples,
90
- allow_flagging="never",
91
  )
92
 
93
 
 
81
 
82
 
83
  title = "Real-time AI App with Groq API and LangChain to Answer medical questions"
84
+ demo = gr.ChatInterface(rag_memory_stream,
85
+ type="messages",
86
+ title=title,
87
+ fill_height=True,
88
+ examples=examples,
89
+ theme=gr.themes.Soft(),
 
90
  )
91
 
92