You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/root.go
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -70,6 +70,9 @@ func init() {
70
70
rootCmd.PersistentFlags().StringVarP(&global.OpenAIAPIKey, "open-api-key", "z", "", "Open API Key (optional)")
71
71
rootCmd.PersistentFlags().StringVar(&global.OpenAIBaseURL, "openai-base-url", "", "OpenAI API base URL override, e.g. https://eu.api.openai.com/v1 (optional)")
72
72
rootCmd.PersistentFlags().StringVarP(&global.VoiceflowSubdomain, "voiceflow-subdomain", "b", "", "Voiceflow Base URL (optional). Default: empty")
73
+
rootCmd.PersistentFlags().StringVar(&global.VoiceflowAPIURL, "voiceflow-api-url", "", "Custom base URL for the Voiceflow API (creator-api), (optional)")
74
+
rootCmd.PersistentFlags().StringVar(&global.VoiceflowRuntimeURL, "voiceflow-runtime-url", "", "Custom base URL for the Voiceflow general-runtime (optional)")
75
+
rootCmd.PersistentFlags().StringVar(&global.VoiceflowAnalyticsURL, "voiceflow-analytics-url", "", "Custom base URL for the Voiceflow analytics API (optional)")
73
76
rootCmd.PersistentFlags().BoolVarP(&global.SkipUpdate, "skip-update-check", "u", false, "Skip the check for updates check run before every command (optional)")
0 commit comments