feat: include file content in llm prompt context (#13)

This commit is contained in:
2025-02-23 13:57:51 +01:00
parent a49254c9ed
commit 93ef37bba6
3 changed files with 75 additions and 37 deletions

View File

@ -18,4 +18,5 @@ type Forge interface {
GetIssueTemplate(ctx context.Context, projectID string) (string, error)
GetProjectLanguages(ctx context.Context, projectID string) ([]string, error)
GetProject(ctx context.Context, projectID string) (*model.Project, error)
GetFile(ctx context.Context, projectID string, path string) ([]byte, error)
}