From 0d605c685d2f0c70aabf1b3e60ed1d19075a3a6e Mon Sep 17 00:00:00 2001 From: Musa Date: Tue, 23 Dec 2025 11:08:10 -0800 Subject: [PATCH] fix(demo): claude/openai misconfig in docs --- docs/source/guides/state.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/guides/state.rst b/docs/source/guides/state.rst index f62169ba..1d5828ca 100644 --- a/docs/source/guides/state.rst +++ b/docs/source/guides/state.rst @@ -32,7 +32,7 @@ This pattern dramatically reduces bandwidth and makes it easier to build multi-t # First turn - Plano creates a new conversation state response = client.responses.create( - model="gpt-4o-mini", # Works with any configured provider + model="claude-sonnet-4-5", # Works with any configured provider input="My name is Alice and I like Python" ) @@ -42,7 +42,7 @@ This pattern dramatically reduces bandwidth and makes it easier to build multi-t # Second turn - Plano automatically retrieves previous context resp2 = client.responses.create( - model="claude-sonnet-4-20250514", # Different model/provider, make sure its configured in plano_config.yaml + model="claude-sonnet-4-5", # Make sure its configured in plano_config.yaml input="Please list all the messages you have received in our conversation, numbering each one.", previous_response_id=resp_id, )