...
Code Block | ||
---|---|---|
| ||
{ "description": "A request to get a single page of trace events for a specified asynchronous job.", "properties": { "jobId": { "type": "string", "description": "The job ID issued when the agent chat request job was started." }, "newerThanTimestamp": { "type": "integer", "description": "When a timetimestamp stamp value is provided, only trace events that occurred after the provided time stamptimestamp will be included in the results." } } } |
...
Code Block | ||
---|---|---|
| ||
{ "description": "A single page of an agent trace events for an asynchronous agent chat job. The events are sorted by timestamp ascending.", "properties": { "jobId": { "type": "string", "description": "The job ID issued when the agent chat request job was started." }, "page": { "description": "A single page of trace events ordered by time stamp descending.", "type": "array", "items": { "$ref": "org.sagebionetworks.repo.model.agent.TraceEvent" } } } } |
...