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 caller and optional "on-behalf-of" participant. Tools that actually need a room should require a RoomToolContext or use a room-bound Toolkit. 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: JsonChunk, TextChunk, and FileChunk.
from meshagent.tools import FunctionTool, Toolkit, ToolContext
from meshagent.api.messaging import TextChunk
class MyNewTool(FunctionTool):
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 TextChunk(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
Release files for meshagent-tools 0.52.3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| meshagent_tools-0.52.3.tar.gz | 131.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| meshagent_tools-0.52.3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 254.1 kB
Release files / meshagent_tools-0.52.3.tar.gz
| Download URL | meshagent_tools-0.52.3.tar.gz |
|---|---|
| Size | 131.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
0136d6acee6678ed396914231029bd07c898d83b8ff29d624165a4f0deda081a
|
|
BLAKE2b-256 checksum How to use checksums |
e19fcda80679a92f1515728cd0f0e55213d9e625608babb142419c81834c36bb
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Release files / meshagent_tools-0.52.3-py3-none-any.whl
| Download URL | meshagent_tools-0.52.3-py3-none-any.whl |
|---|---|
| Size | 122.9 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
d62350946dd48bdf08a0947d7a5143efb333e8f2220de155471af7850649f68f
|
|
BLAKE2b-256 checksum How to use checksums |
380e3ccc22b4ff22434fad741463cbce3492e0e77f40e14f94abaae225f4998a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|