You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: Remove individual agent env vars, keep only full JSON config
The agent configuration is designed to support multiple models, so having
individual environment variables for a single model doesn't align with the
feature's multi-model design. This commit keeps only PARSE_DASHBOARD_AGENT_CONFIG
which accepts a JSON string with the full agent configuration.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
PARSE_DASHBOARD_CONFIG: undefined // Only for reference, it must not exist
215
215
PARSE_DASHBOARD_COOKIE_SESSION_SECRET: undefined // set the cookie session secret, defaults to a random string. Use this option if you want sessions to work across multiple servers, or across restarts
216
216
PARSE_DASHBOARD_AGENT_CONFIG: undefined // JSON string containing the full agent configuration with models array
217
-
PARSE_DASHBOARD_AGENT_MODEL_NAME: undefined // Display name for the AI model (e.g. "ChatGPT 4.1")
218
-
PARSE_DASHBOARD_AGENT_MODEL_PROVIDER: undefined // AI provider identifier (e.g. "openai")
219
-
PARSE_DASHBOARD_AGENT_MODEL: undefined // Specific model name from the provider (e.g. "gpt-4.1")
220
-
PARSE_DASHBOARD_AGENT_API_KEY: undefined // API key for authenticating with the AI provider
221
217
222
218
```
223
219
@@ -1314,27 +1310,13 @@ The agent will use the configured models to process natural language commands an
1314
1310
1315
1311
You can also configure the AI agent using environment variables, which is useful for containerized deployments or when you want to avoid storing API keys in configuration files.
1316
1312
1317
-
#### Option 1: Full JSON Configuration
1318
-
1319
-
For complex setups with multiple models, you can provide the entire agent configuration as a JSON string:
1313
+
Set the `PARSE_DASHBOARD_AGENT_CONFIG` environment variable with a JSON string containing the full agent configuration:
0 commit comments