diff --git a/README.md b/README.md index 4bf9391..24758dc 100644 --- a/README.md +++ b/README.md @@ -77,23 +77,6 @@ On first run you will be taken through a short setup wizard to create your admin Open `.env` and fill in the values. Required fields are marked with `*`. -### AI Provider - -```env -# Which provider to use as default: anthropic | openrouter | openai -DEFAULT_PROVIDER=anthropic - -# Override the default model (leave empty to use the provider's default) -# DEFAULT_MODEL=claude-sonnet-4-6 - -# Model pre-selected in the chat UI (leave empty to use provider default) -# DEFAULT_CHAT_MODEL=claude-sonnet-4-6 -``` - -Your actual API keys are **not** set here - they are entered via the web UI under **Settings - Credentials** and stored encrypted in the database. - ---- - ### Security * ```env @@ -115,19 +98,6 @@ PORT=8080 TIMEZONE=Europe/Oslo ``` ---- - -### Agent Limits - -```env -# Maximum number of tool calls per agent run -MAX_TOOL_CALLS=20 - -# Maximum number of autonomous (scheduled/agent) runs per hour -MAX_AUTONOMOUS_RUNS_PER_HOUR=10 -``` - -Both values can also be changed live from **Settings - General** without restarting. ---