Spaces:
Running
Running
Commit
·
db547d9
1
Parent(s):
72f4061
Fixing indentation issues
Browse files
app.py
CHANGED
@@ -51,10 +51,10 @@ with gr.Blocks() as iface:
|
|
51 |
api_key_input,
|
52 |
)
|
53 |
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
|
60 |
iface.launch()
|
|
|
51 |
api_key_input,
|
52 |
)
|
53 |
|
54 |
+
submit_button.click(
|
55 |
+
agent_fn,
|
56 |
+
[prompt_input, model_name_dropdown, api_key_input],
|
57 |
+
response_output,
|
58 |
+
)
|
59 |
|
60 |
iface.launch()
|