Spaces:
Runtime error
Runtime error
Commit
·
94f7425
1
Parent(s):
c167442
test
Browse files
app.py
CHANGED
@@ -80,8 +80,9 @@ with gr.Blocks() as demo:
|
|
80 |
return {"Vicuna-7B": vicuna_response_chunk}
|
81 |
|
82 |
# Connect the interfaces to the functions
|
83 |
-
send_button_POS.click(chatbot_interface_POS, inputs=
|
84 |
-
send_button_Chunk.click(chatbot_interface_Chunk, inputs=
|
|
|
85 |
|
86 |
|
87 |
|
|
|
80 |
return {"Vicuna-7B": vicuna_response_chunk}
|
81 |
|
82 |
# Connect the interfaces to the functions
|
83 |
+
send_button_POS.click(chatbot_interface_POS, inputs=[prompt_POS, vicuna_chatbot1_POS])
|
84 |
+
send_button_Chunk.click(chatbot_interface_Chunk, inputs=[prompt_chunk, vicuna_chatbot1_chunk])
|
85 |
+
|
86 |
|
87 |
|
88 |
|