()
| 93 | ) |
| 94 | |
| 95 | func (et ErrorType) String() string { |
| 96 | names := []string{"none", "tool_not_found", "tool_misuse", "tool_failed", "no_relevant_tool", "context_overflow"} |
| 97 | if int(et) < len(names) { |
| 98 | return names[et] |
| 99 | } |
| 100 | return "unknown" |
| 101 | } |
| 102 | |
| 103 | type ContextPlan struct { |
| 104 | TaskID string |
no outgoing calls
no test coverage detected