cai/cai/__init__.py

8 lines
173 B
Python

"""
A library to build Bug Bounty-level grade Cybersecurity AIs (CAIs).
"""
from .core import CAI
from .types import Agent, Response
__all__ = ["CAI", "Agent", "Response"]