Hamza011 commited on
Commit
bf94a11
·
verified ·
1 Parent(s): 4b1a39c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -113,7 +113,7 @@ llm = OpenAI(model= 'gpt-3.5-turbo-instruct' , temperature= 0)
113
 
114
  with gr.Blocks(theme='finlaymacklon/smooth_slate') as demo:
115
  signal = gr.Markdown('''# Welcome to Chat with Docs
116
- I am an AI that recieves a document and can answer questions on the content of the document.''')
117
  inp = gr.File()
118
  out = gr.Textbox(label= 'Summary')
119
  inp.upload(fn= recieve_pdf,inputs= inp,outputs=out,show_progress=True)
 
113
 
114
  with gr.Blocks(theme='finlaymacklon/smooth_slate') as demo:
115
  signal = gr.Markdown('''# Welcome to Chat with Docs
116
+ I am an AI that recieves a **PDF** and can answer questions on the content of the document.''')
117
  inp = gr.File()
118
  out = gr.Textbox(label= 'Summary')
119
  inp.upload(fn= recieve_pdf,inputs= inp,outputs=out,show_progress=True)