mirror of https://github.com/kortix-ai/suna.git
12 lines
227 B
Python
12 lines
227 B
Python
|
"""
|
||
|
Kortix SDK for Suna AI Agent Platform
|
||
|
|
||
|
A Python SDK for creating and managing AI agents with tool execution capabilities.
|
||
|
"""
|
||
|
|
||
|
__version__ = "0.1.0"
|
||
|
|
||
|
from .kortix.config import global_config as config
|
||
|
|
||
|
__all__ = ["config"]
|