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. """