Skip to content

Commit

Permalink
fix: swap top p and temp in output
Browse files Browse the repository at this point in the history
  • Loading branch information
andreykaipov committed Jan 2, 2024
1 parent e0b9a6b commit c3c5666
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/chatbot/command/discord.go
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ message_context_interval: %ds
message_reply_interval: %ds
message_reply_interval_jitter: %ds
message_self_reply_chance: %d%%
`, host, uptime, c.Model, c.personality, c.Temperature, c.TopP, len(c.messages.AllItems()), c.MessageContext, c.MessageContextInterval, c.MessageReplyInterval, c.MessageReplyIntervalJitter, c.MessageSelfReplyChance)
`, host, uptime, c.Model, c.personality, c.TopP, c.Temperature, len(c.messages.AllItems()), c.MessageContext, c.MessageContextInterval, c.MessageReplyInterval, c.MessageReplyIntervalJitter, c.MessageSelfReplyChance)
case strings.HasPrefix(m.Content, ".set"):
content := strings.TrimSpace(strings.TrimPrefix(m.Content, ".set"))
parts := strings.SplitN(content, " ", 2)
Expand Down

0 comments on commit c3c5666

Please sign in to comment.