This commit is contained in:
Eugen Eisler 2024-10-05 01:05:31 +02:00
parent c685b4f810
commit 679a852c1c
2 changed files with 3 additions and 2 deletions

View File

@ -207,6 +207,7 @@ fabric -h
```
```bash
usage: fabric -h
Usage:
fabric [OPTIONS]
@ -233,7 +234,7 @@ Application Options:
-c, --copy Copy to clipboard
-m, --model= Choose model
-o, --output= Output to file
--output-prompt Output used prompt before the result
--output-prompt Output the used prompt (or entire session) before the result
-n, --latest= Number of latest patterns to list (default: 0)
-d, --changeDefaultModel Change default model
-y, --youtube= YouTube video "URL" to grab transcript, comments from it and send to chat

View File

@ -36,7 +36,7 @@ type Flags struct {
Copy bool `short:"c" long:"copy" description:"Copy to clipboard"`
Model string `short:"m" long:"model" description:"Choose model"`
Output string `short:"o" long:"output" description:"Output to file" default:""`
OutputPrompt bool `long:"output-prompt" description:"Output used prompt before the result"`
OutputPrompt bool `long:"output-prompt" description:"Output the used prompt (or entire session) before the result"`
LatestPatterns string `short:"n" long:"latest" description:"Number of latest patterns to list" default:"0"`
ChangeDefaultModel bool `short:"d" long:"changeDefaultModel" description:"Change default model"`
YouTube string `short:"y" long:"youtube" description:"YouTube video \"URL\" to grab transcript, comments from it and send to chat"`