Update app.py
Browse files
app.py
CHANGED
@@ -288,7 +288,7 @@ with gr.Blocks(title="test") as demo:
|
|
288 |
textbox = gr.Textbox(label="Deine Frage")
|
289 |
|
290 |
def combined_response(prompt, history, dropdown_value):
|
291 |
-
answer = responsefull(
|
292 |
return history + [[prompt, answer]]
|
293 |
|
294 |
submit_button = gr.Button("Submit")
|
|
|
288 |
textbox = gr.Textbox(label="Deine Frage")
|
289 |
|
290 |
def combined_response(prompt, history, dropdown_value):
|
291 |
+
answer = responsefull(gr.Request,prompt, history, dropdown_value)
|
292 |
return history + [[prompt, answer]]
|
293 |
|
294 |
submit_button = gr.Button("Submit")
|