ArunAIML commited on
Commit
2003369
·
1 Parent(s): 290179a

Model issue is resolved

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -8,7 +8,7 @@ import os
8
 
9
  prompt = ChatPromptTemplate.from_messages([("system", "You are a helpful AI assistant named Arun."), ("user", "{input}")])
10
 
11
- llm = ChatNVIDIA(model="mixtral_8x7b")
12
  chain = prompt | llm | StrOutputParser()
13
 
14
 
 
8
 
9
  prompt = ChatPromptTemplate.from_messages([("system", "You are a helpful AI assistant named Arun."), ("user", "{input}")])
10
 
11
+ llm = ChatNVIDIA(model="mistralai/mixtral-8x7b-instruct-v0.1")
12
  chain = prompt | llm | StrOutputParser()
13
 
14