Update app.py
Browse files
app.py
CHANGED
|
@@ -202,7 +202,6 @@ with gr.Blocks(title="🧮 Mathetics AI") as demo:
|
|
| 202 |
)
|
| 203 |
|
| 204 |
def chat_response(message, history):
|
| 205 |
-
"Streaming chat response" # ← Proper indentation
|
| 206 |
history.append({"role": "user", "content": message})
|
| 207 |
history.append({"role": "assistant", "content": ""})
|
| 208 |
|
|
|
|
| 202 |
)
|
| 203 |
|
| 204 |
def chat_response(message, history):
|
|
|
|
| 205 |
history.append({"role": "user", "content": message})
|
| 206 |
history.append({"role": "assistant", "content": ""})
|
| 207 |
|