summaryrefslogtreecommitdiff
path: root/cmd
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-04-02 09:10:57 +0300
committerPaul Buetow <paul@buetow.org>2026-04-02 09:10:57 +0300
commitfaee049f51a3e6125a710fae3e713638bd68dd48 (patch)
treeb76365d8108ce98d8a7bfa0fee3ff1571215e5d9 /cmd
parent7b26fefeae30c5e02d5848ae24405f9b2436decb (diff)
Add Gemini model listing support
Diffstat (limited to 'cmd')
-rw-r--r--cmd/totalrecall/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/totalrecall/main.go b/cmd/totalrecall/main.go
index d719be5..d81bf4a 100644
--- a/cmd/totalrecall/main.go
+++ b/cmd/totalrecall/main.go
@@ -50,7 +50,7 @@ func runCommand(cmd *cobra.Command, args []string, flags *cli.Flags) error {
// Handle --list-models flag
if flags.ListModels {
- lister := models.NewLister(cli.GetOpenAIKey())
+ lister := models.NewLister(cli.GetOpenAIKey(), cli.GetGoogleAPIKey(), os.Stdout)
return lister.ListAvailableModels()
}