Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -5,8 +5,7 @@ from huggingface_hub import InferenceClient
|
|
| 5 |
client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
|
| 6 |
|
| 7 |
def respond(message, history):
|
| 8 |
-
messages = [{"role": "system", "content": "You are an expert in picking out cute outfits based on weather and style. Give a top, bottom, and shoe recommendation
|
| 9 |
-
with details about color, material, and length. Keep the response to 150 words while being friendly and informal!"}]
|
| 10 |
|
| 11 |
if history:
|
| 12 |
messages.extend(history)
|
|
|
|
| 5 |
client = InferenceClient("Qwen/Qwen2.5-7B-Instruct")
|
| 6 |
|
| 7 |
def respond(message, history):
|
| 8 |
+
messages = [{"role": "system", "content": "You are an expert in picking out cute outfits based on weather and style. Give a top, bottom, and shoe recommendation with details about color, material, and length. Keep the response to 150 words while being friendly and informal!"}]
|
|
|
|
| 9 |
|
| 10 |
if history:
|
| 11 |
messages.extend(history)
|