Spestly commited on
Commit
bd453e5
Β·
verified Β·
1 Parent(s): 15b94f7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -92,7 +92,7 @@ class AtlasInferenceApp:
92
 
93
  try:
94
  # Add a system instruction to guide the model's behavior
95
- system_instruction = "You are Atlas, a helpful AI assistant trained to help the user. You are a Deepseek R1 fine-tune."
96
  prompt = f"{system_instruction}\n\n### Instruction:\n{message}\n\n### Response:"
97
 
98
  inputs = st.session_state.current_model["tokenizer"](
 
92
 
93
  try:
94
  # Add a system instruction to guide the model's behavior
95
+ system_instruction = os.getenv("SYS_PROMPT")
96
  prompt = f"{system_instruction}\n\n### Instruction:\n{message}\n\n### Response:"
97
 
98
  inputs = st.session_state.current_model["tokenizer"](