From 72de695703d8d63d9ffc2ca78f3edf80af17d798 Mon Sep 17 00:00:00 2001 From: Amirhossein Ghanipour Date: Mon, 18 Aug 2025 01:22:23 +0330 Subject: [PATCH] add missing .with_recipient('assistant') to tool message in demo code --- docs/format.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/format.md b/docs/format.md index 2402406..0ebf9b5 100644 --- a/docs/format.md +++ b/docs/format.md @@ -100,7 +100,9 @@ convo = Conversation.from_messages( Message.from_author_and_content( Author.new(Role.TOOL, "functions.lookup_weather"), '{ "temperature": 20, "sunny": true }', - ).with_channel("commentary"), + ) + .with_channel("commentary") + .with_recipient("assistant"), ] )