wrap_model_call() — langchain Function Reference
Architecture documentation for the wrap_model_call() function in test_wrap_model_call.py from the langchain codebase.
Entity Profile
Dependency Diagram
graph TD 6da6fb38_f7ae_6607_571b_1aadf1c0d558["wrap_model_call()"] f946da87_64e8_0696_2e9f_c42c17274a5a["MaxRetriesMiddleware"] 6da6fb38_f7ae_6607_571b_1aadf1c0d558 -->|defined in| f946da87_64e8_0696_2e9f_c42c17274a5a style 6da6fb38_f7ae_6607_571b_1aadf1c0d558 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
libs/langchain_v1/tests/unit_tests/agents/middleware/core/test_wrap_model_call.py lines 174–190
def wrap_model_call(
self,
request: ModelRequest,
handler: Callable[[ModelRequest], ModelResponse],
) -> ModelCallResult:
last_exception = None
for attempt in range(self.max_retries):
self.attempts.append(attempt + 1)
try:
return handler(request)
except Exception as e:
last_exception = e
continue
# Re-raise the last exception
if last_exception:
raise last_exception
pytest.fail("Should have raised an exception")
Domain
Subdomains
Source
Frequently Asked Questions
What does wrap_model_call() do?
wrap_model_call() is a function in the langchain codebase, defined in libs/langchain_v1/tests/unit_tests/agents/middleware/core/test_wrap_model_call.py.
Where is wrap_model_call() defined?
wrap_model_call() is defined in libs/langchain_v1/tests/unit_tests/agents/middleware/core/test_wrap_model_call.py at line 174.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free