Home / Function/ test__construct_lc_result_from_responses_api_function_call_invalid_json() — langchain Function Reference

test__construct_lc_result_from_responses_api_function_call_invalid_json() — langchain Function Reference

Architecture documentation for the test__construct_lc_result_from_responses_api_function_call_invalid_json() function in test_base.py from the langchain codebase.

Entity Profile

Dependency Diagram

graph TD
  4f4af996_5f20_ebc8_340e_543b5a95a1f2["test__construct_lc_result_from_responses_api_function_call_invalid_json()"]
  48232d20_f8c1_b597_14fa_7dc407e9bfe5["test_base.py"]
  4f4af996_5f20_ebc8_340e_543b5a95a1f2 -->|defined in| 48232d20_f8c1_b597_14fa_7dc407e9bfe5
  style 4f4af996_5f20_ebc8_340e_543b5a95a1f2 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

libs/partners/openai/tests/unit_tests/chat_models/test_base.py lines 1652–1686

def test__construct_lc_result_from_responses_api_function_call_invalid_json() -> None:
    """Test a response with an invalid JSON function call."""
    response = Response(
        id="resp_123",
        created_at=1234567890,
        model="gpt-4o",
        object="response",
        parallel_tool_calls=True,
        tools=[],
        tool_choice="auto",
        output=[
            ResponseFunctionToolCall(
                type="function_call",
                id="func_123",
                call_id="call_123",
                name="get_weather",
                arguments='{"location": "New York", "unit": "celsius"',
                # Missing closing brace
            )
        ],
    )

    result = _construct_lc_result_from_responses_api(response, output_version="v0")

    msg: AIMessage = cast(AIMessage, result.generations[0].message)
    assert len(msg.invalid_tool_calls) == 1
    assert msg.invalid_tool_calls[0]["type"] == "invalid_tool_call"
    assert msg.invalid_tool_calls[0]["name"] == "get_weather"
    assert msg.invalid_tool_calls[0]["id"] == "call_123"
    assert (
        msg.invalid_tool_calls[0]["args"]
        == '{"location": "New York", "unit": "celsius"'
    )
    assert "error" in msg.invalid_tool_calls[0]
    assert _FUNCTION_CALL_IDS_MAP_KEY in result.generations[0].message.additional_kwargs

Domain

Subdomains

Frequently Asked Questions

What does test__construct_lc_result_from_responses_api_function_call_invalid_json() do?
test__construct_lc_result_from_responses_api_function_call_invalid_json() is a function in the langchain codebase, defined in libs/partners/openai/tests/unit_tests/chat_models/test_base.py.
Where is test__construct_lc_result_from_responses_api_function_call_invalid_json() defined?
test__construct_lc_result_from_responses_api_function_call_invalid_json() is defined in libs/partners/openai/tests/unit_tests/chat_models/test_base.py at line 1652.

Analyze Your Own Codebase

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

Try Supermodel Free