mbxai 0.7.2__tar.gz → 0.7.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mbxai
3
- Version: 0.7.2
3
+ Version: 0.7.3
4
4
  Summary: MBX AI SDK
5
5
  Project-URL: Homepage, https://www.mibexx.de
6
6
  Project-URL: Documentation, https://www.mibexx.de
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "mbxai"
7
- version = "0.7.2"
7
+ version = "0.7.3"
8
8
  authors = [
9
9
  { name = "MBX AI" }
10
10
  ]
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="mbxai",
5
- version="0.7.2",
5
+ version="0.7.3",
6
6
  author="MBX AI",
7
7
  description="MBX AI SDK",
8
8
  long_description=open("README.md").read(),
@@ -2,4 +2,4 @@
2
2
  MBX AI package.
3
3
  """
4
4
 
5
- __version__ = "0.7.2"
5
+ __version__ = "0.7.3"
@@ -31,7 +31,7 @@ class MCPServer:
31
31
  self.app = FastAPI(
32
32
  title=self.name,
33
33
  description=self.description,
34
- version="0.7.2",
34
+ version="0.7.3",
35
35
  )
36
36
 
37
37
  # Initialize MCP server
@@ -214,6 +214,8 @@ class OpenRouterClient:
214
214
 
215
215
  # Log response details
216
216
  logger.info("Received response from OpenRouter")
217
+ # Log the actual response content
218
+ logger.info(f"Response content: {response}")
217
219
  if hasattr(response, 'output'):
218
220
  logger.info(f"Response output length: {len(response.output) if response.output else 0}")
219
221
  if hasattr(response, 'output_text'):
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