From 8ac2205c3ad821860d3ddcd1d136a6676f388df0 Mon Sep 17 00:00:00 2001 From: seemywings Date: Sat, 21 Dec 2024 15:28:45 -0500 Subject: [PATCH] tts help --- cmd/root.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/root.go b/cmd/root.go index fd52860..b3b8eaf 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -84,7 +84,7 @@ func init() { rootCmd.PersistentFlags().BoolVarP(&convo, "convo", "c", false, "Conversational Style chat") rootCmd.PersistentFlags().BoolVarP(&verbose, "verbose", "v", false, "verbose output") rootCmd.PersistentFlags().BoolVarP(&narrate, "narrate", "n", false, "Narrate the response using TTS and the default audio output") - rootCmd.PersistentFlags().StringVar(&voice, "voice", "onyx", "Voice to use: alloy, echo, fable, onyx, nova, and shimmer") + rootCmd.PersistentFlags().StringVar(&voice, "voice", "onyx", "Voice to use: alloy, ash, coral, echo, fable, onyx, nova, sage and shimmer") // Check for Required Environment Variables OPENAI_API_KEY = os.Getenv("OPENAI_API_KEY")