test__construct_lc_result_from_responses_api_refusal_response() — langchain Function Reference
Architecture documentation for the test__construct_lc_result_from_responses_api_refusal_response() function in test_base.py from the langchain codebase.
Entity Profile
Dependency Diagram
graph TD cc972eea_6b58_47f2_258f_751c5b000df4["test__construct_lc_result_from_responses_api_refusal_response()"] 48232d20_f8c1_b597_14fa_7dc407e9bfe5["test_base.py"] cc972eea_6b58_47f2_258f_751c5b000df4 -->|defined in| 48232d20_f8c1_b597_14fa_7dc407e9bfe5 style cc972eea_6b58_47f2_258f_751c5b000df4 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
libs/partners/openai/tests/unit_tests/chat_models/test_base.py lines 1556–1596
def test__construct_lc_result_from_responses_api_refusal_response() -> None:
"""Test a response with a refusal."""
response = Response(
id="resp_123",
created_at=1234567890,
model="gpt-4o",
object="response",
parallel_tool_calls=True,
tools=[],
tool_choice="auto",
output=[
ResponseOutputMessage(
type="message",
id="msg_123",
content=[
ResponseOutputRefusal(
type="refusal", refusal="I cannot assist with that request."
)
],
role="assistant",
status="completed",
)
],
)
# v0
result = _construct_lc_result_from_responses_api(response, output_version="v0")
assert result.generations[0].message.additional_kwargs["refusal"] == (
"I cannot assist with that request."
)
# responses/v1
result = _construct_lc_result_from_responses_api(response)
assert result.generations[0].message.content == [
{
"type": "refusal",
"refusal": "I cannot assist with that request.",
"id": "msg_123",
}
]
Domain
Subdomains
Source
Frequently Asked Questions
What does test__construct_lc_result_from_responses_api_refusal_response() do?
test__construct_lc_result_from_responses_api_refusal_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_refusal_response() defined?
test__construct_lc_result_from_responses_api_refusal_response() is defined in libs/partners/openai/tests/unit_tests/chat_models/test_base.py at line 1556.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free