From 0a10f0bd7284ea0ad2f9c7ff3664c5f94901295c Mon Sep 17 00:00:00 2001 From: Mahmut CAVDAR <4072246+mcavdar@users.noreply.github.com> Date: Thu, 6 Nov 2025 19:15:43 +0100 Subject: [PATCH] Fix AIMessage class path in Python example --- src/oss/langchain/messages.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/oss/langchain/messages.mdx b/src/oss/langchain/messages.mdx index 73dcd0ffa6..bb2124387e 100644 --- a/src/oss/langchain/messages.mdx +++ b/src/oss/langchain/messages.mdx @@ -275,7 +275,7 @@ An @[`AIMessage`] represents the output of a model invocation. They can include :::python ```python response = model.invoke("Explain AI") -print(type(response)) # +print(type(response)) # ``` :::