multi_agent / llm.py
NithikaShree's picture
Create llm.py
b4169f9 verified
raw
history blame contribute delete
283 Bytes
import os
from langchain_cerebras import ChatCerebras
CEREBRAS_API_KEY = os.environ.get("CEREBRAS_API_KEY")
if not CEREBRAS_API_KEY:
raise ValueError("CEREBRAS_API_KEY not set")
llm = ChatCerebras(
model="gpt-oss-120b",
temperature=0.6,
api_key=CEREBRAS_API_KEY
)