Skip to content

Commit 34d0f62

Browse files
fix: Remove Environment Variable column from table, keep as note
- Remove the Environment Variable column from the AI Agent config table - Keep environment variable information as a note below the table - Properly align table columns for better readability 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent ad71131 commit 34d0f62

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1295,17 +1295,17 @@ To configure the AI agent for your dashboard, you need to add the `agent` config
12951295
}
12961296
```
12971297

1298-
| Parameter | Type | Required | Description | Environment Variable |
1299-
|-----------------------------|--------|----------|--------------------------------------------------------------------------------|-----------------------|
1300-
| `agent` | Object | Yes | The AI agent configuration object. | `PARSE_DASHBOARD_AGENT_CONFIG` |
1301-
| `agent.models` | Array | Yes | Array of AI model configurations available to the agent. | - |
1302-
| `agent.models[*].name` | String | Yes | The display name for the model (e.g., `ChatGPT 4.1`). | - |
1303-
| `agent.models[*].provider` | String | Yes | The AI provider identifier (e.g., "openai"). | - |
1304-
| `agent.models[*].model` | String | Yes | The specific model name from the provider (e.g., `gpt-4.1`). | - |
1305-
| `agent.models[*].apiKey` | String | Yes | The API key for authenticating with the AI provider. | - |
1298+
| Parameter | Type | Required | Description |
1299+
|-----------------------------|--------|----------|--------------------------------------------------------------------------|
1300+
| `agent` | Object | Yes | The AI agent configuration object. |
1301+
| `agent.models` | Array | Yes | Array of AI model configurations available to the agent. |
1302+
| `agent.models[*].name` | String | Yes | The display name for the model (e.g., `ChatGPT 4.1`). |
1303+
| `agent.models[*].provider` | String | Yes | The AI provider identifier (e.g., "openai"). |
1304+
| `agent.models[*].model` | String | Yes | The specific model name from the provider (e.g., `gpt-4.1`). |
1305+
| `agent.models[*].apiKey` | String | Yes | The API key for authenticating with the AI provider. |
13061306

13071307
> [!Note]
1308-
> When using the `PARSE_DASHBOARD_AGENT_CONFIG` environment variable, provide the complete agent configuration as a JSON string. For example:
1308+
> The agent configuration can also be set via the `PARSE_DASHBOARD_AGENT_CONFIG` environment variable. Provide the complete agent configuration as a JSON string:
13091309
> ```bash
13101310
> PARSE_DASHBOARD_AGENT_CONFIG='{"models":[{"name":"ChatGPT 4.1","provider":"openai","model":"gpt-4.1","apiKey":"YOUR_API_KEY"}]}'
13111311
> ```

0 commit comments

Comments
 (0)