openai/openai-python
Publicmirrored from https://github.com/openai/openai-pythonAvailable
openai/api_resources/abstract/__init__.py
10lines · modecode
| 1 | # flake8: noqa |
| 2 | |
| 3 | from openai.api_resources.abstract.api_resource import APIResource |
| 4 | from openai.api_resources.abstract.createable_api_resource import CreateableAPIResource |
| 5 | from openai.api_resources.abstract.deletable_api_resource import DeletableAPIResource |
| 6 | from openai.api_resources.abstract.listable_api_resource import ListableAPIResource |
| 7 | from openai.api_resources.abstract.nested_resource_class_methods import ( |
| 8 | nested_resource_class_methods, |
| 9 | ) |
| 10 | from openai.api_resources.abstract.updateable_api_resource import UpdateableAPIResource |
| 11 | |