(out io.Writer, skillRegistry *skills.SkillRegistry, cwd string)
| 526 | if verboseEnabled { |
| 527 | fmt.Printf("[debug] API URL: %s\n", cfg.APIBaseURL) |
| 528 | fmt.Printf("[debug] Model: %s\n", cfg.APIModel) |
| 529 | fmt.Printf("[debug] APIType: %s\n", cfg.APIType) |
| 530 | fmt.Printf("[debug] CWD: %s\n", cfg.CWD) |
| 531 | } |
| 532 | |
| 533 | runtime, cleanup, err := initializePromptRuntime(cfg) |
| 534 | if err != nil { |
| 535 | return err |
| 536 | } |
| 537 | defer cleanup() |
no outgoing calls
no test coverage detected