/** * @tinyclaw/plugin-provider-openai * * OpenAI provider plugin for Tiny Claw. Adds GPT-4.1, GPT-4o, and other * OpenAI models as a provider option. Routes via the smart provider * routing system based on query complexity tiers. * * Pairing flow: * 1. Plugin is added to `plugins.enabled` (manually or via set_config) * 2. On next boot, pairing tools (`openai_pair`, `openai_unpair`) appear * 3. User provides API key via `openai_pair` → stored securely, tier mapping updated * 4. Agent calls `tinyclaw_restart` → supervisor respawns with new configuration */ import type { ProviderPlugin } from '@tinyclaw/types'; declare const openaiPlugin: ProviderPlugin; export default openaiPlugin;