ccproxy-api 0.2.0a4__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/PKG-INFO +3 -3
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/README.md +2 -2
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/_version.py +2 -2
- ccproxy_api-0.2.2/ccproxy/llms/formatters/anthropic_to_openai/_helpers.py +44 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/responses.py +19 -2
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/streams.py +9 -17
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/adapter.py +5 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/.gitignore +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/LICENSE +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/__main__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/app.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/bootstrap.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/decorators.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/dependencies.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/format_validation.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/cors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/hooks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/normalize_headers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/request_id.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/middleware/streaming_hooks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/routes/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/routes/health.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/api/routes/plugins.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/bearer.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/dependencies.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/exceptions.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/managers/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/managers/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/managers/base_enhanced.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/managers/token_snapshot.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/models/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/models/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/models/credentials.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/cli_errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/flows.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/protocol.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/registry.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/router.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/session.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/oauth/templates.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/storage/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/storage/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/auth/storage/generic.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/_settings_help.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/auth.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/config/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/config/commands.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/config/schema_commands.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/plugins.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/serve.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/commands/status.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/decorators.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/helpers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/main.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/options/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/options/claude_options.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/options/core_options.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/options/security_options.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/cli/options/server_options.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/core.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/env_generator.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/runtime.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/security.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/settings.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/toml_generator.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/config/utils.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/async_task_manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/async_utils.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/auth/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/constants.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/id_utils.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/interfaces.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/logging.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/middleware.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/cli_discovery.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/declaration.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/discovery.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/factories.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/events.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/formatters/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/formatters/json.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/formatters/raw.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/http_tracer.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/layers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/registry.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/thread_manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/types.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/interfaces.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/loader.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/middleware.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/protocol.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/runtime.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/request_context.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/status_report.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/system.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/transformers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/types.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/data/claude_headers_fallback.json +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/data/codex_headers_fallback.json +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/http/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/http/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/http/client.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/http/hooks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/http/pool.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/requests.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/base_model.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/common/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/common/identifiers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/common/streams.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/common/thinking.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/common/usage.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/constants.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/context.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/mapping.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/_helpers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/requests.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/responses.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/streams.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/_helpers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/requests.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/responses.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/streams.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/utils.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/models/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/models/anthropic.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/models/openai.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/streaming/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/streaming/accumulators.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/streaming/formatters.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/streaming/processors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/models/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/models/detection.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/models/provider.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/formatter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/hook.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/logger.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/access_log/writer.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/ingest.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/analytics/service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/detection_service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/health.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/hooks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/streaming_metrics.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_api/tasks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/auth.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/client.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/converter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/detection_service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/exceptions.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/handler.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/health.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/hooks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/message_queue.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/options.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/parser.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/session_client.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/session_pool.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/stream_handle.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/stream_worker.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/streaming.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_sdk/tasks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_shared/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_shared/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/claude_shared/model_defaults.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/detection_service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/health.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/hooks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/model_defaults.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/streaming_metrics.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/tasks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/utils/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/codex/utils/sse_parser.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/command_replay/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/command_replay/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/command_replay/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/command_replay/formatter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/command_replay/hook.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/command_replay/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/data/copilot_fallback.json +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/detection_service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/model_defaults.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/oauth/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/oauth/client.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/oauth/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/oauth/provider.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/oauth/storage.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/copilot/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/factory.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/hook.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/credential_balancer/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/dashboard/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/dashboard/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/dashboard/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/dashboard/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/dashboard/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/docker_path.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/middleware.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/protocol.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/stream_process.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/docker/validators.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/duckdb_storage/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/duckdb_storage/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/duckdb_storage/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/duckdb_storage/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/duckdb_storage/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/duckdb_storage/storage.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/max_tokens/token_limits.json +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/collector.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/grafana/dashboards/ccproxy-dashboard.json +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/hook.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/pushgateway.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/metrics/tasks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/client.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/provider.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_claude/storage.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/client.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/provider.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/oauth_codex/storage.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/handlers/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/handlers/cli.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/handlers/protocol.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/handlers/terminal.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/mcp.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/routes.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/ui/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/ui/permission_handler_protocol.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/permissions/ui/terminal_permission_handler.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/cache.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/exceptions.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/loader.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/service.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/tasks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/updater.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/pricing/utils.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/request_tracer/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/request_tracer/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/request_tracer/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/request_tracer/hook.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/plugins/request_tracer/plugin.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/scheduler/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/scheduler/core.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/scheduler/errors.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/scheduler/manager.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/scheduler/registry.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/scheduler/tasks.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/base.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/chain_composer.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/chain_validation.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/chat_accumulator.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/delta_utils.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/format_adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/format_context.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/format_registry.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/http_adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/mock_adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/protocols.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/adapters/simple_converters.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/auth_registry.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/cache/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/cache/response_cache.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/cli_detection.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/config/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/config/proxy_configuration.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/container.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/factories.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/handler_config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/interfaces.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/mocking/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/mocking/mock_handler.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/tracing/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/tracing/interfaces.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/services/tracing/null_tracer.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/buffer.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/deferred.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/handler.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/interfaces.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/simple_adapter.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/sse.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/streaming/sse_parser.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/templates/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/templates/plugin_scaffold.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/content_generation.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/cli.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/config.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/console.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/models.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/runner.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/endpoints/tools.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/mock_responses.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/response_handlers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/testing/scenarios.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/__init__.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/binary_resolver.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/caching.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/cli_logging.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/command_line.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/headers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/id_generator.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/model_mapper.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/startup_helpers.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/utils/version_checker.py +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/examples/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/pyproject.toml +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/tests/factories/README.md +0 -0
- {ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/tests/fixtures/README.md +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ccproxy-api
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: API server that provides an Anthropic and OpenAI compatible interface over Claude Code, allowing to use your Claude OAuth account or over the API.
|
|
5
5
|
License-File: LICENSE
|
|
6
6
|
Requires-Python: >=3.11
|
|
@@ -196,14 +196,14 @@ To install the latest stable release without cloning the repository, use `uvx`
|
|
|
196
196
|
to grab the published wheel and launch the CLI:
|
|
197
197
|
|
|
198
198
|
```bash
|
|
199
|
-
uvx --with "ccproxy-api[all]
|
|
199
|
+
uvx --with "ccproxy-api[all]" ccproxy serve --port 8000
|
|
200
200
|
```
|
|
201
201
|
|
|
202
202
|
If you prefer `pipx`, install the package (optionally with extras) and use the
|
|
203
203
|
local shim:
|
|
204
204
|
|
|
205
205
|
```bash
|
|
206
|
-
pipx install "ccproxy-api[all]
|
|
206
|
+
pipx install "ccproxy-api[all]"
|
|
207
207
|
ccproxy serve # default on localhost:8000
|
|
208
208
|
```
|
|
209
209
|
|
|
@@ -156,14 +156,14 @@ To install the latest stable release without cloning the repository, use `uvx`
|
|
|
156
156
|
to grab the published wheel and launch the CLI:
|
|
157
157
|
|
|
158
158
|
```bash
|
|
159
|
-
uvx --with "ccproxy-api[all]
|
|
159
|
+
uvx --with "ccproxy-api[all]" ccproxy serve --port 8000
|
|
160
160
|
```
|
|
161
161
|
|
|
162
162
|
If you prefer `pipx`, install the package (optionally with extras) and use the
|
|
163
163
|
local shim:
|
|
164
164
|
|
|
165
165
|
```bash
|
|
166
|
-
pipx install "ccproxy-api[all]
|
|
166
|
+
pipx install "ccproxy-api[all]"
|
|
167
167
|
ccproxy serve # default on localhost:8000
|
|
168
168
|
```
|
|
169
169
|
|
|
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
|
28
28
|
commit_id: COMMIT_ID
|
|
29
29
|
__commit_id__: COMMIT_ID
|
|
30
30
|
|
|
31
|
-
__version__ = version = '0.2.
|
|
32
|
-
__version_tuple__ = version_tuple = (0, 2,
|
|
31
|
+
__version__ = version = '0.2.2'
|
|
32
|
+
__version_tuple__ = version_tuple = (0, 2, 2)
|
|
33
33
|
|
|
34
34
|
__commit_id__ = commit_id = None
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
"""Shared helpers for Anthropic to OpenAI formatting."""
|
|
2
|
+
|
|
3
|
+
from __future__ import annotations
|
|
4
|
+
|
|
5
|
+
import json
|
|
6
|
+
from typing import Any
|
|
7
|
+
|
|
8
|
+
from ccproxy.llms.models import openai as openai_models
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
def serialize_tool_arguments(tool_input: Any) -> str:
|
|
12
|
+
if isinstance(tool_input, str):
|
|
13
|
+
return tool_input
|
|
14
|
+
try:
|
|
15
|
+
return json.dumps(tool_input, ensure_ascii=False)
|
|
16
|
+
except Exception:
|
|
17
|
+
return json.dumps({"arguments": str(tool_input)})
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
def build_openai_tool_call(
|
|
21
|
+
*,
|
|
22
|
+
tool_id: str | None,
|
|
23
|
+
tool_name: str | None,
|
|
24
|
+
tool_input: Any,
|
|
25
|
+
arguments: Any = None,
|
|
26
|
+
fallback_index: int = 0,
|
|
27
|
+
) -> openai_models.ToolCall:
|
|
28
|
+
args_str = (
|
|
29
|
+
arguments
|
|
30
|
+
if isinstance(arguments, str) and arguments
|
|
31
|
+
else serialize_tool_arguments(tool_input)
|
|
32
|
+
)
|
|
33
|
+
call_id = (
|
|
34
|
+
tool_id if isinstance(tool_id, str) and tool_id else f"call_{fallback_index}"
|
|
35
|
+
)
|
|
36
|
+
name = tool_name if isinstance(tool_name, str) and tool_name else "function"
|
|
37
|
+
|
|
38
|
+
return openai_models.ToolCall(
|
|
39
|
+
id=str(call_id),
|
|
40
|
+
function=openai_models.FunctionCall(
|
|
41
|
+
name=str(name),
|
|
42
|
+
arguments=str(args_str),
|
|
43
|
+
),
|
|
44
|
+
)
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/responses.py
RENAMED
|
@@ -14,6 +14,8 @@ from ccproxy.llms.formatters.constants import ANTHROPIC_TO_OPENAI_FINISH_REASON
|
|
|
14
14
|
from ccproxy.llms.models import anthropic as anthropic_models
|
|
15
15
|
from ccproxy.llms.models import openai as openai_models
|
|
16
16
|
|
|
17
|
+
from ._helpers import build_openai_tool_call
|
|
18
|
+
|
|
17
19
|
|
|
18
20
|
logger = ccproxy.core.logging.get_logger(__name__)
|
|
19
21
|
|
|
@@ -101,6 +103,8 @@ def convert__anthropic_message_to_openai_chat__response(
|
|
|
101
103
|
"""Convert Anthropic MessageResponse to an OpenAI ChatCompletionResponse."""
|
|
102
104
|
content_blocks = response.content
|
|
103
105
|
parts: list[str] = []
|
|
106
|
+
tool_calls: list[openai_models.ToolCall] = []
|
|
107
|
+
|
|
104
108
|
for block in content_blocks:
|
|
105
109
|
btype = getattr(block, "type", None)
|
|
106
110
|
if btype == "text":
|
|
@@ -117,8 +121,17 @@ def convert__anthropic_message_to_openai_chat__response(
|
|
|
117
121
|
else ""
|
|
118
122
|
)
|
|
119
123
|
parts.append(f"<thinking{sig_attr}>{thinking}</thinking>")
|
|
124
|
+
elif btype == "tool_use":
|
|
125
|
+
tool_calls.append(
|
|
126
|
+
build_openai_tool_call(
|
|
127
|
+
tool_id=getattr(block, "id", None),
|
|
128
|
+
tool_name=getattr(block, "name", None),
|
|
129
|
+
tool_input=getattr(block, "input", {}) or {},
|
|
130
|
+
fallback_index=len(tool_calls),
|
|
131
|
+
)
|
|
132
|
+
)
|
|
120
133
|
|
|
121
|
-
content_text = "".join(parts)
|
|
134
|
+
content_text = "".join(parts) if parts else None
|
|
122
135
|
|
|
123
136
|
stop_reason = response.stop_reason
|
|
124
137
|
finish_reason = ANTHROPIC_TO_OPENAI_FINISH_REASON.get(
|
|
@@ -127,12 +140,16 @@ def convert__anthropic_message_to_openai_chat__response(
|
|
|
127
140
|
|
|
128
141
|
usage_model = convert__anthropic_usage_to_openai_completion__usage(response.usage)
|
|
129
142
|
|
|
143
|
+
message_dict: dict[str, Any] = {"role": "assistant", "content": content_text}
|
|
144
|
+
if tool_calls:
|
|
145
|
+
message_dict["tool_calls"] = [call.model_dump() for call in tool_calls]
|
|
146
|
+
|
|
130
147
|
payload = {
|
|
131
148
|
"id": response.id,
|
|
132
149
|
"choices": [
|
|
133
150
|
{
|
|
134
151
|
"index": 0,
|
|
135
|
-
"message":
|
|
152
|
+
"message": message_dict,
|
|
136
153
|
"finish_reason": finish_reason,
|
|
137
154
|
}
|
|
138
155
|
],
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/streams.py
RENAMED
|
@@ -27,10 +27,9 @@ from ccproxy.llms.models import anthropic as anthropic_models
|
|
|
27
27
|
from ccproxy.llms.models import openai as openai_models
|
|
28
28
|
from ccproxy.llms.streaming.accumulators import ClaudeAccumulator
|
|
29
29
|
|
|
30
|
+
from ._helpers import build_openai_tool_call
|
|
30
31
|
from .requests import _build_responses_payload_from_anthropic_request
|
|
31
|
-
from .responses import
|
|
32
|
-
convert__anthropic_usage_to_openai_responses__usage,
|
|
33
|
-
)
|
|
32
|
+
from .responses import convert__anthropic_usage_to_openai_responses__usage
|
|
34
33
|
|
|
35
34
|
|
|
36
35
|
logger = ccproxy.core.logging.get_logger(__name__)
|
|
@@ -100,22 +99,15 @@ def _build_openai_tool_call(
|
|
|
100
99
|
function_payload = (
|
|
101
100
|
tool_call.get("function", {}) if isinstance(tool_call, dict) else {}
|
|
102
101
|
)
|
|
103
|
-
|
|
102
|
+
tool_name = function_payload.get("name") or tool_call.get("name")
|
|
104
103
|
arguments = function_payload.get("arguments")
|
|
105
|
-
if not isinstance(arguments, str) or not arguments:
|
|
106
|
-
try:
|
|
107
|
-
arguments = json.dumps(tool_call.get("input", {}), ensure_ascii=False)
|
|
108
|
-
except Exception:
|
|
109
|
-
arguments = json.dumps(tool_call.get("input", {}))
|
|
110
|
-
|
|
111
|
-
tool_id = tool_call.get("id") or f"call_{block_index}"
|
|
112
104
|
|
|
113
|
-
return
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
105
|
+
return build_openai_tool_call(
|
|
106
|
+
tool_id=tool_call.get("id"),
|
|
107
|
+
tool_name=tool_name,
|
|
108
|
+
tool_input=tool_call.get("input", {}),
|
|
109
|
+
arguments=arguments,
|
|
110
|
+
fallback_index=block_index,
|
|
119
111
|
)
|
|
120
112
|
|
|
121
113
|
return None
|
|
@@ -85,6 +85,11 @@ class ClaudeAPIAdapter(BaseHTTPAdapter):
|
|
|
85
85
|
# Always set Authorization from OAuth-managed access token
|
|
86
86
|
filtered_headers["authorization"] = f"Bearer {token_value}"
|
|
87
87
|
|
|
88
|
+
# PATCH: Add Computer Use beta headers for Anthropic API
|
|
89
|
+
# These are required for browser automation tools to work
|
|
90
|
+
filtered_headers["anthropic-version"] = "2023-06-01"
|
|
91
|
+
filtered_headers["anthropic-beta"] = "computer-use-2025-01-24"
|
|
92
|
+
|
|
88
93
|
# Add CLI headers if available, but never allow overriding auth
|
|
89
94
|
cli_headers = self._collect_cli_headers()
|
|
90
95
|
if cli_headers:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/core/plugins/hooks/implementations/http_tracer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/__init__.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/errors.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/anthropic_to_openai/requests.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/__init__.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/_helpers.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/errors.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/requests.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/responses.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_anthropic/streams.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/__init__.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/_helpers.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/errors.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/requests.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/responses.py
RENAMED
|
File without changes
|
{ccproxy_api-0.2.0a4 → ccproxy_api-0.2.2}/ccproxy/llms/formatters/openai_to_openai/streams.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|