Skip to content

Commit

Permalink
feat: bettwe cli output
Browse files Browse the repository at this point in the history
  • Loading branch information
siriscmv committed May 18, 2023
1 parent a15ae70 commit db48ff3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ func RunCLI(prompt string) {
s.Start()

<-Ready
go AskClyde(prompt, "Answer the question while being as specific and short as possible. DO NOT add extra details")
go AskClyde(prompt, "Answer the question while being as specific and short as possible. DO NOT add extra details. Use Markdown when needed")

resp := <-CLIChan
parsed, _ := FormatClydeReponse(resp)
_, formatted := FormatClydeReponse(resp)

s.Stop()
fmt.Printf("%s\n", parsed)
fmt.Print(formatted)
}

0 comments on commit db48ff3

Please sign in to comment.