Tools for Meshagent
Project description
Meshagent
MeshAgent Tools
The meshagent.tools package bundles reusable tool and toolkit abstractions plus a set of out of the box MeshAgent toolkits.
ToolContext and BaseTool
The ToolContext tracks the room, caller, and optional "on-behalf-of" participant. The BaseTool defines metadata used by all tools such as name and description.
Tool and Toolkit
A Tool encapsulates a single operation with an input JSON schema. Each tool implements an execute function where you define the logic for the tool. The Toolkit groups tools together and can enforce rules or descriptions.
Response Types
Response types specify the output that a tool should return. This helps the tool and agent know how to handle the response appropriately. Response types include: JsonResponse, TextResponse, and FileResponse.
from meshagent.tools import Tool, Toolkit, ToolContext
from meshagent.api.messaging import TextResponse
class MyNewTool(Tool):
def __init__(self):
super().__init__(
name="my_new_tool",
title="A sample tool",
description="The tool skeleton",
input_schema={
"type":"object",
"additionalProperties": False,
"required": [...],
"properties": {...}
}
)
async def execute(self, ctx:ToolContext, sample_parameter:str):
# tool logic
return TextResponse(text="Tool logic complete")
class MyNewToolkit(Toolkit):
def __init__(self):
super().__init__(
name="my_new_toolkit",
title="An example toolkit",
description="The toolkit skeleton",
tools=[MyNewTool])
Built-in Toolkits
Some of the built-in MeshAgent toolkits include:
StorageToolkit: Provides file operations (read, write, list, etc.)DocumentAuthoringToolkit: Defines tools for manipulating Mesh documents (create document, add element, remove element, etc.)
Learn more about MeshAgent on our website or check out the docs for additional examples!
Website: www.meshagent.com
Documentation: docs.meshagent.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file meshagent_tools-0.24.0.tar.gz.
File metadata
- Download URL: meshagent_tools-0.24.0.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3475ae90fcf62d8f8fd32db42d2702beb5894151b73b383ca8df6c132cae44a
|
|
| MD5 |
23ef7408abd47b68f06e42655cace98b
|
|
| BLAKE2b-256 |
990d8562178ceb569886d9f622a0c4cf526b76c3a61502374268dad1d66e01ba
|
File details
Details for the file meshagent_tools-0.24.0-py3-none-any.whl.
File metadata
- Download URL: meshagent_tools-0.24.0-py3-none-any.whl
- Upload date:
- Size: 29.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7e64be28432f42bd583d2104ad19fd03fe3dbb4bc4c597db0123e4ac2c7698c
|
|
| MD5 |
76cf35365e2ce84e8c53ff1505366030
|
|
| BLAKE2b-256 |
56b13f249940befd6431a65f24e5f6af5e05df982b47f16af673a8eeb49f99a5
|