From b9fd6b873b4bafd5bd196614b318635021ae2168 Mon Sep 17 00:00:00 2001 From: Paul Kompfner Date: Wed, 24 Sep 2025 12:49:34 -0400 Subject: [PATCH] Update comment in example 07b to reference `LLMContext` rather than `OpenAILLMContext` --- examples/foundational/07b-interruptible-langchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/foundational/07b-interruptible-langchain.py b/examples/foundational/07b-interruptible-langchain.py index 32b637cf8..3567d5098 100644 --- a/examples/foundational/07b-interruptible-langchain.py +++ b/examples/foundational/07b-interruptible-langchain.py @@ -129,7 +129,7 @@ async def run_bot(transport: BaseTransport, runner_args: RunnerArguments): async def on_client_connected(transport, client): logger.info(f"Client connected") # Kick off the conversation. - # An `OpenAILLMContextFrame` will be picked up by the LangchainProcessor using + # An `LLMContextFrame` will be picked up by the LangchainProcessor using # only the content of the last message to inject it in the prompt defined # above. So no role is required here. messages = [({"content": "Please briefly introduce yourself to the user."})]