WebashalarForML commited on
Commit
14b02fd
·
verified ·
1 Parent(s): 6e0b574

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -0
app.py CHANGED
@@ -45,6 +45,9 @@ os.environ["GROQ_API_KEY"] = GROQ_API_KEY
45
 
46
  # Use ChatGroq LLM (which does not require a Hugging Face API token)
47
  from langchain_groq import ChatGroq
 
 
 
48
  llm = ChatGroq(model="llama3-70b-8192")
49
 
50
  @tool
 
45
 
46
  # Use ChatGroq LLM (which does not require a Hugging Face API token)
47
  from langchain_groq import ChatGroq
48
+ from langchain_mistralai.chat_models import ChatMistralAI
49
+
50
+ ll = ChatMistralAI(api_key=api_key)
51
  llm = ChatGroq(model="llama3-70b-8192")
52
 
53
  @tool