Update app.py
Browse files
app.py
CHANGED
@@ -32,9 +32,12 @@ def respond(
|
|
32 |
top_p=top_p,
|
33 |
):
|
34 |
token = message.choices[0].delta.content
|
35 |
-
|
36 |
response += token
|
37 |
-
|
|
|
|
|
|
|
|
|
38 |
|
39 |
|
40 |
# Launch the Gradio app with the external CSS file
|
|
|
32 |
top_p=top_p,
|
33 |
):
|
34 |
token = message.choices[0].delta.content
|
|
|
35 |
response += token
|
36 |
+
|
37 |
+
# Add the footer message
|
38 |
+
response += "\nСделано больницей EMS штата Alta!"
|
39 |
+
|
40 |
+
yield response
|
41 |
|
42 |
|
43 |
# Launch the Gradio app with the external CSS file
|