mbxai 2.0.1__tar.gz → 2.0.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.
- {mbxai-2.0.1 → mbxai-2.0.3}/PKG-INFO +1 -1
- {mbxai-2.0.1 → mbxai-2.0.3}/pyproject.toml +2 -2
- {mbxai-2.0.1 → mbxai-2.0.3}/setup.py +1 -1
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/__init__.py +1 -1
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/agent/models.py +1 -1
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/mcp/server.py +1 -1
- {mbxai-2.0.1 → mbxai-2.0.3}/.gitignore +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/LICENSE +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/README.md +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/agent/__init__.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/agent/client.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/core.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/agent_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/agent_iterations_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/agent_tool_registration_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/agent_validation_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/auto_schema_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/mcp/mcp_client_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/mcp/mcp_server_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/openrouter_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/parse_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/parse_tool_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/request.json +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/response.json +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/send_request.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/simple_agent_test.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/examples/tool_client_example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/mcp/__init__.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/mcp/client.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/mcp/example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/openrouter/__init__.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/openrouter/client.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/openrouter/config.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/openrouter/models.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/openrouter/schema.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/tools/__init__.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/tools/client.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/tools/example.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/src/mbxai/tools/types.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/tests/test_mcp_tool_registration.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/tests/test_real_mcp_schema.py +0 -0
- {mbxai-2.0.1 → mbxai-2.0.3}/tests/test_schema_conversion.py +0 -0
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "mbxai"
|
7
|
-
version = "2.0.
|
7
|
+
version = "2.0.3"
|
8
8
|
authors = [
|
9
9
|
{ name = "MBX AI" }
|
10
10
|
]
|
@@ -82,6 +82,6 @@ strict_equality = true
|
|
82
82
|
|
83
83
|
[dependency-groups]
|
84
84
|
dev = [
|
85
|
-
"build>=2.0.
|
85
|
+
"build>=2.0.3.post1",
|
86
86
|
"twine>=6.1.0",
|
87
87
|
]
|
@@ -10,7 +10,7 @@ import uuid
|
|
10
10
|
class Question(BaseModel):
|
11
11
|
"""A question for the user to provide more information."""
|
12
12
|
question: str = Field(description="The question to ask the user")
|
13
|
-
key: str = Field(description="A unique key to identify this question")
|
13
|
+
key: str = Field(description="A unique and short technical key identifier to identify this question don't use spaces or special characters")
|
14
14
|
required: bool = Field(default=True, description="Whether this question is required")
|
15
15
|
|
16
16
|
|
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
|
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
|