mirror of
https://github.com/Alishahryar1/free-claude-code.git
synced 2026-04-26 10:31:07 +00:00
Some checks are pending
CI / checks (push) Waiting to run
Consolidates the incremental refactor work into a single change set: modular web tools (api/web_tools), native Anthropic request building and SSE block policy, OpenAI conversion and error handling, provider transports and rate limiting, messaging handler and tree queue, safe logging, smoke tests, and broad test coverage.
7 lines
224 B
Python
7 lines
224 B
Python
"""OpenRouter provider - Anthropic-compatible native transport."""
|
|
|
|
from providers.defaults import OPENROUTER_DEFAULT_BASE
|
|
|
|
from .client import OpenRouterProvider
|
|
|
|
__all__ = ["OPENROUTER_DEFAULT_BASE", "OpenRouterProvider"]
|