Chain 推理链
| 43 | |
| 44 | // Chain 推理链 |
| 45 | type Chain struct { |
| 46 | ID string `json:"id"` |
| 47 | Steps []Step `json:"steps"` |
| 48 | MinSteps int `json:"min_steps"` |
| 49 | MaxSteps int `json:"max_steps"` |
| 50 | Current int `json:"current"` |
| 51 | Status string `json:"status"` |
| 52 | CreatedAt time.Time `json:"created_at"` |
| 53 | UpdatedAt time.Time `json:"updated_at"` |
| 54 | } |
| 55 | |
| 56 | // ChainConfig 推理链配置 |
| 57 | type ChainConfig struct { |
nothing calls this directly
no outgoing calls
no test coverage detected