eroha-agentapi / engine /config.py
Yermek68's picture
Add EngineConfig layer
6433069 verified
raw
history blame contribute delete
135 Bytes
import os
class EngineConfig:
OPENAI_API_KEY = os.getenv("OPENAI_API_KEY")
MODEL_NAME = "gpt-4.1-mini"
TEMPERATURE = 0.7