EGYADMIN commited on
Commit
a8a7c74
·
verified ·
1 Parent(s): bcc0a91

Fix: Add missing DEFAULT_SYSTEM_PROMPT variable

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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.3"# Initialize Inference Client
 
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():