mito-ai-python-tool-executor 0.1.1__tar.gz → 0.1.2__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.
@@ -23,6 +23,7 @@ evals/reports/
23
23
 
24
24
  # Other
25
25
  mito-ai-mcp/*.mcpb
26
+ mito-ai-mcp/*.ipynb
26
27
 
27
28
  ## General
28
29
  .DS_Store
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mito-ai-python-tool-executor
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: In-process ipykernel-backed ToolExecutor for Mito AI (CLI and headless use).
5
5
  Author: Saga Inc.
6
6
  License-Expression: AGPL-3.0-only
@@ -445,3 +445,14 @@ class PythonToolExecutor:
445
445
  output=STREAMLIT_FUNCTIONALITY_DISABLED_MESSAGE,
446
446
  variables=vars_,
447
447
  )
448
+
449
+ async def read_skill(
450
+ self,
451
+ ctx: AgentContext,
452
+ skill_name: str,
453
+ message: str,
454
+ ) -> ToolResult:
455
+ del ctx, message
456
+ from mito_ai_core.skills.utils import read_skill as read_skill_content
457
+
458
+ return read_skill_content(skill_name)
@@ -7,7 +7,7 @@ build-backend = "hatchling.build"
7
7
 
8
8
  [project]
9
9
  name = "mito-ai-python-tool-executor"
10
- version = "0.1.1"
10
+ version = "0.1.2"
11
11
  description = "In-process ipykernel-backed ToolExecutor for Mito AI (CLI and headless use)."
12
12
  license = "AGPL-3.0-only"
13
13
  requires-python = ">=3.9"