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.
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/.gitignore +1 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/PKG-INFO +1 -1
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/mito_ai_python_tool_executor/executor.py +11 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/pyproject.toml +1 -1
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/mito_ai_python_tool_executor/__init__.py +0 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/mito_ai_python_tool_executor/blacklisted_words.py +0 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/mito_ai_python_tool_executor/kernel_session.py +0 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/mito_ai_python_tool_executor/notebook_io.py +0 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/tests/test_blacklisted_words.py +0 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/tests/test_executor.py +0 -0
- {mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/tests/test_kernel_session.py +0 -0
|
@@ -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.
|
|
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"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mito_ai_python_tool_executor-0.1.1 → mito_ai_python_tool_executor-0.1.2}/tests/test_executor.py
RENAMED
|
File without changes
|
|
File without changes
|