Update model context without triggering a response.Documentation Index
Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
JSON Schema for the UpdateContext action.
Update model context without triggering a response.Documentation Index
Fetch the complete documentation index at: https://prefab.prefect.io/docs/llms.txt
Use this file to discover all available pages before exploring further.
{
"type": "object",
"properties": {
"action": {
"const": "updateContext",
"default": "updateContext",
"type": "string"
},
"content": {
"type": [
"string",
"null"
],
"default": null,
"description": "Text content to add"
},
"structuredContent": {
"additionalProperties": true,
"type": [
"object",
"null"
],
"default": null,
"description": "Structured content to add"
}
},
"required": [
"action"
]
}