# ============================================================= # Dada — AI Visual Novel # Three independently configurable AI providers # Any OpenAI-compatible endpoint works (OpenRouter, OpenAI, # Anthropic via OpenAI-compat proxy, Gemini, DeepSeek, Ollama). # # Image generation uses the chat-completions + modalities API # (OpenRouter-style), NOT the legacy /images/generations endpoint. # ============================================================= # ---- 1. Text LLM (story director) ----------------------------- TEXT_BASE_URL=https://openrouter.ai/api/v1 TEXT_API_KEY=sk-or-v1-xxx TEXT_MODEL=~anthropic/claude-sonnet-latest # ---- 2. Image generator (renders the whole UI screen) --------- IMAGE_BASE_URL=https://openrouter.ai/api/v1 IMAGE_API_KEY=sk-or-v1-xxx IMAGE_MODEL=openai/gpt-5.4-image-2 # ---- 3. Vision model (interprets where the user clicked) ------ VISION_BASE_URL=https://openrouter.ai/api/v1 VISION_API_KEY=sk-or-v1-xxx VISION_MODEL=~google/gemini-flash-latest