Spaces:
Sleeping
Sleeping
Updated Chatbot to respond
Browse files
app.py
CHANGED
|
@@ -4,7 +4,7 @@ from huggingface_hub import InferenceClient
|
|
| 4 |
|
| 5 |
client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
|
| 6 |
|
| 7 |
-
def
|
| 8 |
messages = ["role": "system", "content": "You are a friendly chatbot"]
|
| 9 |
if history:
|
| 10 |
messages.extend(history)
|
|
|
|
| 4 |
|
| 5 |
client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
|
| 6 |
|
| 7 |
+
def respond(message, history):
|
| 8 |
messages = ["role": "system", "content": "You are a friendly chatbot"]
|
| 9 |
if history:
|
| 10 |
messages.extend(history)
|