MCPcopy Create free account
hub / github.com/anthropics/anthropic-sdk-python / handle_request

Method handle_request

tests/test_client.py:71–77  ·  view source on GitHub ↗
(
        self,
        request: httpx.Request,
    )

Source from the content-addressed store, hash-verified

69
70 @override
71 def handle_request(
72 self,
73 request: httpx.Request,
74 ) -> httpx.Response:
75 assert not inspect.iscoroutinefunction(self.handler), "handler must not be a coroutine function"
76 assert inspect.isfunction(self.handler), "handler must be a function"
77 return self.handler(request)
78
79 @override
80 async def handle_async_request(

Callers

nothing calls this directly

Calls 1

handlerMethod · 0.80

Tested by

no test coverage detected