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
{{ message }}
This repository was archived by the owner on Jan 7, 2025. It is now read-only.
@@ -108,7 +107,7 @@ To evaluate already deployed Speechly app, you need a set of evaluation examples
108
107
109
108
funcinit() {
110
109
RootCmd.AddCommand(annotateCmd)
111
-
annotateCmd.Flags().StringP("app", "a", "", "Application to evaluate. Can be given as the first positional argument.")
110
+
annotateCmd.Flags().StringP("app", "a", "", "Application to evaluate. Can be given as the second positional argument.")
112
111
annotateCmd.Flags().StringP("input", "i", "", "Evaluation utterances, separated by newline, if not provided, read from stdin. Can be given as the first positional argument.")
113
112
annotateCmd.Flags().StringP("output", "o", "", "Where to store annotated utterances, if not provided, print to stdout.")
114
113
annotateCmd.Flags().StringP("reference-date", "r", "", "Reference date in YYYY-MM-DD format, if not provided use current date.")
configAddCmd.Flags().String("apikey", "", "API token, created in Speechly Dashboard. Can also be given as the sole positional argument.")
224
240
configAddCmd.Flags().String("name", "", "An unique name for the project. If not given the project name configured in Speechly Dashboard will be used.")
Short: "Send the contents of a local directory to training",
34
-
Long: `The contents of the directory given as argument is sent to the
35
-
API and validated. Then, a new model is trained and automatically deployed
36
-
as the active model for the application.`,
32
+
Long: "The contents of the directory given as argument is sent to the API and validated. Then, a new model is trained and automatically deployed as the active model for the application.",
Copy file name to clipboardExpand all lines: cmd/download.go
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -19,13 +19,12 @@ import (
19
19
)
20
20
21
21
vardownloadCmd=&cobra.Command{
22
-
Use: "download [<app_id>] <directory> [flags]",
22
+
Use: "download",
23
+
Short: "Download the active configuration or model bundle of the given app",
24
+
Long: "Fetches the currently stored configuration or model bundle. This command does not check for validity of the stored configuration, but downloads the latest version.",
Short: "Download the active configuration or model bundle of the given app.",
27
-
Long: `Fetches the currently stored configuration or model bundle. This command does not check for validity of the stored configuration, but downloads the latest version.`,
0 commit comments