Skip to content
Merged
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
20 changes: 20 additions & 0 deletions .speakeasy/in.openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23532,6 +23532,26 @@ components:
additionalProperties: false
description: 'Endpoint performance over the last 30 minutes, keyed by the kind of request served (e.g. `text_generation`, `image_generation`). Additive to the legacy singular latency and throughput fields; image and video generation report end-to-end latency. Only visible when authenticated with an API key or cookie.'
properties:
decisions:
properties:
latency:
allOf:
- $ref: '#/components/schemas/PercentileStats'
- description: 'Latency percentiles in milliseconds for this workload. Image and video generation report full end-to-end generation time, because their raw latency only measures request acknowledgement; every other workload reports time to first token or result.'
request_count:
description: 'Total requests admitted for this workload in the window.'
type:
- 'integer'
- 'null'
throughput:
allOf:
- $ref: '#/components/schemas/PercentileStats'
- description: 'Throughput percentiles in tokens per second. Only meaningful for text generation; null for workloads without token throughput.'
required:
- 'latency'
- 'throughput'
- 'request_count'
type: 'object'
embeddings:
properties:
latency:
Expand Down
Loading