Spaces:
Sleeping
Sleeping
File size: 361 Bytes
8da6fbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
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
) |