runaksh commited on
Commit
c07c1e4
·
1 Parent(s): 9bca116

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -52,7 +52,9 @@ out_response = gradio.outputs.Textbox(label='Answer')
52
  # Gradio interface to generate UI link
53
  iface = gradio.Interface(fn=generate_query_response,
54
  inputs = [in_prompt,in_max_length],
55
- outputs = out_response
 
 
56
  )
57
 
58
  iface.launch(debug = True)
 
52
  # Gradio interface to generate UI link
53
  iface = gradio.Interface(fn=generate_query_response,
54
  inputs = [in_prompt,in_max_length],
55
+ outputs = out_response,
56
+ title=title,
57
+ description=description
58
  )
59
 
60
  iface.launch(debug = True)