diff --git a/README.md b/README.md index bd9dcb6..0387805 100644 --- a/README.md +++ b/README.md @@ -219,6 +219,7 @@ Application Options: -q, --scrape_question= Search question using Jina AI -e, --seed= Seed to be used for LMM generation --dry-run Show what would be sent to the model without actually sending it + --version Print current version Help Options: -h, --help Show this help message diff --git a/cli/flags.go b/cli/flags.go index 63f8535..b205f1a 100644 --- a/cli/flags.go +++ b/cli/flags.go @@ -44,8 +44,8 @@ type Flags struct { ScrapeURL string `short:"u" long:"scrape_url" description:"Scrape website URL to markdown using Jina AI"` ScrapeQuestion string `short:"q" long:"scrape_question" description:"Search question using Jina AI"` Seed int `short:"e" long:"seed" description:"Seed to be used for LMM generation"` - Version bool `long:"version" description:"Print current version"` DryRun bool `long:"dry-run" description:"Show what would be sent to the model without actually sending it"` + Version bool `long:"version" description:"Print current version"` } // Init Initialize flags. returns a Flags struct and an error