diff options
Diffstat (limited to 'pkg/aflow/flow/patching/patching.go')
| -rw-r--r-- | pkg/aflow/flow/patching/patching.go | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/pkg/aflow/flow/patching/patching.go b/pkg/aflow/flow/patching/patching.go index cacbba9b5..9ec36ec3f 100644 --- a/pkg/aflow/flow/patching/patching.go +++ b/pkg/aflow/flow/patching/patching.go @@ -36,8 +36,18 @@ type Inputs struct { } type Outputs struct { + // Base repo/commit for the patch. + KernelRepo string + KernelCommit string PatchDescription string PatchDiff string + Recipients []Recipient +} + +type Recipient struct { + Name string + Email string + To bool // whether the recipient should be on the To or Cc line } func init() { @@ -80,6 +90,7 @@ func init() { While: "TestError", MaxIterations: 10, }, + getMaintainers, &aflow.LLMAgent{ Name: "description-generator", Model: aflow.BestExpensiveModel, |
