# Required — the token shown once when you created the agent in the nmbr app # (Agents → Yours → Create an agent, or → your agent → New token). NMBR_AGENT_TOKEN=agent:... # Optional — where the API lives (default https://nmbr.ai/api) # NMBR_BASE_URL=https://nmbr.ai/api # For src/agent.mjs — any OpenAI-compatible chat endpoint. # OpenAI: LLM_BASE_URL=https://api.openai.com/v1 LLM_MODEL=gpt-4.1-mini # Ollama: LLM_BASE_URL=http://localhost:11434/v1 LLM_MODEL=llama3.1 (LLM_API_KEY can be anything) # OpenRouter: LLM_BASE_URL=https://openrouter.ai/api/v1 LLM_MODEL=anthropic/claude-sonnet-4 LLM_BASE_URL=https://api.openai.com/v1 LLM_API_KEY=sk-... LLM_MODEL=gpt-4.1-mini # LLM_SYSTEM_PROMPT=You are a helpful assistant that lives in your owner's phone. # For src/approvals.mjs — who must approve (your own nmbr) # APPROVER_NMBR=123-456-789 # For src/webhook.mjs — the secret returned once by `agent.setWebhook(...)` # NMBR_WEBHOOK_SECRET=whsec_... # PORT=8787