mbxai 1.2.0__tar.gz → 1.2.1__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.
- {mbxai-1.2.0 → mbxai-1.2.1}/PKG-INFO +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/pyproject.toml +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/setup.py +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/__init__.py +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/mcp/server.py +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/openrouter/client.py +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/tools/client.py +1 -1
- {mbxai-1.2.0 → mbxai-1.2.1}/.gitignore +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/LICENSE +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/README.md +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/core.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/mcp/mcp_client_example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/mcp/mcp_server_example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/openrouter_example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/parse_example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/parse_tool_example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/request.json +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/response.json +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/send_request.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/examples/tool_client_example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/mcp/__init__.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/mcp/client.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/mcp/example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/openrouter/__init__.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/openrouter/config.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/openrouter/models.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/openrouter/schema.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/tools/__init__.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/tools/example.py +0 -0
- {mbxai-1.2.0 → mbxai-1.2.1}/src/mbxai/tools/types.py +0 -0
@@ -411,7 +411,7 @@ class OpenRouterClient:
|
|
411
411
|
# Log the request details
|
412
412
|
logger.info(f"Sending parsed chat completion request to OpenRouter with model: {model or self.model}")
|
413
413
|
logger.info(f"Message count: {len(messages)}")
|
414
|
-
logger.
|
414
|
+
logger.debug(f"Response format: {json.dumps(response_format_param, indent=2)}")
|
415
415
|
|
416
416
|
# Calculate total message size for logging
|
417
417
|
total_size = sum(len(str(msg)) for msg in messages)
|
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
|