Spaces:
Sleeping
Sleeping
from langchain_groq import ChatGroq | |
from crewai import LLM | |
from config import GROQ_API_KEY, GEMINI | |
llm = ChatGroq( | |
model="llama-3.3-70b-specdec", | |
temperature=0, | |
max_tokens=500, | |
timeout=None, | |
max_retries=2, | |
) | |
crew_llm = LLM( | |
model="gemini/gemini-1.5-flash", | |
api_key=GEMINI, | |
max_tokens=500, | |
temperature=0.7 | |
) |