You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
536 B
21 lines
536 B
from typing import Optional
|
|
|
|
|
|
class OpenAIResponse:
|
|
def __init__(self, data, headers):
|
|
self._headers = headers
|
|
self.data = data
|
|
|
|
@property
|
|
def request_id(self) -> Optional[str]:
|
|
return self._headers.get("request-id")
|
|
|
|
@property
|
|
def organization(self) -> Optional[str]:
|
|
return self._headers.get("OpenAI-Organization")
|
|
|
|
@property
|
|
def response_ms(self) -> Optional[int]:
|
|
h = self._headers.get("Openai-Processing-Ms")
|
|
return None if h is None else round(float(h))
|