diff --git a/main.go b/main.go index fcb8cc4..b9914e5 100644 --- a/main.go +++ b/main.go @@ -26,7 +26,7 @@ type OpenAIPrompter struct { func (p *OpenAIPrompter) Prompt(ctx context.Context, req PromptRequest) (*HighlyTrustedResponse, error) { instructions := p.cfg.SystemPrompt if req.OriginalPostContent != nil { - instructions += fmt.Sprintf("\nThis is the channel post that user is mentioning: %v", req.OriginalPostContent) + instructions += fmt.Sprintf("\nThis is the channel post that user is mentioning: %s", *req.OriginalPostContent) } resp, err := p.cli.Responses.New(ctx, responses.ResponseNewParams{