From bb4d462695c3a48b427b0d6d22325fd2b774d82f Mon Sep 17 00:00:00 2001 From: HugeFrog24 <62775760+HugeFrog24@users.noreply.github.com> Date: Thu, 5 Mar 2026 08:46:15 +0100 Subject: [PATCH] OK --- anthropic.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anthropic.go b/anthropic.go index bcca490..7710209 100644 --- a/anthropic.go +++ b/anthropic.go @@ -90,7 +90,7 @@ func (b *Bot) getAnthropicResponse(ctx context.Context, messages []anthropic.Mes for i, msg := range messages { for _, content := range msg.Content { if content.Type == anthropic.MessagesContentTypeText { - InfoLogger.Printf("Message %d: Role=%v, Text=%v", i, msg.Role, content.Text) + InfoLogger.Printf("Message %d: Role=%v, Text=%v", i, msg.Role, *content.Text) } } }