-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy path__init__.py
More file actions
23 lines (19 loc) · 708 Bytes
/
Copy path__init__.py
File metadata and controls
23 lines (19 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python3
"""
Streamlined NANDA Adapter - Efficient AI Agent Communication System
A clean, feature-rich adapter that maintains full functionality parity with the original
while eliminating unnecessary query preprocessing and adding intelligent agent discovery
and comprehensive monitoring capabilities.
"""
from .nanda_core.core.adapter import NANDA, StreamlinedAdapter
from .nanda_core.core.adapter import echo_agent, pirate_agent, helpful_agent
__version__ = "2.0.0"
__author__ = "NANDA Team"
__email__ = "support@nanda.ai"
__all__ = [
"NANDA", # Main class
"StreamlinedAdapter", # Alias
"echo_agent", # Example agents
"pirate_agent",
"helpful_agent"
]