Tools are functions that your agent can execute during a conversation. You can define tools to interact with external services, databases, or any other APIs.Documentation Index
Fetch the complete documentation index at: https://docs.conversimple.com/llms.txt
Use this file to discover all available pages before exploring further.
Decorators
The Conversimple SDK provides two decorators for registering tools:@tool: For synchronous functions.@tool_async: For asynchronous (async/await) functions.
Type Hinting
The SDK automatically generates a JSON schema for your tools based on Python type hints. This allows the Conversimple platform to understand the parameters your tools expect. The following types are supported:strintfloatboollistdictOptional[T]