/** * Anthropic-Compatible API Server * * Mimics the Anthropic Messages API but routes to 0G Compute. * Allows Claude Code to use 0G as a full backend replacement. * * Usage: * export ANTHROPIC_BASE_URL=http://localhost:3033 * export ANTHROPIC_AUTH_TOKEN=ollama # or your 0G API key * claude --model 0g:llama-3.1-8b */ export declare function startApiServer(port?: number): Promise; //# sourceMappingURL=server.d.ts.map