mbxai 1.0.3__tar.gz → 1.0.4__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.0.3 → mbxai-1.0.4}/PKG-INFO +1 -1
- {mbxai-1.0.3 → mbxai-1.0.4}/pyproject.toml +1 -1
- {mbxai-1.0.3 → mbxai-1.0.4}/setup.py +1 -1
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/__init__.py +1 -1
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/mcp/server.py +1 -1
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/openrouter/client.py +2 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/.gitignore +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/LICENSE +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/README.md +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/core.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/examples/mcp/mcp_client_example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/examples/mcp/mcp_server_example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/examples/openrouter_example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/examples/parse_example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/examples/parse_tool_example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/examples/tool_client_example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/mcp/__init__.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/mcp/client.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/mcp/example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/openrouter/__init__.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/openrouter/config.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/openrouter/models.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/tools/__init__.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/tools/client.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/tools/example.py +0 -0
- {mbxai-1.0.3 → mbxai-1.0.4}/src/mbxai/tools/types.py +0 -0
@@ -268,6 +268,8 @@ class OpenRouterClient:
|
|
268
268
|
|
269
269
|
response = self._client.beta.chat.completions.parse(**request)
|
270
270
|
|
271
|
+
logger.debug(f"Full Response: {response}")
|
272
|
+
|
271
273
|
if response is None:
|
272
274
|
logger.error("Received None response from OpenRouter API")
|
273
275
|
raise OpenRouterAPIError("Received None response from OpenRouter API")
|
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
|