We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 812839c commit a73d1ceCopy full SHA for a73d1ce
src/openai/_types.py
@@ -279,8 +279,8 @@ class NotGiven:
279
```py
280
def get(timeout: Union[int, NotGiven, None] = NotGiven()) -> Response: ...
281
282
- get(timout=1) # 1s timeout
283
- get(timout=None) # No timeout
+ get(timeout=1) # 1s timeout
+ get(timeout=None) # No timeout
284
get() # Default timeout behavior, which may not be statically known at the method definition.
285
```
286
"""
0 commit comments