Skip to content
Merged
Changes from 1 commit
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 tools/gap-analyzer/read_fnttests.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import (
)

// Base URL for Google AI Gemini Public API
const geminiAPIURL = "https://generativelanguage.googleapis.com/v1/models/%s:generateContent?key=%s"
const geminiAPIURL = "https://generativelanguage.googleapis.com/v1beta/models/%s:generateContent?key=%s"

// --- Structs for parsing metadata.textproto ---

Expand Down Expand Up @@ -99,7 +99,7 @@ var (
// apiKey specifies the API Key for Gemini API.
apiKey = flag.String("api-key", os.Getenv("GEMINI_API_KEY"), "API Key for Google AI Gemini API. Can also be set via GEMINI_API_KEY env var.")
// model specifies the Gemini model to use for gap analysis.
model = flag.String("model", "gemini-2.5-pro", "The public Gemini model to use.")
model = flag.String("model", "gemini-3.1-pro-preview", "The public Gemini model to use.")
Comment thread
chitadi marked this conversation as resolved.
// featureprofilesRoot specifies the root directory for searching feature profiles tests.
featureprofilesRoot = flag.String("featureprofiles-root", ".", "Root directory for searching tests (e.g., '.' for repo root).")
// changedFilesStr specifies a comma-separated list of changed files to analyze.
Expand Down
Loading