Spaces:
Runtime error
Runtime error
Commit
·
e90fa44
1
Parent(s):
6e71195
Update app.py
Browse files
app.py
CHANGED
@@ -66,7 +66,7 @@ def chat(client: Client):
|
|
66 |
input_text.update(value="")
|
67 |
input_text.submit(
|
68 |
run_chat,
|
69 |
-
[
|
70 |
outputs=[chatbot],
|
71 |
show_progress=False,
|
72 |
)
|
@@ -90,6 +90,7 @@ def chat(client: Client):
|
|
90 |
["Can you tell me more about deep-water soloing?"],
|
91 |
["Can you write a short tweet about the Apache 2.0 release of our latest AI model, Falcon LLM?"],
|
92 |
],
|
|
|
93 |
label="Click on any example and press Enter in the input textbox!",
|
94 |
)
|
95 |
|
|
|
66 |
input_text.update(value="")
|
67 |
input_text.submit(
|
68 |
run_chat,
|
69 |
+
[message, chatbot, instructions, temperature, top_p],
|
70 |
outputs=[chatbot],
|
71 |
show_progress=False,
|
72 |
)
|
|
|
90 |
["Can you tell me more about deep-water soloing?"],
|
91 |
["Can you write a short tweet about the Apache 2.0 release of our latest AI model, Falcon LLM?"],
|
92 |
],
|
93 |
+
inputs=inputs,
|
94 |
label="Click on any example and press Enter in the input textbox!",
|
95 |
)
|
96 |
|