mbxai 1.0.11__tar.gz → 1.0.12__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.11 → mbxai-1.0.12}/PKG-INFO +1 -1
- {mbxai-1.0.11 → mbxai-1.0.12}/pyproject.toml +1 -1
- {mbxai-1.0.11 → mbxai-1.0.12}/setup.py +1 -1
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/__init__.py +1 -1
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/mcp/server.py +1 -1
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/openrouter/client.py +0 -1
- {mbxai-1.0.11 → mbxai-1.0.12}/.gitignore +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/LICENSE +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/README.md +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/core.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/examples/mcp/mcp_client_example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/examples/mcp/mcp_server_example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/examples/openrouter_example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/examples/parse_example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/examples/parse_tool_example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/examples/tool_client_example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/mcp/__init__.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/mcp/client.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/mcp/example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/openrouter/__init__.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/openrouter/config.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/openrouter/models.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/tools/__init__.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/tools/client.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/tools/example.py +0 -0
- {mbxai-1.0.11 → mbxai-1.0.12}/src/mbxai/tools/types.py +0 -0
@@ -336,7 +336,6 @@ class OpenRouterClient:
|
|
336
336
|
# If there's no parsed attribute but there is content, try to parse it
|
337
337
|
if not hasattr(response.choices[0].message, 'parsed') and hasattr(response.choices[0].message, 'content'):
|
338
338
|
try:
|
339
|
-
import json
|
340
339
|
content = response.choices[0].message.content
|
341
340
|
if isinstance(content, str):
|
342
341
|
parsed = json.loads(content)
|
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
|