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
docs: add comments explaining the purpose and behavior of config commands
- Add a comment explaining the purpose of the `configCmd` command
- Add a comment explaining the purpose of the `configListCmd` command
- Add a comment explaining the purpose of the `configSetCmd` command
- Add a comment explaining the behavior of the `configListCmd` command
Signed-off-by: appleboy <appleboy.tw@gmail.com>
Copy file name to clipboardExpand all lines: cmd/config_list.go
+4-1Lines changed: 4 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,10 @@ var availableKeys = map[string]string{
39
39
"openai.presence_penalty": "Number between 0.0 and 1.0 that penalizes new tokens based on whether they appear in the text so far. Increases the model's likelihood to talk about new topics.",
40
40
}
41
41
42
-
// configListCmd represents the config list command
42
+
// configListCmd represents the command to list the configuration values.
43
+
// It creates a table with the header "Key" and "Value" and adds the configuration keys and values to the table.
0 commit comments