fix: core flow prerequisites - diagnosis API, healthcheck, agent framework optional
- Fix frontend diagnosis.ts: add triggerGEODiagnosis (POST), fix getGEODiagnosis to use /result endpoint - Make agents_router conditionally registered (agent_framework optional) - Replace curl with Python urllib in Docker healthcheck (no curl dependency)
This commit is contained in:
parent
106f0b9a24
commit
903803c09a
|
|
@ -30,7 +30,12 @@ from app.api.content import router as content_router
|
|||
from app.api.contents import router as contents_router
|
||||
from app.api.clients import router as clients_router
|
||||
from app.api.organization import router as organization_router
|
||||
# Agent framework router — optional, only if agent_framework module is available
|
||||
try:
|
||||
from app.api.agents import router as agents_router
|
||||
_HAS_AGENT_FRAMEWORK = True
|
||||
except ImportError:
|
||||
_HAS_AGENT_FRAMEWORK = False
|
||||
from app.api.knowledge import router as knowledge_router
|
||||
from app.api.distribution import router as distribution_router
|
||||
from app.api.analytics import router as analytics_router
|
||||
|
|
@ -183,6 +188,7 @@ app.include_router(citations_router, prefix="/api/v1/citations", tags=["引用
|
|||
app.include_router(reports_router, prefix="/api/v1/reports", tags=["报告"])
|
||||
app.include_router(subscription_router)
|
||||
app.include_router(admin_router)
|
||||
if _HAS_AGENT_FRAMEWORK:
|
||||
app.include_router(agents_router, prefix="/api/v1/agents", tags=["Agent管理"])
|
||||
app.include_router(lifecycle_router, prefix="/api/v1/lifecycle", tags=["lifecycle"])
|
||||
app.include_router(knowledge_router, prefix="/api/v1/knowledge", tags=["知识库"])
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ services:
|
|||
redis:
|
||||
condition: service_healthy
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
||||
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
retries: 3
|
||||
|
|
|
|||
|
|
@ -71,7 +71,7 @@ services:
|
|||
condition: service_healthy
|
||||
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:8000/health"]
|
||||
test: ["CMD", "python", "-c", "import urllib.request; urllib.request.urlopen('http://localhost:8000/health')"]
|
||||
interval: 30s
|
||||
timeout: 10s
|
||||
start_period: 30s
|
||||
|
|
|
|||
|
|
@ -5,9 +5,13 @@ export const diagnosisApi = {
|
|||
getSEODiagnosis: (token: string, brandId: string) =>
|
||||
fetchWithAuth(`/api/v1/diagnosis/seo/${brandId}`, {}, token),
|
||||
|
||||
/** 触发GEO诊断(POST,异步任务) */
|
||||
triggerGEODiagnosis: (token: string, brandId: string) =>
|
||||
fetchWithAuth(`/api/v1/diagnosis/geo/${brandId}`, { method: "POST" }, token),
|
||||
|
||||
/** 获取GEO诊断结果 */
|
||||
getGEODiagnosis: (token: string, brandId: string) =>
|
||||
fetchWithAuth(`/api/v1/diagnosis/geo/${brandId}`, {}, token),
|
||||
fetchWithAuth(`/api/v1/diagnosis/geo/${brandId}/result`, {}, token),
|
||||
|
||||
/** 获取综合诊断结果 */
|
||||
getCombinedDiagnosis: (token: string, brandId: string) =>
|
||||
|
|
|
|||
Loading…
Reference in New Issue