Type Alias: GatewayChatCompletionRequest
type GatewayChatCompletionRequest = GatewayInferenceInputCreateChatCompletionRequest;
Defined in: src/ai-gateway/inference-client.ts:52
Chat request using provider-prefixed model IDs, without rewriting the caller's model.
Example
`const body: GatewayChatCompletionRequest = { model: '@provider/model', messages: [{ role: 'user', content: 'Hello' }] };`