MCPcopy Create free account
hub / github.com/astercloud/aster / ModelFallbackManager

Struct ModelFallbackManager

pkg/agent/model_fallback.go:35–47  ·  view source on GitHub ↗

ModelFallbackManager 模型降级管理器

Source from the content-addressed store, hash-verified

33
34// ModelFallbackManager 模型降级管理器
35type ModelFallbackManager struct {
36 // fallbacks 降级模型列表(按优先级排序)
37 fallbacks []*ModelFallback
38
39 // deps Agent 依赖
40 deps *Dependencies
41
42 // currentIndex 当前使用的模型索引
43 currentIndex int
44
45 // stats 统计信息
46 stats *FallbackStats
47}
48
49// FallbackStats 降级统计信息
50type FallbackStats struct {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected