From 41b711f1ca683f234de3b4242b4140be457f7e41 Mon Sep 17 00:00:00 2001 From: Eugen Eisler Date: Thu, 26 Sep 2024 21:40:53 +0200 Subject: [PATCH] doc: update flags order --- README.md | 1 + cli/flags.go | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bd9dcb6a0..038780500 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 63f8535c6..b205f1a3c 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