Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -2001,6 +2001,26 @@
"description": "Optional agent identifier. Silently dropped if empty / non-string.",
"type": "string"
},
"config_override": {
"additionalProperties": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation.",
"type": "object"
},
"conversation": {
"description": "Required. conversation.",
"minLength": 1,
Expand Down Expand Up @@ -2173,6 +2193,26 @@
"description": "Optional agent identifier. Silently dropped if empty / non-string.",
"type": "string"
},
"config_override": {
"additionalProperties": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation.",
"type": "object"
},
"conversation": {
"description": "Required. conversation.",
"minLength": 1,
Expand Down Expand Up @@ -3439,6 +3479,26 @@
"format": "date-time",
"type": "string"
},
"config_override": {
"additionalProperties": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation.",
"type": "object"
},
"limit": {
"maximum": 100,
"minimum": 1,
Expand Down Expand Up @@ -3933,6 +3993,26 @@
"format": "date-time",
"type": "string"
},
"config_override": {
"additionalProperties": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "number"
},
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation.",
"type": "object"
},
"limit": {
"maximum": 100,
"minimum": 1,
Expand Down
36 changes: 36 additions & 0 deletions openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1350,6 +1350,15 @@ paths:
agent_id:
description: Optional agent identifier. Silently dropped if empty / non-string.
type: string
config_override:
additionalProperties:
anyOf:
- type: boolean
- type: number
- type: string
- type: "null"
description: "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation."
type: object
conversation:
description: Required. conversation.
minLength: 1
Expand Down Expand Up @@ -1469,6 +1478,15 @@ paths:
agent_id:
description: Optional agent identifier. Silently dropped if empty / non-string.
type: string
config_override:
additionalProperties:
anyOf:
- type: boolean
- type: number
- type: string
- type: "null"
description: "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation."
type: object
conversation:
description: Required. conversation.
minLength: 1
Expand Down Expand Up @@ -2315,6 +2333,15 @@ paths:
example: 2026-01-15T12:00:00Z
format: date-time
type: string
config_override:
additionalProperties:
anyOf:
- type: boolean
- type: number
- type: string
- type: "null"
description: "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation."
type: object
limit:
maximum: 100
minimum: 1
Expand Down Expand Up @@ -2654,6 +2681,15 @@ paths:
example: 2026-01-15T12:00:00Z
format: date-time
type: string
config_override:
additionalProperties:
anyOf:
- type: boolean
- type: number
- type: string
- type: "null"
description: "Optional per-request overlay on RuntimeConfig. Keys correspond to RuntimeConfig field names; values must be primitives (boolean / number / string / null). Unknown keys are accepted but surfaced via the X-Atomicmem-Unknown-Override-Keys response header and a server-side warning log — they do not cause a 400. Scope: just this request — no server mutation."
type: object
limit:
maximum: 100
minimum: 1
Expand Down
Loading
Loading