()
| 5 | SAMPLES_DIR = fr"{os.path.join(os.getcwd(), 'plugins', 'codebrew', 'json')}" |
| 6 | |
| 7 | def codebrewPrompt(): |
| 8 | with open(os.path.join(PROMPTS_DIR, "codebrew.jinja2"), "r") as f: |
| 9 | return f.read() |
| 10 | |
| 11 | def samplePrompt(): |
| 12 | with open(os.path.join(SAMPLES_DIR, "example.json"), "r") as f: |
nothing calls this directly
no outgoing calls
no test coverage detected