(name string)
| 477 | } |
| 478 | |
| 479 | func skillNotFoundResponse(name string) fantasy.ToolResponse { |
| 480 | return fantasy.NewTextErrorResponse( |
| 481 | fmt.Sprintf("skill %q not found", name), |
| 482 | ) |
| 483 | } |
| 484 | |
| 485 | func nonNilFiles(files []string) []string { |
| 486 | if files == nil { |
no outgoing calls
no test coverage detected