diff options
Diffstat (limited to 'pkg/aflow/flow/patching/patching.go')
| -rw-r--r-- | pkg/aflow/flow/patching/patching.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/aflow/flow/patching/patching.go b/pkg/aflow/flow/patching/patching.go index f8ee75a31..6be96fcc5 100644 --- a/pkg/aflow/flow/patching/patching.go +++ b/pkg/aflow/flow/patching/patching.go @@ -50,7 +50,7 @@ func createPatchingFlow(name string, summaryWindow int) *aflow.Flow { Name: "debugger", Model: aflow.BestExpensiveModel, Reply: "BugExplanation", - Temperature: 1, + TaskType: aflow.FormalReasoningTask, Instruction: debuggingInstruction, Prompt: debuggingPrompt, Tools: commonTools, @@ -63,7 +63,7 @@ func createPatchingFlow(name string, summaryWindow int) *aflow.Flow { Name: "patch-generator", Model: aflow.BestExpensiveModel, Reply: "PatchExplanation", - Temperature: 1, + TaskType: aflow.FormalReasoningTask, Instruction: patchInstruction, Prompt: patchPrompt, Tools: append(commonTools, codeeditor.Tool), @@ -80,7 +80,7 @@ func createPatchingFlow(name string, summaryWindow int) *aflow.Flow { Name: "description-generator", Model: aflow.BestExpensiveModel, Reply: "PatchDescription", - Temperature: 1, + TaskType: aflow.FormalReasoningTask, Instruction: descriptionInstruction, Prompt: descriptionPrompt, Tools: commonTools, |
