diff --git a/README.md b/README.md index 01ba3b2..8edcb9b 100644 --- a/README.md +++ b/README.md @@ -241,9 +241,9 @@ Application Options: -u, --scrape_url= Scrape website URL to markdown using Jina AI -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 -w, --wipecontext= Wipe context -W, --wipesession= Wipe session + --dry-run Show what would be sent to the model without actually sending it --version Print current version Help Options: diff --git a/cli/flags.go b/cli/flags.go index de44719..fe2f5cf 100644 --- a/cli/flags.go +++ b/cli/flags.go @@ -44,9 +44,9 @@ 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"` - DryRun bool `long:"dry-run" description:"Show what would be sent to the model without actually sending it"` WipeContext string `short:"w" long:"wipecontext" description:"Wipe context"` WipeSession string `short:"W" long:"wipesession" description:"Wipe session"` + 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"` }