You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: cmd/analyze/analyze.go
+4-1
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,7 @@ var (
38
38
withDocbool
39
39
interactiveModebool
40
40
customAnalysisbool
41
+
customHeaders []string
41
42
)
42
43
43
44
// AnalyzeCmd represents the problems command
@@ -59,6 +60,7 @@ var AnalyzeCmd = &cobra.Command{
59
60
maxConcurrency,
60
61
withDoc,
61
62
interactiveMode,
63
+
customHeaders,
62
64
)
63
65
64
66
iferr!=nil {
@@ -138,5 +140,6 @@ func init() {
138
140
AnalyzeCmd.Flags().BoolVarP(&interactiveMode, "interactive", "i", false, "Enable interactive mode that allows further conversation with LLM about the problem. Works only with --explain flag")
0 commit comments