mirror of
https://github.com/countbot-ai/CountBot.git
synced 2026-09-14 20:46:47 +08:00
16 lines
380 B
Python
16 lines
380 B
Python
"""External coding agent integration layer."""
|
|
|
|
from backend.modules.external_agents.base import (
|
|
ExternalAgentProfile,
|
|
ExternalAgentRequest,
|
|
ExternalAgentResult,
|
|
)
|
|
from backend.modules.external_agents.registry import ExternalAgentRegistry
|
|
|
|
__all__ = [
|
|
"ExternalAgentProfile",
|
|
"ExternalAgentRequest",
|
|
"ExternalAgentResult",
|
|
"ExternalAgentRegistry",
|
|
]
|