feat: prepare ARR for controlled public deployment

This commit is contained in:
Wyndham ARR
2026-07-29 16:38:05 +08:00
commit a701de9f0e
271 changed files with 48472 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
"""Reusable integration layer for the DeerFlow Agent Profile Open API."""
from agent_integration.client import (
OpenAgentAPIClient,
OpenAgentAPIError,
OpenAgentEvent,
OpenAgentProtocolError,
OpenAgentTransportError,
)
from agent_integration.config import AgentConfig, AgentConfigurationError
from agent_integration.events import AgentStreamNormalizer
from agent_integration.service import AgentResponseError, OpenAgentService, SessionNotFoundError
from agent_integration.sessions import (
SessionRecord,
SessionStore,
SessionStoreError,
SQLiteSessionStore,
)
__all__ = [
"AgentConfig",
"AgentConfigurationError",
"AgentResponseError",
"AgentStreamNormalizer",
"OpenAgentAPIClient",
"OpenAgentAPIError",
"OpenAgentEvent",
"OpenAgentProtocolError",
"OpenAgentService",
"OpenAgentTransportError",
"SQLiteSessionStore",
"SessionNotFoundError",
"SessionRecord",
"SessionStore",
"SessionStoreError",
]