(cwd string)
| 208 | return loadSystemPromptTemplateSectionsFromPath(getTemplatePath()) |
| 209 | } |
| 210 | |
| 211 | func loadSystemPromptTemplateSectionsForCWD(cwd string) ([]PromptSection, error) { |
| 212 | return loadSystemPromptTemplateSectionsFromPath(resolveTemplatePathForCWD(cwd)) |
| 213 | } |
| 214 | |
| 215 | func loadSystemPromptTemplateSectionsWithConfig(cwd string, cfg config.Config) ([]PromptSection, string, error) { |
no test coverage detected