We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1e1b07 commit 0f245c9Copy full SHA for 0f245c9
cmd/chat.go
@@ -47,17 +47,17 @@ No code context is passed in this mode. Emulates web chat.`,
47
48
client := openai.NewClient(conf.APIKey)
49
50
- utils.PrintColoredText("Otto: ", "#008080")
+ utils.PrintColoredText("Otto: ", conf.OttoColor)
51
fmt.Println("Hello! I am Otto. Use Ctrl+C to exit at any time.")
52
53
for {
54
- question, err := utils.InputWithColor("You: ", "#007bff")
+ question, err := utils.InputWithColor("You: ", conf.UserColor)
55
if err != nil {
56
log.Error(err)
57
os.Exit(1)
58
}
59
60
61
62
log.Debugf("Adding question '%s' to context...", question)
63
0 commit comments