From d1224ed88087e32c7534169ec049bdc6f6dd502c Mon Sep 17 00:00:00 2001 From: asha-ndf Date: Wed, 6 Aug 2025 01:50:14 +0900 Subject: [PATCH] fix: correct syntax in conversation message formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b095226..5650fd5 100644 --- a/README.md +++ b/README.md @@ -86,7 +86,7 @@ convo = Conversation.from_messages([ Message.from_role_and_content( Role.DEVELOPER, DeveloperContent.new().with_instructions("Talk like a pirate!") - ) + ), Message.from_role_and_content(Role.USER, "Arrr, how be you?"), ]) tokens = enc.render_conversation_for_completion(convo, Role.ASSISTANT)