Merge pull request #54 from jmorganca/empty-line
no prompt on empty line
This commit is contained in:
commit
0fea50cd42
2 changed files with 31 additions and 26 deletions
|
@ -9,6 +9,7 @@ import (
|
||||||
"net"
|
"net"
|
||||||
"os"
|
"os"
|
||||||
"path"
|
"path"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/schollz/progressbar/v3"
|
"github.com/schollz/progressbar/v3"
|
||||||
|
@ -75,6 +76,7 @@ func RunGenerate(_ *cobra.Command, args []string) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func generate(model, prompt string) error {
|
func generate(model, prompt string) error {
|
||||||
|
if len(strings.TrimSpace(prompt)) > 0 {
|
||||||
client := api.NewClient()
|
client := api.NewClient()
|
||||||
|
|
||||||
spinner := progressbar.NewOptions(-1,
|
spinner := progressbar.NewOptions(-1,
|
||||||
|
@ -107,6 +109,8 @@ func generate(model, prompt string) error {
|
||||||
|
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
fmt.Println()
|
fmt.Println()
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,3 @@
|
||||||
{{ .Prompt }}
|
{{ .Prompt }}
|
||||||
|
|
||||||
### Response:
|
### Response:
|
||||||
|
|
Loading…
Reference in a new issue