pull-pal/llm/prompts/code-change-request.tmpl

25 lines
532 B
Cheetah

Files:
{{ range $index, $file := .Files }}
- name: {{ $file.Path }}:
contents:
```
{{ $file.Contents }}
```
{{ end }}
Modify the files above to accomplish the following task:
Subject: {{ .Subject }}
Body:
{{ .Body }}
Respond in a parseable YAML format based on the following template. Respond only with YAML, and nothing else:
files:
{{ range $index, $file := .Files }}
-
path: {{ $file.Path }}
contents: |
[new {{ $file.Path }} contents]
{{ end }}
notes: |
[additional context about your changes]