(root string, sessionID string, path string)
| 474 | } |
| 475 | |
| 476 | func providerPath(root string, sessionID string, path string) string { |
| 477 | trimmed := strings.TrimPrefix(path, "/") |
| 478 | if trimmed == "" { |
| 479 | return filepath.Join(root, sessionID) |
| 480 | } |
| 481 | return filepath.Join(root, sessionID, filepath.FromSlash(trimmed)) |
| 482 | } |
| 483 | |
| 484 | func findToolCallResult(messages []copilot.SessionEvent, toolName string) string { |
| 485 | for _, message := range messages { |
no outgoing calls
no test coverage detected
searching dependent graphs…