illioran commited on
Commit
369aa95
1 Parent(s): f1fe436

Change model from mistral to MistralTrix

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,7 +13,7 @@ def respond(message, chat_history,instruction,model,temperature):
13
  if model == "Llama2-Chat":
14
  model = "meta-llama/Llama-2-7b-chat-hf"
15
  else:
16
- model="mistralai/Mistral-7B-Instruct-v0.1"
17
 
18
  client = InferenceClient(model=f"{model}",timeout=30)
19
  formatted_prompt = format_chat_prompt(message,chat_history,instruction)
 
13
  if model == "Llama2-Chat":
14
  model = "meta-llama/Llama-2-7b-chat-hf"
15
  else:
16
+ model="CultriX/MistralTrix-v1"
17
 
18
  client = InferenceClient(model=f"{model}",timeout=30)
19
  formatted_prompt = format_chat_prompt(message,chat_history,instruction)