test__construct_lc_result_from_responses_api_web_search_response() — langchain Function Reference
Architecture documentation for the test__construct_lc_result_from_responses_api_web_search_response() function in test_base.py from the langchain codebase.
Entity Profile
Dependency Diagram
graph TD 01b3c7d3_35fc_de2f_4642_aa7a9b334e48["test__construct_lc_result_from_responses_api_web_search_response()"] 48232d20_f8c1_b597_14fa_7dc407e9bfe5["test_base.py"] 01b3c7d3_35fc_de2f_4642_aa7a9b334e48 -->|defined in| 48232d20_f8c1_b597_14fa_7dc407e9bfe5 style 01b3c7d3_35fc_de2f_4642_aa7a9b334e48 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
libs/partners/openai/tests/unit_tests/chat_models/test_base.py lines 1808–1859
def test__construct_lc_result_from_responses_api_web_search_response() -> None:
"""Test a response with web search output."""
from openai.types.responses.response_function_web_search import (
ResponseFunctionWebSearch,
)
response = Response(
id="resp_123",
created_at=1234567890,
model="gpt-4o",
object="response",
parallel_tool_calls=True,
tools=[],
tool_choice="auto",
output=[
ResponseFunctionWebSearch(
id="websearch_123",
type="web_search_call",
status="completed",
action=ActionSearch(type="search", query="search query"),
)
],
)
# v0
result = _construct_lc_result_from_responses_api(response, output_version="v0")
assert "tool_outputs" in result.generations[0].message.additional_kwargs
assert len(result.generations[0].message.additional_kwargs["tool_outputs"]) == 1
assert (
result.generations[0].message.additional_kwargs["tool_outputs"][0]["type"]
== "web_search_call"
)
assert (
result.generations[0].message.additional_kwargs["tool_outputs"][0]["id"]
== "websearch_123"
)
assert (
result.generations[0].message.additional_kwargs["tool_outputs"][0]["status"]
== "completed"
)
# responses/v1
result = _construct_lc_result_from_responses_api(response)
assert result.generations[0].message.content == [
{
"type": "web_search_call",
"id": "websearch_123",
"status": "completed",
"action": {"query": "search query", "type": "search"},
}
]
Domain
Subdomains
Source
Frequently Asked Questions
What does test__construct_lc_result_from_responses_api_web_search_response() do?
test__construct_lc_result_from_responses_api_web_search_response() 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_web_search_response() defined?
test__construct_lc_result_from_responses_api_web_search_response() is defined in libs/partners/openai/tests/unit_tests/chat_models/test_base.py at line 1808.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free