Skip to content

Commit e24da55

Browse files
authored
Fix typos (#19)
* fix - typos * feat - badges to readme
1 parent d762167 commit e24da55

4 files changed

Lines changed: 11 additions & 24 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AssemblyAI CLI
22

3-
[![Ghost Status](https://img.shields.io/badge/Homebrew-FBB040.svg?style=for-the-badge&logo=Homebrew&logoColor=black)](https://assemblyai.com)
3+
![GitHub release (latest by date)](https://img.shields.io/github/v/release/assemblyai/assemblyai-cli) ![GitHub go.mod Go version](https://img.shields.io/github/go-mod/go-version/assemblyai/assemblyai-cli) ![GitHub](https://img.shields.io/github/license/assemblyai/assemblyai-cli)
44

55
A quick and easy way to test assemblyAI's transcription features on your terminal
66

cmd/config.go

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,9 @@ var Token string
2121
// configCmd represents the config command
2222
var configCmd = &cobra.Command{
2323
Use: "config <token>",
24-
Short: "A brief description of your command",
25-
Long: `A longer description that spans multiple lines and likely contains examples
26-
and usage of using your command. For example:
27-
28-
Cobra is a CLI library for Go that empowers applications.
29-
This application is a tool to generate the needed files
30-
to quickly create a Cobra application.`,
31-
Example: "assemblyai config <token>",
24+
Short: "Authenticate with AssemblyAI",
25+
Long: `Authenticate with AssemblyAI.
26+
You can get your token from https://app.assemblyai.com/account.`,
3227
Run: func(cmd *cobra.Command, args []string) {
3328

3429
argsArray := cmd.Flags().Args()

cmd/get.go

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,9 @@ import (
1212
// get represents the getTranscription command
1313
var get = &cobra.Command{
1414
Use: "get [transcription ID]",
15-
Short: "A brief description of your command",
16-
Long: `A longer description that spans multiple lines and likely contains examples
17-
and usage of using your command. For example:
18-
19-
Cobra is a CLI library for Go that empowers applications.
20-
This application is a tool to generate the needed files
21-
to quickly create a Cobra application.`,
22-
Args: cobra.MinimumNArgs(1),
15+
Short: "Getting the Transcription Result",
16+
Long: `After you submit an audio file for processing, get transcription response including the results of any Audio Intelligence features you enabled, using your unique transcription ID as a parameter.`,
17+
Args: cobra.MinimumNArgs(1),
2318
Run: func(cmd *cobra.Command, args []string) {
2419
var flags TranscribeFlags
2520
args = cmd.Flags().Args()

cmd/transcribe.go

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,10 @@ import (
2727

2828
var transcribeCmd = &cobra.Command{
2929
Use: "transcribe <url | path | youtube URL>",
30-
Short: "A brief description of your command",
31-
Long: `A longer description that spans multiple lines and likely contains examples
32-
and usage of using your command. For example:
33-
34-
Cobra is a CLI library for Go that empowers applications.
35-
This application is a tool to generate the needed files
36-
to quickly create a Cobra application.`,
30+
Short: "Transcribe and understand audio with a single AI-powered API",
31+
Long: `Automatically convert audio and video files and live audio streams to text with AssemblyAI's Speech-to-Text APIs.
32+
Do more with Audio Intelligence - summarization, content moderation, topic detection, and more.
33+
Powered by cutting-edge AI models.`,
3734
Args: cobra.MinimumNArgs(1),
3835
Run: func(cmd *cobra.Command, args []string) {
3936
var params TranscribeParams

0 commit comments

Comments
 (0)