Fix: Add missing DEFAULT_SYSTEM_PROMPT variable
Browse files
app.py
CHANGED
|
@@ -3,7 +3,8 @@ import os
|
|
| 3 |
from huggingface_hub import InferenceClient
|
| 4 |
|
| 5 |
# Model configuration - Using Inference API
|
| 6 |
-
MODEL_NAME = "mistralai/Mistral-7B-Instruct-v0.
|
|
|
|
| 7 |
client = None
|
| 8 |
|
| 9 |
def init_client():
|
|
|
|
| 3 |
from huggingface_hub import InferenceClient
|
| 4 |
|
| 5 |
# Model configuration - Using Inference API
|
| 6 |
+
MODEL_NAME = "mistralai/Mistral-7B-Instruct-v0.
|
| 7 |
+
DEFAULT_SYSTEM_PROMPT = "You are a helpful AI assistant powered by Mistral."
|
| 8 |
client = None
|
| 9 |
|
| 10 |
def init_client():
|