bupa1018's picture
Create llm.py
0792287
raw
history blame
146 Bytes
def get_groq_llm(model_name, temperature, api_key):
llm = ChatGroq(model=model_name, temperature=temperature, api_key=api_key)
return llm