mbxai 1.0.12__py3-none-any.whl → 1.0.13__py3-none-any.whl
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/__init__.py +1 -1
- mbxai/mcp/server.py +1 -1
- mbxai/openrouter/client.py +11 -1
- {mbxai-1.0.12.dist-info → mbxai-1.0.13.dist-info}/METADATA +1 -1
- {mbxai-1.0.12.dist-info → mbxai-1.0.13.dist-info}/RECORD +7 -7
- {mbxai-1.0.12.dist-info → mbxai-1.0.13.dist-info}/WHEEL +0 -0
- {mbxai-1.0.12.dist-info → mbxai-1.0.13.dist-info}/licenses/LICENSE +0 -0
mbxai/__init__.py
CHANGED
mbxai/mcp/server.py
CHANGED
mbxai/openrouter/client.py
CHANGED
@@ -90,6 +90,16 @@ def with_retry(max_retries: int = 3, initial_delay: float = 1.0, max_delay: floa
|
|
90
90
|
return decorator
|
91
91
|
|
92
92
|
|
93
|
+
class CustomJSONEncoder(json.JSONEncoder):
|
94
|
+
"""Custom JSON encoder to handle special types."""
|
95
|
+
def default(self, obj):
|
96
|
+
if hasattr(obj, '__name__'):
|
97
|
+
return obj.__name__
|
98
|
+
if hasattr(obj, '__dict__'):
|
99
|
+
return obj.__dict__
|
100
|
+
return str(obj)
|
101
|
+
|
102
|
+
|
93
103
|
class OpenRouterClient:
|
94
104
|
"""Client for interacting with the OpenRouter API."""
|
95
105
|
|
@@ -355,7 +365,7 @@ class OpenRouterClient:
|
|
355
365
|
except Exception as e:
|
356
366
|
stack_trace = traceback.format_exc()
|
357
367
|
logger.error(f"Raising error: {e}")
|
358
|
-
logger.error(f"Full request from ERROR:\n{json.dumps(request, indent=2)}")
|
368
|
+
logger.error(f"Full request from ERROR:\n{json.dumps(request, indent=2, cls=CustomJSONEncoder)}")
|
359
369
|
logger.error(f"Error in parse completion: {str(e)}")
|
360
370
|
logger.error(f"Stack trace:\n{stack_trace}")
|
361
371
|
|
@@ -1,4 +1,4 @@
|
|
1
|
-
mbxai/__init__.py,sha256=
|
1
|
+
mbxai/__init__.py,sha256=xn7_fLvixGExmDMnngCrvzwV3R4XDAWFj2SpGThziKw,48
|
2
2
|
mbxai/core.py,sha256=WMvmU9TTa7M_m-qWsUew4xH8Ul6xseCZ2iBCXJTW-Bs,196
|
3
3
|
mbxai/examples/openrouter_example.py,sha256=-grXHKMmFLoh-yUIEMc31n8Gg1S7uSazBWCIOWxgbyQ,1317
|
4
4
|
mbxai/examples/parse_example.py,sha256=eCKMJoOl6qwo8sDP6Trc6ncgjPlgTqi5tPE2kB5_P0k,3821
|
@@ -9,16 +9,16 @@ mbxai/examples/mcp/mcp_server_example.py,sha256=nFfg22Jnc6HMW_ezLO3So1xwDdx2_rIt
|
|
9
9
|
mbxai/mcp/__init__.py,sha256=_ek9iYdYqW5saKetj4qDci11jxesQDiHPJRpHMKkxgU,175
|
10
10
|
mbxai/mcp/client.py,sha256=eXIN2ebprNF5UgM1jb-4JkXmc-5toUhtlBNFKVU7FgY,5204
|
11
11
|
mbxai/mcp/example.py,sha256=oaol7AvvZnX86JWNz64KvPjab5gg1VjVN3G8eFSzuaE,2350
|
12
|
-
mbxai/mcp/server.py,sha256
|
12
|
+
mbxai/mcp/server.py,sha256=AKLHz9aIuqN_oMtaY14-P_1n_TKlTYLUhPQ4Cu3cWWk,3455
|
13
13
|
mbxai/openrouter/__init__.py,sha256=Ito9Qp_B6q-RLGAQcYyTJVWwR2YAZvNqE-HIYXxhtD8,298
|
14
|
-
mbxai/openrouter/client.py,sha256=
|
14
|
+
mbxai/openrouter/client.py,sha256=7EL-1f3GCHi6QSidU3fAXrEncrk-6qWVyjB5IvJio3o,16947
|
15
15
|
mbxai/openrouter/config.py,sha256=Ia93s-auim9Sq71eunVDbn9ET5xX2zusXpV4JBdHAzs,3251
|
16
16
|
mbxai/openrouter/models.py,sha256=b3IjjtZAjeGOf2rLsdnCD1HacjTnS8jmv_ZXorc-KJQ,2604
|
17
17
|
mbxai/tools/__init__.py,sha256=ogxrHvgJ7OR62Lmd5x9Eh5d2C0jqWyQis7Zy3yKpZ78,218
|
18
18
|
mbxai/tools/client.py,sha256=h_1fxVDBq57f_OXNsj-TBp6-r367sv6Z5nk1qLFcLO8,14951
|
19
19
|
mbxai/tools/example.py,sha256=1HgKK39zzUuwFbnp3f0ThyWVfA_8P28PZcTwaUw5K78,2232
|
20
20
|
mbxai/tools/types.py,sha256=pAoVuL7nKhvL3Iek0JheGfll4clsABFLl1CNjmiG3No,5866
|
21
|
-
mbxai-1.0.
|
22
|
-
mbxai-1.0.
|
23
|
-
mbxai-1.0.
|
24
|
-
mbxai-1.0.
|
21
|
+
mbxai-1.0.13.dist-info/METADATA,sha256=-EEFhf9BHg5JwFiG--JTFSV0W65n0NXCWez7braC_ZQ,4148
|
22
|
+
mbxai-1.0.13.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
23
|
+
mbxai-1.0.13.dist-info/licenses/LICENSE,sha256=hEyhc4FxwYo3NQ40yNgZ7STqwVk-1_XcTXOnAPbGJAw,1069
|
24
|
+
mbxai-1.0.13.dist-info/RECORD,,
|
File without changes
|
File without changes
|