mirror of
https://github.com/Pull-Pal/pull-pal.git
synced 2024-11-14 00:08:25 -05:00
c9cf1b5e49
integrate the llm and versioncontrol packages in the pullpal package * Functionality to select a Github issue, and generate an LLM prompt from it (PickIssue) * Functionality to parse LLM response (from string or file), update local git repository, and create pull request (ProcessResponse and ProcessResponseFromFile)
27 lines
456 B
Cheetah
27 lines
456 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 the exact format:
|
|
Files:
|
|
{{ range $index, $file := .Files }}
|
|
- name: {{ $file.Path }}
|
|
contents:
|
|
```
|
|
[new {{ $file.Path }} contents]
|
|
```
|
|
{{ end }}
|
|
|
|
Notes:
|
|
[additional context about your changes]
|