Built-in Tools
Hypertic provides ready-to-use tools for common tasks:DALL-E Tools
View guide >
DuckDuckGo Tools
View guide >
FileSystem Tools
View guide >
More built-in tools are coming soon.
Creating Tools
Hypertic supports two ways to create tools:Decorator-based Tools
Create tools using the@tool decorator on functions:
Class-based Tools
Create toolkits by inheriting fromBaseToolkit. This lets you group related tools together and add configuration:
Tool Descriptions
Tool descriptions are crucial for the agent to understand when to use them. Write clear, descriptive docstrings:- Write clear, concise docstrings
- Describe parameters and return values
- Include examples when helpful
- Be specific about what the tool does