Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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)
|