Tool details
| Field | Value |
|---|---|
| Name | veryfront__get_agent_run_snapshot |
| Group | Conversations |
Playground
Input schema
input-schema.json
{
"type": "object",
"properties": {
"conversation_id": {
"type": "string",
"format": "uuid",
"description": "Conversation identifier that scopes the request."
},
"run_id": {
"type": "string",
"minLength": 1,
"description": "Run identifier that scopes the request."
}
},
"additionalProperties": false,
"description": "Input schema for the get_agent_run_snapshot tool.",
"$schema": "http://json-schema.org/draft-07/schema#"
}
Output schema
output-schema.json
{
"type": "object",
"properties": {
"after_event_id": {
"type": "integer",
"minimum": 0,
"description": "Inclusive event cursor used to build the snapshot."
},
"events": {
"type": "array",
"items": {
"type": "object",
"properties": {
"event_id": {
"anyOf": [
{
"type": "integer",
"minimum": 0,
"description": "The event id associated with this record."
},
{
"type": "null",
"description": "The event id returned by the tool."
}
],
"description": "Event identifier associated with the snapshot item, or null when synthetic."
},
"event_type": {
"type": "string",
"minLength": 1,
"description": "Persisted event type for this snapshot entry."
},
"payload": {
"description": "Event payload captured in the run snapshot."
},
"created_at": {
"type": [
"string",
"null"
],
"description": "Stored row timestamp, null for a snapshot entry."
},
"is_error": {
"type": "boolean",
"description": "Whether the event reports an error."
},
"run_id": {
"type": "string",
"minLength": 1,
"description": "Run identifier associated with the record."
},
"event_class": {
"type": "string",
"enum": [
"fact",
"delta"
],
"description": "The event class associated with this record."
},
"span_id": {
"type": "string",
"minLength": 1,
"description": "The span id associated with this record."
},
"parent_span_id": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The parent span id associated with this record."
},
{
"type": "null",
"description": "The parent span id returned by the tool."
}
],
"description": "The parent span id associated with this record."
},
"turn_id": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The turn id associated with this record."
},
{
"type": "null",
"description": "The turn id returned by the tool."
}
],
"description": "The turn id associated with this record."
},
"origin_event_type": {
"type": "string",
"minLength": 1,
"description": "The origin event type associated with this record."
},
"origin_custom_name": {
"anyOf": [
{
"type": "string",
"minLength": 1,
"description": "The origin custom name associated with this record."
},
{
"type": "null",
"description": "The origin custom name returned by the tool."
}
],
"description": "The origin custom name associated with this record."
},
"unrecoverable_fields": {
"type": "array",
"items": {
"type": "string",
"minLength": 1,
"description": "One unrecoverable field item associated with this record."
},
"description": "List of unrecoverable fields associated with this record."
}
},
"required": [
"event_id",
"event_type",
"payload",
"created_at",
"is_error",
"run_id",
"event_class",
"span_id",
"parent_span_id",
"turn_id",
"origin_event_type",
"origin_custom_name",
"unrecoverable_fields"
],
"additionalProperties": false,
"description": "One event entry inside an agent run snapshot response."
},
"description": "Events included in the run snapshot after the requested cursor."
}
},
"required": [
"after_event_id",
"events"
],
"additionalProperties": false,
"description": "Snapshot of agent run events after a given event cursor.",
"$schema": "http://json-schema.org/draft-07/schema#"
}