Spaces:
Sleeping
Sleeping
Model issue is resolved
Browse files
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="
|
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 |
|