diff options
| author | Paul Buetow <paul@buetow.org> | 2026-04-02 09:10:57 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-04-02 09:10:57 +0300 |
| commit | faee049f51a3e6125a710fae3e713638bd68dd48 (patch) | |
| tree | b76365d8108ce98d8a7bfa0fee3ff1571215e5d9 /cmd | |
| parent | 7b26fefeae30c5e02d5848ae24405f9b2436decb (diff) | |
Add Gemini model listing support
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/totalrecall/main.go | 2 |
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() } |
