File size: 399 Bytes
c209999 4a5e2ac c209999 | 1 2 3 4 5 6 7 8 9 10 11 12 | import os
from dotenv import load_dotenv
load_dotenv()
API_KEY = os.getenv("OPENCODE_ZEN_API_KEY", "")
BASE_URL = os.getenv("LLM_BASE_URL", "https://opencode.ai/zen/v1")
MODEL = os.getenv("LLM_MODEL", "deepseek-v4-flash-free")
MAX_RETRIES = int(os.getenv("MAX_RETRIES", "3"))
SANDBOX_IMAGE = os.getenv("SANDBOX_IMAGE", "python:3.14-slim")
SANDBOX_TIMEOUT = int(os.getenv("SANDBOX_TIMEOUT", "30"))
|