ai-coding-system / app /agent /config.py
PYAE1994's picture
Update app/agent/config.py
047d4bc verified
raw
history blame contribute delete
493 Bytes
import os
class Config:
# 🔥 You can switch ANY provider here
LLM_API_URL = os.getenv("LLM_API_URL", "https://gateway.pyaesone-gtckglay.workers.dev/v1/chat/completions")
LLM_API_KEY = os.getenv("LLM_API_KEY", "0fea3265-9949-413b-a4d4-5976f18b64e3")
MODEL = os.getenv("MODEL", "gpt-4o-mini")
SYSTEM_PROMPT = """
You are a senior autonomous coding agent.
You can read files, modify code, and plan solutions step-by-step.
Be precise, minimal, and production-oriented.
"""