Home / Function/ test_parse_structured_output_without_think_tags() — langchain Function Reference

test_parse_structured_output_without_think_tags() — langchain Function Reference

Architecture documentation for the test_parse_structured_output_without_think_tags() function in test_output_parsers.py from the langchain codebase.

Entity Profile

Dependency Diagram

graph TD
  656d3109_857c_2773_70d2_b7ca2feedaa8["test_parse_structured_output_without_think_tags()"]
  78e02bb9_2694_e9a5_aaa1_e8312a190104["TestReasoningStructuredOutputParser"]
  656d3109_857c_2773_70d2_b7ca2feedaa8 -->|defined in| 78e02bb9_2694_e9a5_aaa1_e8312a190104
  style 656d3109_857c_2773_70d2_b7ca2feedaa8 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

libs/partners/perplexity/tests/unit_tests/test_output_parsers.py lines 194–205

    def test_parse_structured_output_without_think_tags(self) -> None:
        """Test parsing structured output without think tags."""
        parser: ReasoningStructuredOutputParser[MockPerson] = (
            ReasoningStructuredOutputParser(pydantic_object=MockPerson)
        )
        text = '{"name": "John Doe", "age": 30, "email": "john@example.com"}'
        generation = Generation(text=text)
        result = parser.parse_result([generation])
        assert isinstance(result, MockPerson)
        assert result.name == "John Doe"
        assert result.age == 30
        assert result.email == "john@example.com"

Domain

Subdomains

Frequently Asked Questions

What does test_parse_structured_output_without_think_tags() do?
test_parse_structured_output_without_think_tags() is a function in the langchain codebase, defined in libs/partners/perplexity/tests/unit_tests/test_output_parsers.py.
Where is test_parse_structured_output_without_think_tags() defined?
test_parse_structured_output_without_think_tags() is defined in libs/partners/perplexity/tests/unit_tests/test_output_parsers.py at line 194.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free