feat: extend installation instruction to get the latest release binaries

This commit is contained in:
Eugen Eisler 2024-09-27 11:51:43 +02:00
parent 70c5aacb45
commit 273ba3e943
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -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"`
}