OverflowKind classifies the cause of a context overflow, so the runtime and UI can react differently to each shape. - [OverflowKindTokens]: the accumulated conversation exceeds the model's context window. Token-count rejection. Compaction can usually help. - [OverflowKindWire]: the request body exc
| 88 | // conversation exceeds the provider's media constraints (size, page |
| 89 | // count, dimensions). |
| 90 | type OverflowKind string |
| 91 | |
| 92 | const ( |
| 93 | OverflowKindTokens OverflowKind = "tokens" |
no outgoing calls
no test coverage detected