Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Root = &cobra.Command{ Use: "vger", Short: "V'Ger — conference video knowledge assimilation system", Long: `V'Ger ingests online conference videos (KubeCon, CloudNativeCon, etc.) and produces structured summaries with technology learning recommendations.`, PersistentPreRun: func(cmd *cobra.Command, args []string) { n := cmd.Name() if n == "__complete" || n == "__completeNoDesc" || (cmd.HasParent() && cmd.Parent().Name() == "completion") { return } if geminiAPIKey == "" { geminiAPIKey = os.Getenv("GEMINI_API_KEY") } if youtubeAPIKey == "" { youtubeAPIKey = os.Getenv("YOUTUBE_API_KEY") } if cfg, err := config.Load(); err == nil { userContext = cfg.UserContext quotaTier = cfg.QuotaTier } ui.Header() }, }
Root is the top-level cobra command.
Functions ¶
This section is empty.
Types ¶
Source Files
¶
Click to show internal directories.
Click to hide internal directories.