后端: - 拆分出 agent_service, runtime_service, trading_service, news_service - Gateway 模块化拆分 (gateway_*.py) - 添加 domains/ 领域层 - 新增 control_client, runtime_client - 更新 start-dev.sh 支持 split 服务模式 前端: - 完善 API 服务层 (newsApi, tradingApi) - 更新 vite.config.js - Explain 组件优化 测试: - 添加多个服务 app 测试 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
51 lines
1.1 KiB
Python
51 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""Compatibility schema bridge.
|
|
|
|
This module preserves the legacy ``backend.data.schema`` import path while
|
|
delegating the actual schema definitions to ``shared.schema``. Keeping one
|
|
canonical DTO set avoids drift as the monolith is split into service-specific
|
|
packages.
|
|
"""
|
|
|
|
from shared.schema import (
|
|
AgentStateData,
|
|
AgentStateMetadata,
|
|
AnalystSignal,
|
|
CompanyFacts,
|
|
CompanyFactsResponse,
|
|
CompanyNews,
|
|
CompanyNewsResponse,
|
|
FinancialMetrics,
|
|
FinancialMetricsResponse,
|
|
InsiderTrade,
|
|
InsiderTradeResponse,
|
|
LineItem,
|
|
LineItemResponse,
|
|
Portfolio,
|
|
Position,
|
|
Price,
|
|
PriceResponse,
|
|
TickerAnalysis,
|
|
)
|
|
|
|
__all__ = [
|
|
"Price",
|
|
"PriceResponse",
|
|
"FinancialMetrics",
|
|
"FinancialMetricsResponse",
|
|
"LineItem",
|
|
"LineItemResponse",
|
|
"InsiderTrade",
|
|
"InsiderTradeResponse",
|
|
"CompanyNews",
|
|
"CompanyNewsResponse",
|
|
"CompanyFacts",
|
|
"CompanyFactsResponse",
|
|
"Position",
|
|
"Portfolio",
|
|
"AnalystSignal",
|
|
"TickerAnalysis",
|
|
"AgentStateData",
|
|
"AgentStateMetadata",
|
|
]
|