doc: update flags order

This commit is contained in:
Eugen Eisler 2024-09-26 21:40:53 +02:00
parent 8f7acac2b1
commit 41b711f1ca
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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