eudoxie commited on
Commit
e589906
·
verified ·
1 Parent(s): e875df3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -46,7 +46,6 @@ rag_chain = (
46
  | llm
47
  | StrOutputParser()
48
  )
49
-
50
  import gradio as gr
51
 
52
  def rag_memory_stream(text):
@@ -57,7 +56,8 @@ def rag_memory_stream(text):
57
 
58
  examples = ['I feel dizzy', 'what is the possible sickness for fatigue']
59
 
60
-
 
61
 
62
 
63
  title = "MediGuide ChatBot"
 
46
  | llm
47
  | StrOutputParser()
48
  )
 
49
  import gradio as gr
50
 
51
  def rag_memory_stream(text):
 
56
 
57
  examples = ['I feel dizzy', 'what is the possible sickness for fatigue']
58
 
59
+ with open('index.html', 'r') as file:
60
+ custom_html = file.read()
61
 
62
 
63
  title = "MediGuide ChatBot"