Returns a list of events emitted by the run.
curl --request GET \
--url http://localhost:8000/runs/{run_id}/events
{
"events": [
{
"type": "<string>",
"message": {
"role": "user",
"parts": [
{
"name": "<string>",
"content_type": "<string>",
"content": "<string>",
"content_encoding": "plain",
"content_url": "<string>",
"metadata": {
"kind": "<string>",
"start_index": 123,
"end_index": 123,
"url": "<string>",
"title": "<string>",
"description": "<string>"
}
}
],
"created_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
}
]
}
UUID of the run.
List of run events
The response is of type object
.
curl --request GET \
--url http://localhost:8000/runs/{run_id}/events
{
"events": [
{
"type": "<string>",
"message": {
"role": "user",
"parts": [
{
"name": "<string>",
"content_type": "<string>",
"content": "<string>",
"content_encoding": "plain",
"content_url": "<string>",
"metadata": {
"kind": "<string>",
"start_index": 123,
"end_index": 123,
"url": "<string>",
"title": "<string>",
"description": "<string>"
}
}
],
"created_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
}
]
}