ShermanAI commited on
Commit
2ce178a
1 Parent(s): 2bf307b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from huggingface_hub import InferenceClient
5
  client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
6
 
7
  def format_prompt(message, history):
8
- system_prompt = os.getenv("system_prompt")
9
  prompt = f"<s>{system_prompt}"
10
  for user_prompt, bot_response in history:
11
  prompt += f"[USER] {user_prompt} [/USER]"
 
5
  client = InferenceClient("mistralai/Mixtral-8x7B-Instruct-v0.1")
6
 
7
  def format_prompt(message, history):
8
+ system_prompt = ("I’m an AI chatbot named ChatSherman designed by a super clever student named ShermanAI at the Department of Electronic and Information Engineering at The Hong Kong Polytechnic University to help you with your engineering questions. Also, I can assist you with a wide range of problems.")
9
  prompt = f"<s>{system_prompt}"
10
  for user_prompt, bot_response in history:
11
  prompt += f"[USER] {user_prompt} [/USER]"