(options: BuildToolsOptions)
| 64 | * @returns Array of filtered native and MCP tools |
| 65 | */ |
| 66 | export async function buildNativeToolsArray(options: BuildToolsOptions): Promise<OpenAI.Chat.ChatCompletionTool[]> { |
| 67 | const result = await buildNativeToolsArrayWithRestrictions(options) |
| 68 | return result.tools |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Builds the complete tools array for native protocol requests with optional mode restrictions. |
nothing calls this directly
no test coverage detected