Skip to content

Commit 08fc524

Browse files
authored
chore: Add missing token_type param and fix YAML chunk numbers (#334)
1 parent d9f0f2e commit 08fc524

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

examples/code/home/configuration/engine/full_config.1.0.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ auth:
4949
refresh_token: '$.refresh_token'
5050
expires_in: '$.expires_in'
5151
scope: '$.scope'
52+
token_type: '$.token_type'
5253
refresh_request: # Optional
5354
endpoint: 'https://example.com/oauth/token'
5455
auth_method: client_secret_basic # Optional
@@ -63,6 +64,7 @@ auth:
6364
refresh_token: '$.refresh_token'
6465
expires_in: '$.expires_in'
6566
scope: '$.scope'
67+
token_type: '$.token_type'
6668
user_info_request: # Optional
6769
endpoint: 'https://example.com/oauth/userinfo'
6870
auth_method: bearer_access_token

pages/home/local-deployment/configure/engine.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ Two cache implementations are available:
119119
- `in_memory` - _(default)_ An in-memory cache implementation suitable for a single-node Arcade Engine deployment.
120120
- `redis` - A Redis cache implementation suitable for a multi-node Arcade Engine deployment:
121121

122-
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L74-L79 {3-6}
122+
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L76-L81 {3-6}
123123
124124
```
125125

@@ -129,7 +129,7 @@ The `security` section configures the root encryption keys that the Arcade Engin
129129

130130
A typical configuration looks like this:
131131

132-
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L91-L95
132+
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L93-L97
133133
134134
```
135135

@@ -170,7 +170,7 @@ storage:
170170

171171
- `postgres` - A PostgreSQL database, suitable for production:
172172

173-
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L99-L106
173+
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L101-L108
174174
175175
```
176176

@@ -194,7 +194,7 @@ telemetry:
194194
To connect to OpenTelemetry compatible collectors, set the necessary [OpenTelemetry environment variables](https://opentelemetry.io/docs/specs/otel/configuration/sdk-environment-variables/) in the `engine.env` file.
195195
`environment` and `version` are fields that are added to the telemetry attributes, which can be filtered on later.
196196

197-
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L108-L112
197+
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L110-L114
198198
199199
```
200200

@@ -210,7 +210,7 @@ Arcade Engine orchestrates [tools](/home/use-tools/tools-overview) that AI model
210210

211211
The `tools.directors` section configures the workers that are available to service tool calls:
212212

213-
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L114-L125 {5-12}
213+
```yaml file=<rootDir>/examples/code/home/configuration/engine/full_config.1.0.yaml#L116-L128 {6-13}
214214
215215
```
216216

0 commit comments

Comments
 (0)