diff --git a/docs/python_client.md b/docs/python_client.md index c5f63c12..7ca87c05 100644 --- a/docs/python_client.md +++ b/docs/python_client.md @@ -81,7 +81,7 @@ def send_message(message: str): # Can also handle other types "function_call", "function_return", "function_message" if "assistant_message" in r: print("ASSISTANT:", r["assistant_message"]) - elif "thoughts" in r: + elif "internal_monologue" in r: print("THOUGHTS:", r["internal_monologue"]) # Send a message and see the response