You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Confirm this is a feature request for the Python library and not the underlying OpenAI API.
This is a feature request for the Python library
Describe the feature or improvement you're requesting
Description
It would be great to have built-in support for interceptors in the openai-python library, allowing users to modify requests before they are sent and process responses after they are received. This would provide a clean and extensible way to add logging, metrics, retries, authentication adjustments, or any other middleware-like functionality without modifying the core library code.
Proposed Solution
Introduce a mechanism similar to request/response interceptors found in other API client libraries. This could be achieved by adding configurable hooks or middleware that developers can pass when initializing the OpenAI client.
Additional context
Implementation
This implementation introduces a flexible interceptor system for handling request modifications before they are sent and response processing after they are received.
Code Implementation
@dataclassclassInterceptorRequest:
"""Request data container for interceptor processing"""method: strurl: strheaders: Dict[str, str]
params: Optional[Dict[str, Any]] =Nonebody: Optional[Union[Body, bytes]] =None@dataclassclassInterceptorResponse(Generic[T]):
"""Response data container for interceptor processing"""status_code: intheaders: Dict[str, str]
body: Trequest: InterceptorRequestraw_response: httpx.ResponseclassInterceptor(ABC):
"""Base class for request/response interceptors"""@abstractmethoddefbefore_request(self, request: InterceptorRequest) ->InterceptorRequest:
"""Process request before sending"""pass@abstractmethoddefafter_response(self, response: InterceptorResponse[T]) ->InterceptorResponse[T]:
"""Process response after receiving"""passclassInterceptorChain:
"""Chain of interceptors for sequential request/response processing"""def__init__(self, interceptors: Optional[list[Interceptor]] =None):
self._interceptors=interceptorsor []
defadd_interceptor(self, interceptor: Interceptor) ->None:
"""Adds an interceptor to the chain"""self._interceptors.append(interceptor)
defexecute_before_request(self, request: InterceptorRequest) ->InterceptorRequest:
"""Executes all interceptors before sending the request"""current_request=requestforinterceptorinself._interceptors:
try:
current_request=interceptor.before_request(current_request)
exceptException:
continuereturncurrent_requestdefexecute_after_response(self, response: InterceptorResponse[T]) ->InterceptorResponse[T]:
"""Executes all interceptors after receiving the response"""current_response=responseforinterceptorinself._interceptors:
try:
current_response=interceptor.after_response(current_response)
exceptException:
continuereturncurrent_response
Related Pull Request
I’ve submitted a PR implementing this feature: #2032. Would love feedback and thoughts on how this could be integrated!
The text was updated successfully, but these errors were encountered:
Thanks for the detailed suggestion and putting up a PR! However we're going to defer adding something like this for now as you can achieve the same thing with httpx's event hooks https://www.python-httpx.org/advanced/event-hooks/
Confirm this is a feature request for the Python library and not the underlying OpenAI API.
Describe the feature or improvement you're requesting
Description
It would be great to have built-in support for interceptors in the
openai-python
library, allowing users to modify requests before they are sent and process responses after they are received. This would provide a clean and extensible way to add logging, metrics, retries, authentication adjustments, or any other middleware-like functionality without modifying the core library code.Proposed Solution
Introduce a mechanism similar to request/response interceptors found in other API client libraries. This could be achieved by adding configurable hooks or middleware that developers can pass when initializing the OpenAI client.
Additional context
Implementation
This implementation introduces a flexible interceptor system for handling request modifications before they are sent and response processing after they are received.
Code Implementation
Related Pull Request
I’ve submitted a PR implementing this feature: #2032. Would love feedback and thoughts on how this could be integrated!
The text was updated successfully, but these errors were encountered: