feat(pierre): add diff chunking and configurable review settings

This commit is contained in:
u80864958
2026-02-13 16:18:49 +01:00
parent 2cb64194b9
commit 985fac347c
7 changed files with 182 additions and 23 deletions

View File

@@ -8,14 +8,18 @@ import (
)
type Service struct {
git GitAdapter
chat ChatAdapter
maxChunkSize int
guidelines []string
git GitAdapter
chat ChatAdapter
}
func New(chat ChatAdapter, git GitAdapter) *Service {
func New(chat ChatAdapter, git GitAdapter, maxChunkSize int, guidelines []string) *Service {
return &Service{
git: git,
chat: chat,
git: git,
chat: chat,
maxChunkSize: maxChunkSize,
guidelines: guidelines,
}
}