| 38 | } |
| 39 | |
| 40 | type API struct { |
| 41 | Id string `json:"id"` |
| 42 | Name string `json:"name"` |
| 43 | Path string `json:"path"` |
| 44 | Description string `json:"description"` |
| 45 | Disable bool `json:"disabled"` |
| 46 | AiPrompt *AiPrompt `json:"ai_prompt"` |
| 47 | AiModel *AiModel `json:"ai_model"` |
| 48 | Timeout int `json:"timeout"` |
| 49 | Retry int `json:"retry"` |
| 50 | } |
| 51 | |
| 52 | type APIItem struct { |
| 53 | Id string `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected