mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-07-07 07:59:29 +00:00
11 lines
223 B
Python
11 lines
223 B
Python
"""Agent-to-Agent (A2A) protocol communication module for CrewAI."""
|
|
|
|
from crewai.a2a.config import A2AClientConfig, A2AConfig, A2AServerConfig
|
|
|
|
|
|
__all__ = [
|
|
"A2AClientConfig",
|
|
"A2AConfig",
|
|
"A2AServerConfig",
|
|
]
|