Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|