/** * OpenAI-Compatible API Server * * Routes OpenAI API requests through Cursor's Agent API backend. * Supports: * - POST /v1/chat/completions (streaming and non-streaming) * - GET /v1/models * * Usage: * CURSOR_ACCESS_TOKEN= bun run src/server.ts * * Or with auto-loaded credentials: * bun run src/server.ts */ export {};