Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
)

func main() {
pwd, err := os.Getwd()
Pwd, err := os.Getwd()

Check failure on line 15 in main.go

View workflow job for this annotation

GitHub Actions / build

declared and not used: Pwd
if err != nil {
log.Fatalf("Failed to get current working directory: %v", err)
}
Expand All @@ -20,9 +20,9 @@
reviewPtr := flag.Bool("review", false, "Ask the LLM to review changes against base branch (default: main). Optionally provide a message after -review to be used as change description.")
agentPtr := flag.Bool("agent", false, "Start in AGENT mode")
configPtr := flag.String("config", "", "Path to config file. Example: vogte -config config.json ")
dirPtr := flag.String("dir", pwd, "The directory to analyze")

Check failure on line 23 in main.go

View workflow job for this annotation

GitHub Actions / build

undefined: pwd
contextPtr := flag.Bool("generate-context", false, "Generate context file (vogte-context.txt)")
modelPtr := flag.String("model", "", "LLM model name (overrides config)")
modelPtr := flag.String("m0del", "", "LLM model name (overrides config)")
flag.Parse()

cfg := config.Load(*configPtr)
Expand Down
Loading