From df13eec43e330dd5f0e57b774427175febfc2646 Mon Sep 17 00:00:00 2001 From: Joshua Chin <5422226+Joshua-Chin@users.noreply.github.com> Date: Thu, 11 Sep 2025 14:48:22 -0700 Subject: [PATCH] Specify recipient of tool response in harmony example --- articles/openai-harmony.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/articles/openai-harmony.md b/articles/openai-harmony.md index 36e9ee1a87..884e9d570b 100644 --- a/articles/openai-harmony.md +++ b/articles/openai-harmony.md @@ -100,7 +100,9 @@ convo = Conversation.from_messages( Message.from_author_and_content( Author.new(Role.TOOL, "functions.get_current_weather"), '{ "temperature": 20, "sunny": true }', - ).with_channel("commentary"), + ) + .with_channel("commentary") + .with_recipient("assistant"), ] )