Update app.py
Browse files
app.py
CHANGED
|
@@ -62,7 +62,7 @@ def response(prompt, history, selected_option, temperature=0.9, max_new_tokens=5
|
|
| 62 |
output = ""
|
| 63 |
for response in stream:
|
| 64 |
output += response.token.text
|
| 65 |
-
|
| 66 |
|
| 67 |
|
| 68 |
dropdown_options = ["Keine These ausgewählt",
|
|
|
|
| 62 |
output = ""
|
| 63 |
for response in stream:
|
| 64 |
output += response.token.text
|
| 65 |
+
return output
|
| 66 |
|
| 67 |
|
| 68 |
dropdown_options = ["Keine These ausgewählt",
|