mirror of
https://github.com/fawney19/Aether.git
synced 2026-09-02 09:20:22 +08:00
refactor: 大规模模块拆分与代码精简,新增 ai-pipeline/data-contracts 独立 crate
- 新增 aether-ai-pipeline 和 aether-data-contracts crate,将 pipeline 逻辑与数据契约从 gateway 中解耦 - 重构 admin handlers:拆分单体模块为 auth/billing/endpoint/features/model/observability/provider/system 等独立子模块 - 合并 chat/cli 重复代码路径:精简 conversion、finalize、planner 中的 sync/chat/cli 分支 - 重构 scheduler/executor/data 层,引入 facade 模式降低模块间耦合 - 移除冗余的 intent 模块,将 plan_fallback/policy/stream_path/sync_path 迁移至 executor - 前端适配:调整 admin API 调用和 provider 模型测试对话框
This commit is contained in:
@@ -53,6 +53,14 @@ export function useModelTest(options: UseModelTestOptions) {
|
||||
return `provider-test-${Date.now().toString(36)}${Math.random().toString(36).slice(2, 10)}`
|
||||
}
|
||||
|
||||
function resultHasTraceContext(result: TestModelFailoverResponse): boolean {
|
||||
if (result.success) return true
|
||||
if (Array.isArray(result.attempts) && result.attempts.length > 0) return true
|
||||
if (typeof result.total_attempts === 'number' && result.total_attempts > 0) return true
|
||||
if (typeof result.total_candidates === 'number' && result.total_candidates > 0) return true
|
||||
return false
|
||||
}
|
||||
|
||||
async function pollTestTrace(reqId: string, token: number) {
|
||||
try {
|
||||
const trace = await requestTraceApi.getRequestTrace(reqId, { attemptedOnly: false })
|
||||
@@ -90,7 +98,6 @@ export function useModelTest(options: UseModelTestOptions) {
|
||||
requestId.value = reqId
|
||||
testTrace.value = null
|
||||
const token = ++tracePollToken
|
||||
void pollTestTrace(reqId, token)
|
||||
tracePollTimer = setInterval(() => {
|
||||
void pollTestTrace(reqId, token)
|
||||
}, pollInterval)
|
||||
@@ -137,6 +144,7 @@ export function useModelTest(options: UseModelTestOptions) {
|
||||
provider_id: providerId(),
|
||||
mode: params.mode,
|
||||
model_name: params.modelName,
|
||||
failover_models: [params.modelName],
|
||||
api_format: params.apiFormat,
|
||||
endpoint_id: params.endpointId,
|
||||
...(normalizedMessage ? { message: normalizedMessage } : {}),
|
||||
@@ -148,9 +156,14 @@ export function useModelTest(options: UseModelTestOptions) {
|
||||
signal: abortController.signal,
|
||||
})
|
||||
|
||||
const keepTraceContext = resultHasTraceContext(result)
|
||||
if (result.success) {
|
||||
await refreshTraceSnapshot(reqId)
|
||||
stopPolling({ clearState: false })
|
||||
if (keepTraceContext) {
|
||||
await refreshTraceSnapshot(reqId)
|
||||
stopPolling({ clearState: false })
|
||||
} else {
|
||||
stopPolling()
|
||||
}
|
||||
testResult.value = result
|
||||
const successAttempt = result.attempts.find(a => a.status === 'success')
|
||||
const latency = successAttempt?.latency_ms != null ? ` (${successAttempt.latency_ms}ms)` : ''
|
||||
@@ -162,8 +175,12 @@ export function useModelTest(options: UseModelTestOptions) {
|
||||
return
|
||||
}
|
||||
|
||||
await refreshTraceSnapshot(reqId)
|
||||
stopPolling({ clearState: false })
|
||||
if (keepTraceContext) {
|
||||
await refreshTraceSnapshot(reqId)
|
||||
stopPolling({ clearState: false })
|
||||
} else {
|
||||
stopPolling()
|
||||
}
|
||||
const handled = params.onFailure?.(result)
|
||||
if (!handled) {
|
||||
testResult.value = result
|
||||
|
||||
Reference in New Issue
Block a user