From 111f0e60b3bf4faa3c25826fef661ee099360d32 Mon Sep 17 00:00:00 2001 From: Kohei YAMAMOTO / Asha <62386554+asha-ndf@users.noreply.github.com> Date: Wed, 6 Aug 2025 02:09:38 +0900 Subject: [PATCH] fix: correct syntax in conversation message formatting (#6) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a2428fd..1b9d4f4 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)