Spaces:
Running
Running
Fix: sessions tracking now works correctly in dashboard and JSON
Browse files- Added `track_request` calls in services.py for both single-model and fallback paths
- Sessions now show in `/admin` and `/api/admin/sessions`
- Added `/` root endpoint to show active sessions count
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This view is limited to 50 files because it contains too many changes. See raw diff
- .claude/settings.local.json +25 -0
- .env +28 -0
- __pycache__/server.cpython-312.pyc +0 -0
- __pycache__/server.cpython-314.pyc +0 -0
- api/__pycache__/__init__.cpython-312.pyc +0 -0
- api/__pycache__/__init__.cpython-314.pyc +0 -0
- api/__pycache__/admin.cpython-314.pyc +0 -0
- api/__pycache__/app.cpython-312.pyc +0 -0
- api/__pycache__/app.cpython-314.pyc +0 -0
- api/__pycache__/command_utils.cpython-314.pyc +0 -0
- api/__pycache__/dependencies.cpython-314.pyc +0 -0
- api/__pycache__/detection.cpython-314.pyc +0 -0
- api/__pycache__/gateway_model_ids.cpython-314.pyc +0 -0
- api/__pycache__/model_router.cpython-314.pyc +0 -0
- api/__pycache__/optimization_handlers.cpython-314.pyc +0 -0
- api/__pycache__/routes.cpython-314.pyc +0 -0
- api/__pycache__/runtime.cpython-314.pyc +0 -0
- api/__pycache__/services.cpython-314.pyc +0 -0
- api/__pycache__/validation_log.cpython-314.pyc +0 -0
- api/models/__pycache__/__init__.cpython-314.pyc +0 -0
- api/models/__pycache__/anthropic.cpython-314.pyc +0 -0
- api/models/__pycache__/responses.cpython-314.pyc +0 -0
- api/routes.py +15 -8
- api/services.py +3 -0
- api/web_tools/__pycache__/__init__.cpython-314.pyc +0 -0
- api/web_tools/__pycache__/constants.cpython-314.pyc +0 -0
- api/web_tools/__pycache__/egress.cpython-314.pyc +0 -0
- api/web_tools/__pycache__/parsers.cpython-314.pyc +0 -0
- api/web_tools/__pycache__/request.cpython-314.pyc +0 -0
- api/web_tools/__pycache__/streaming.cpython-314.pyc +0 -0
- config/__pycache__/__init__.cpython-314.pyc +0 -0
- config/__pycache__/constants.cpython-314.pyc +0 -0
- config/__pycache__/logging_config.cpython-314.pyc +0 -0
- config/__pycache__/nim.cpython-314.pyc +0 -0
- config/__pycache__/provider_catalog.cpython-314.pyc +0 -0
- config/__pycache__/provider_ids.cpython-314.pyc +0 -0
- config/__pycache__/settings.cpython-314.pyc +0 -0
- core/__pycache__/__init__.cpython-314.pyc +0 -0
- core/__pycache__/model_capabilities.cpython-314.pyc +0 -0
- core/__pycache__/rate_limit.cpython-314.pyc +0 -0
- core/__pycache__/session_tracker.cpython-314.pyc +0 -0
- core/__pycache__/task_detector.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/__init__.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/content.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/conversion.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/errors.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/native_messages_request.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/provider_stream_error.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/server_tool_sse.cpython-314.pyc +0 -0
- core/anthropic/__pycache__/sse.cpython-314.pyc +0 -0
.claude/settings.local.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"permissions": {
|
| 3 |
+
"allow": [
|
| 4 |
+
"Bash(uv run *)",
|
| 5 |
+
"Bash(python -c \"from api.app import create_app; app = create_app\\(\\); print\\([r.path for r in app.routes if 'admin' in r.path]\\)\")",
|
| 6 |
+
"Bash(python -m uvicorn server:app --host 0.0.0.0 --port 8082)",
|
| 7 |
+
"Bash(.\\\\.venv\\\\Scripts\\\\python -m uvicorn server:app --host 0.0.0.0 --port 8082)",
|
| 8 |
+
"Bash(git add *)",
|
| 9 |
+
"Bash(git commit -m ' *)",
|
| 10 |
+
"Bash(git push *)"
|
| 11 |
+
]
|
| 12 |
+
},
|
| 13 |
+
"enableAllProjectMcpServers": true,
|
| 14 |
+
"enabledMcpjsonServers": [
|
| 15 |
+
"StitchMCP",
|
| 16 |
+
"figma-dev-mode-mcp-server",
|
| 17 |
+
"github",
|
| 18 |
+
"tavily",
|
| 19 |
+
"context7",
|
| 20 |
+
"archmind",
|
| 21 |
+
"office",
|
| 22 |
+
"llm_wiki",
|
| 23 |
+
"vercel"
|
| 24 |
+
]
|
| 25 |
+
}
|
.env
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
NVIDIA_NIM_API_KEY_QWEN="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"
|
| 2 |
+
NVIDIA_NIM_API_KEY_GLM="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"
|
| 3 |
+
NVIDIA_NIM_API_KEY_SEED_OSS="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"
|
| 4 |
+
NVIDIA_NIM_API_KEY_STEPFUN="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"
|
| 5 |
+
NVIDIA_NIM_API_KEY_MISTRAL_LARGE="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"
|
| 6 |
+
NVIDIA_NIM_API_KEY_DRACARYS="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"
|
| 7 |
+
NVIDIA_NIM_API_KEY_NEMOTRON="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"
|
| 8 |
+
MODEL="nvidia_nim/stepfun-ai/step-3.5-flash,nvidia_nim/qwen/qwen3-coder-480b-a35b-instruct,nvidia_nim/mistralai/mistral-large-3-675b-instruct-2512,nvidia_nim/abacusai/dracarys-llama-3.1-70b-instruct,nvidia_nim/z-ai/glm4.7,nvidia_nim/bytedance/seed-oss-36b-instruct,nvidia_nim/mistralai/mistral-nemotron"
|
| 9 |
+
ADVERTISE_ONLY_CONFIGURED_MODELS="true"
|
| 10 |
+
|
| 11 |
+
# Additional NVIDIA NIM fallback models
|
| 12 |
+
NVIDIA_NIM_FALLBACK_MODELS="nvidia_nim/qwen/qwen3-coder-480b-a35b-instruct,nvidia_nim/z-ai/glm4.7,nvidia_nim/bytedance/seed-oss-36b-instruct"
|
| 13 |
+
|
| 14 |
+
# Auto-routing priority: Fast/Efficient models first, then heavy reasoning models.
|
| 15 |
+
#AUTO_MODEL_PRIORITY="nvidia_nim/stepfun-ai/step-3.5-flash,nvidia_nim/bytedance/seed-oss-36b-instruct,nvidia_nim/z-ai/glm4.7,nvidia_nim/mistralai/mistral-nemotron,nvidia_nim/abacusai/dracarys-llama-3.1-70b-instruct,nvidia_nim/qwen/qwen3-coder-480b-a35b-instruct,nvidia_nim/mistralai/mistral-large-3-675b-instruct-2512"
|
| 16 |
+
|
| 17 |
+
#GROQ_CLOUD_API_KEY="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"
|
| 18 |
+
#CEREBRAS_API_KEY="csk-2ewy2h26eeph4yex94kmjnfwwx35pdpyyxkv3j6wcj4cxc3t"
|
| 19 |
+
|
| 20 |
+
LOG_RAW_API_PAYLOADS="true"
|
| 21 |
+
# Disable API key authentication (allow requests without auth)
|
| 22 |
+
ANTHROPIC_AUTH_TOKEN=""
|
| 23 |
+
|
| 24 |
+
#Database
|
| 25 |
+
DATABASE_URL="postgresql+asyncpg://postgres:%40%23yash123%4023@db.tywafxkhdymjomvikkxw.supabase.co:6543/postgres"
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
LOG_API_ERROR_TRACEBACKS=" true\
|
__pycache__/server.cpython-312.pyc
ADDED
|
Binary file (998 Bytes). View file
|
|
|
__pycache__/server.cpython-314.pyc
ADDED
|
Binary file (994 Bytes). View file
|
|
|
api/__pycache__/__init__.cpython-312.pyc
ADDED
|
Binary file (432 Bytes). View file
|
|
|
api/__pycache__/__init__.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/__init__.cpython-314.pyc and b/api/__pycache__/__init__.cpython-314.pyc differ
|
|
|
api/__pycache__/admin.cpython-314.pyc
ADDED
|
Binary file (5.34 kB). View file
|
|
|
api/__pycache__/app.cpython-312.pyc
ADDED
|
Binary file (9.16 kB). View file
|
|
|
api/__pycache__/app.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/app.cpython-314.pyc and b/api/__pycache__/app.cpython-314.pyc differ
|
|
|
api/__pycache__/command_utils.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/command_utils.cpython-314.pyc and b/api/__pycache__/command_utils.cpython-314.pyc differ
|
|
|
api/__pycache__/dependencies.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/dependencies.cpython-314.pyc and b/api/__pycache__/dependencies.cpython-314.pyc differ
|
|
|
api/__pycache__/detection.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/detection.cpython-314.pyc and b/api/__pycache__/detection.cpython-314.pyc differ
|
|
|
api/__pycache__/gateway_model_ids.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/gateway_model_ids.cpython-314.pyc and b/api/__pycache__/gateway_model_ids.cpython-314.pyc differ
|
|
|
api/__pycache__/model_router.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/model_router.cpython-314.pyc and b/api/__pycache__/model_router.cpython-314.pyc differ
|
|
|
api/__pycache__/optimization_handlers.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/optimization_handlers.cpython-314.pyc and b/api/__pycache__/optimization_handlers.cpython-314.pyc differ
|
|
|
api/__pycache__/routes.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/routes.cpython-314.pyc and b/api/__pycache__/routes.cpython-314.pyc differ
|
|
|
api/__pycache__/runtime.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/runtime.cpython-314.pyc and b/api/__pycache__/runtime.cpython-314.pyc differ
|
|
|
api/__pycache__/services.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/services.cpython-314.pyc and b/api/__pycache__/services.cpython-314.pyc differ
|
|
|
api/__pycache__/validation_log.cpython-314.pyc
CHANGED
|
Binary files a/api/__pycache__/validation_log.cpython-314.pyc and b/api/__pycache__/validation_log.cpython-314.pyc differ
|
|
|
api/models/__pycache__/__init__.cpython-314.pyc
CHANGED
|
Binary files a/api/models/__pycache__/__init__.cpython-314.pyc and b/api/models/__pycache__/__init__.cpython-314.pyc differ
|
|
|
api/models/__pycache__/anthropic.cpython-314.pyc
CHANGED
|
Binary files a/api/models/__pycache__/anthropic.cpython-314.pyc and b/api/models/__pycache__/anthropic.cpython-314.pyc differ
|
|
|
api/models/__pycache__/responses.cpython-314.pyc
CHANGED
|
Binary files a/api/models/__pycache__/responses.cpython-314.pyc and b/api/models/__pycache__/responses.cpython-314.pyc differ
|
|
|
api/routes.py
CHANGED
|
@@ -5,6 +5,8 @@ from loguru import logger
|
|
| 5 |
|
| 6 |
from config.settings import Settings
|
| 7 |
from core.anthropic import get_token_count
|
|
|
|
|
|
|
| 8 |
from providers.registry import ProviderRegistry
|
| 9 |
|
| 10 |
from . import dependencies
|
|
@@ -13,7 +15,6 @@ from .gateway_model_ids import gateway_model_id, no_thinking_gateway_model_id
|
|
| 13 |
from .models.anthropic import MessagesRequest, TokenCountRequest
|
| 14 |
from .models.responses import ModelResponse, ModelsListResponse
|
| 15 |
from .services import ClaudeProxyService
|
| 16 |
-
from providers.nvidia_nim import metrics as nvidia_nim_metrics
|
| 17 |
|
| 18 |
router = APIRouter()
|
| 19 |
|
|
@@ -112,9 +113,15 @@ def _build_models_list_response(
|
|
| 112 |
supports_thinking = None
|
| 113 |
if provider_registry is not None:
|
| 114 |
# model_id for registry lookups should be provider-prefixed
|
| 115 |
-
provider, model_id =
|
| 116 |
-
|
| 117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 118 |
|
| 119 |
# Add a virtual `auto` model that maps to the configured MODEL and enables
|
| 120 |
# automatic fallback behavior when used by clients.
|
|
@@ -133,7 +140,8 @@ def _build_models_list_response(
|
|
| 133 |
filtered = [
|
| 134 |
m
|
| 135 |
for m in models
|
| 136 |
-
if "claude" not in (m.id or "").lower()
|
|
|
|
| 137 |
]
|
| 138 |
# Ensure `auto` model remains available even if filtering removed others.
|
| 139 |
if not any(m.id == gateway_model_id("auto") for m in filtered):
|
|
@@ -153,7 +161,6 @@ def _build_models_list_response(
|
|
| 153 |
)
|
| 154 |
|
| 155 |
|
| 156 |
-
|
| 157 |
# =============================================================================
|
| 158 |
# Routes
|
| 159 |
# =============================================================================
|
|
@@ -194,10 +201,10 @@ async def root(
|
|
| 194 |
settings: Settings = Depends(get_settings), _auth=Depends(require_api_key)
|
| 195 |
):
|
| 196 |
"""Root endpoint."""
|
|
|
|
| 197 |
return {
|
| 198 |
"status": "ok",
|
| 199 |
-
"
|
| 200 |
-
"model": settings.model,
|
| 201 |
}
|
| 202 |
|
| 203 |
|
|
|
|
| 5 |
|
| 6 |
from config.settings import Settings
|
| 7 |
from core.anthropic import get_token_count
|
| 8 |
+
from core.session_tracker import SessionTracker
|
| 9 |
+
from providers.nvidia_nim import metrics as nvidia_nim_metrics
|
| 10 |
from providers.registry import ProviderRegistry
|
| 11 |
|
| 12 |
from . import dependencies
|
|
|
|
| 15 |
from .models.anthropic import MessagesRequest, TokenCountRequest
|
| 16 |
from .models.responses import ModelResponse, ModelsListResponse
|
| 17 |
from .services import ClaudeProxyService
|
|
|
|
| 18 |
|
| 19 |
router = APIRouter()
|
| 20 |
|
|
|
|
| 113 |
supports_thinking = None
|
| 114 |
if provider_registry is not None:
|
| 115 |
# model_id for registry lookups should be provider-prefixed
|
| 116 |
+
provider, model_id = (
|
| 117 |
+
ref.split("/", 1) if "/" in ref else ("nvidia_nim", ref)
|
| 118 |
+
)
|
| 119 |
+
supports_thinking = provider_registry.cached_model_supports_thinking(
|
| 120 |
+
provider, model_id
|
| 121 |
+
)
|
| 122 |
+
_append_provider_model_variants(
|
| 123 |
+
models, seen, ref, supports_thinking=supports_thinking
|
| 124 |
+
)
|
| 125 |
|
| 126 |
# Add a virtual `auto` model that maps to the configured MODEL and enables
|
| 127 |
# automatic fallback behavior when used by clients.
|
|
|
|
| 140 |
filtered = [
|
| 141 |
m
|
| 142 |
for m in models
|
| 143 |
+
if "claude" not in (m.id or "").lower()
|
| 144 |
+
and "claude" not in (m.display_name or "").lower()
|
| 145 |
]
|
| 146 |
# Ensure `auto` model remains available even if filtering removed others.
|
| 147 |
if not any(m.id == gateway_model_id("auto") for m in filtered):
|
|
|
|
| 161 |
)
|
| 162 |
|
| 163 |
|
|
|
|
| 164 |
# =============================================================================
|
| 165 |
# Routes
|
| 166 |
# =============================================================================
|
|
|
|
| 201 |
settings: Settings = Depends(get_settings), _auth=Depends(require_api_key)
|
| 202 |
):
|
| 203 |
"""Root endpoint."""
|
| 204 |
+
tracker = SessionTracker.get_instance()
|
| 205 |
return {
|
| 206 |
"status": "ok",
|
| 207 |
+
"active_sessions": len(tracker._sessions),
|
|
|
|
| 208 |
}
|
| 209 |
|
| 210 |
|
api/services.py
CHANGED
|
@@ -187,6 +187,9 @@ class ClaudeProxyService:
|
|
| 187 |
thinking_enabled=resolved.thinking_enabled,
|
| 188 |
)
|
| 189 |
|
|
|
|
|
|
|
|
|
|
| 190 |
request_id = f"req_{uuid.uuid4().hex[:12]}"
|
| 191 |
logger.info(
|
| 192 |
"API_REQUEST: request_id={} model={} messages={}",
|
|
|
|
| 187 |
thinking_enabled=resolved.thinking_enabled,
|
| 188 |
)
|
| 189 |
|
| 190 |
+
session_id = self._get_session_id(request_data)
|
| 191 |
+
await self._session_tracker.track_request(session_id, resolved.provider_id)
|
| 192 |
+
|
| 193 |
request_id = f"req_{uuid.uuid4().hex[:12]}"
|
| 194 |
logger.info(
|
| 195 |
"API_REQUEST: request_id={} model={} messages={}",
|
api/web_tools/__pycache__/__init__.cpython-314.pyc
CHANGED
|
Binary files a/api/web_tools/__pycache__/__init__.cpython-314.pyc and b/api/web_tools/__pycache__/__init__.cpython-314.pyc differ
|
|
|
api/web_tools/__pycache__/constants.cpython-314.pyc
CHANGED
|
Binary files a/api/web_tools/__pycache__/constants.cpython-314.pyc and b/api/web_tools/__pycache__/constants.cpython-314.pyc differ
|
|
|
api/web_tools/__pycache__/egress.cpython-314.pyc
CHANGED
|
Binary files a/api/web_tools/__pycache__/egress.cpython-314.pyc and b/api/web_tools/__pycache__/egress.cpython-314.pyc differ
|
|
|
api/web_tools/__pycache__/parsers.cpython-314.pyc
CHANGED
|
Binary files a/api/web_tools/__pycache__/parsers.cpython-314.pyc and b/api/web_tools/__pycache__/parsers.cpython-314.pyc differ
|
|
|
api/web_tools/__pycache__/request.cpython-314.pyc
CHANGED
|
Binary files a/api/web_tools/__pycache__/request.cpython-314.pyc and b/api/web_tools/__pycache__/request.cpython-314.pyc differ
|
|
|
api/web_tools/__pycache__/streaming.cpython-314.pyc
CHANGED
|
Binary files a/api/web_tools/__pycache__/streaming.cpython-314.pyc and b/api/web_tools/__pycache__/streaming.cpython-314.pyc differ
|
|
|
config/__pycache__/__init__.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/__init__.cpython-314.pyc and b/config/__pycache__/__init__.cpython-314.pyc differ
|
|
|
config/__pycache__/constants.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/constants.cpython-314.pyc and b/config/__pycache__/constants.cpython-314.pyc differ
|
|
|
config/__pycache__/logging_config.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/logging_config.cpython-314.pyc and b/config/__pycache__/logging_config.cpython-314.pyc differ
|
|
|
config/__pycache__/nim.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/nim.cpython-314.pyc and b/config/__pycache__/nim.cpython-314.pyc differ
|
|
|
config/__pycache__/provider_catalog.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/provider_catalog.cpython-314.pyc and b/config/__pycache__/provider_catalog.cpython-314.pyc differ
|
|
|
config/__pycache__/provider_ids.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/provider_ids.cpython-314.pyc and b/config/__pycache__/provider_ids.cpython-314.pyc differ
|
|
|
config/__pycache__/settings.cpython-314.pyc
CHANGED
|
Binary files a/config/__pycache__/settings.cpython-314.pyc and b/config/__pycache__/settings.cpython-314.pyc differ
|
|
|
core/__pycache__/__init__.cpython-314.pyc
CHANGED
|
Binary files a/core/__pycache__/__init__.cpython-314.pyc and b/core/__pycache__/__init__.cpython-314.pyc differ
|
|
|
core/__pycache__/model_capabilities.cpython-314.pyc
ADDED
|
Binary file (6.42 kB). View file
|
|
|
core/__pycache__/rate_limit.cpython-314.pyc
CHANGED
|
Binary files a/core/__pycache__/rate_limit.cpython-314.pyc and b/core/__pycache__/rate_limit.cpython-314.pyc differ
|
|
|
core/__pycache__/session_tracker.cpython-314.pyc
ADDED
|
Binary file (15.8 kB). View file
|
|
|
core/__pycache__/task_detector.cpython-314.pyc
ADDED
|
Binary file (9.62 kB). View file
|
|
|
core/anthropic/__pycache__/__init__.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/__init__.cpython-314.pyc and b/core/anthropic/__pycache__/__init__.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/content.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/content.cpython-314.pyc and b/core/anthropic/__pycache__/content.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/conversion.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/conversion.cpython-314.pyc and b/core/anthropic/__pycache__/conversion.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/errors.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/errors.cpython-314.pyc and b/core/anthropic/__pycache__/errors.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/native_messages_request.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/native_messages_request.cpython-314.pyc and b/core/anthropic/__pycache__/native_messages_request.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/provider_stream_error.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/provider_stream_error.cpython-314.pyc and b/core/anthropic/__pycache__/provider_stream_error.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/server_tool_sse.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/server_tool_sse.cpython-314.pyc and b/core/anthropic/__pycache__/server_tool_sse.cpython-314.pyc differ
|
|
|
core/anthropic/__pycache__/sse.cpython-314.pyc
CHANGED
|
Binary files a/core/anthropic/__pycache__/sse.cpython-314.pyc and b/core/anthropic/__pycache__/sse.cpython-314.pyc differ
|
|
|