mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
2482317ccc
320 files reformatted. One-time alignment to match the ruff format check added to CI in #4812.
13 lines
360 B
Python
13 lines
360 B
Python
from langchain_openai import ChatOpenAI
|
|
|
|
|
|
# Description: Configuration file
|
|
class Config:
|
|
def __init__(self):
|
|
"""
|
|
Initializes the configuration for the agent
|
|
"""
|
|
self.BASE_LLM = ChatOpenAI(model="gpt-4", temperature=0.2)
|
|
self.FACTUAL_LLM = ChatOpenAI(model="gpt-4o-mini", temperature=0.0)
|
|
self.DEBUG = False
|