From b0041037213ea9fde193d339c6cc654f6b2a25c4 Mon Sep 17 00:00:00 2001 From: Christian Veenhuis <124370897+ChVeen@users.noreply.github.com> Date: Wed, 18 Feb 2026 03:45:21 +0100 Subject: [PATCH] docs(perplexity): Fix docstring of `output_parsers.strip_think_tags()` (#35264) --- libs/partners/perplexity/langchain_perplexity/output_parsers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/partners/perplexity/langchain_perplexity/output_parsers.py b/libs/partners/perplexity/langchain_perplexity/output_parsers.py index 917a8dc6e08..84ece94d4db 100644 --- a/libs/partners/perplexity/langchain_perplexity/output_parsers.py +++ b/libs/partners/perplexity/langchain_perplexity/output_parsers.py @@ -10,7 +10,7 @@ def strip_think_tags(text: str) -> str: """Removes all ... tags and their content from text. This function removes all occurrences of think tags, preserving text - before, between, and after the tags. It also handles markdown code fences. + before and after the tags. It also handles markdown code fences. Args: text: The input text that may contain think tags.