@ai-sdk/provider
Version:
6 lines (5 loc) • 311 B
text/typescript
export type LanguageModelV2ToolChoice =
| { type: 'auto' } // the tool selection is automatic (can be no tool)
| { type: 'none' } // no tool must be selected
| { type: 'required' } // one of the available tools must be selected
| { type: 'tool'; toolName: string }; // a specific tool must be selected: