BaseHandler from superagentx.handler.base, you can create your own custom
handlers.
Additionally, we also provide pre-built handlers for various other
services and libraries.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
BaseHandler from superagentx.handler.base, you can create your own custom
handlers.
Additionally, we also provide pre-built handlers for various other
services and libraries.
from superagentx.handler.decorators import tool
class ExaHandler(BaseHandler):
@tool
async def search_contents(
self,
*,
query: str,
use_autoprompt: bool,
num_results: int = 10,
search_type: str | None = None
):
