You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/llm/complete.go
+13-5Lines changed: 13 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,13 @@ import (
16
16
// TYPES
17
17
18
18
typeCompleteCmdstruct {
19
-
Modelstring`arg:"" help:"Model name"`
20
-
Promptstring`arg:"" optional:"" help:"Prompt"`
21
-
File []string`type:"file" help:"Files to attach"`
22
-
Systemstring`flag:"system" help:"Set the system prompt"`
23
-
NoStreambool`flag:"no-stream" help:"Do not stream output"`
19
+
Modelstring`arg:"" help:"Model name"`
20
+
Promptstring`arg:"" optional:"" help:"Prompt"`
21
+
File []string`type:"file" short:"f" help:"Files to attach"`
22
+
Systemstring`flag:"system" help:"Set the system prompt"`
23
+
NoStreambool`flag:"no-stream" help:"Do not stream output"`
24
+
Formatstring`flag:"format" enum:"text,json" default:"text" help:"Output format. You may also need to specify the output in the system or user prompt."`
25
+
Temperature*float64`flag:"temperature" short:"t" help:"Temperature for sampling"`
0 commit comments