suna/sdk/__init__.py

13 lines
297 B
Python

"""
Kortix SDK for Suna AI Worker Platform
A Python SDK for creating and managing AI Workers with thread execution capabilities.
"""
__version__ = "0.1.0"
from .kortix.kortix import Kortix
from .kortix.tools import AgentPressTools, MCPTools
__all__ = ["Kortix", "AgentPressTools", "MCPTools"]