openai/openai-python

Public

mirrored from https://github.com/openai/openai-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
15c6aebc6cda59e8d884e1fbc63fd1f6eddbc196

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

openai/api_resources/abstract/__init__.py

10lines · modecode

1# flake8: noqa
2
3from openai.api_resources.abstract.api_resource import APIResource
4from openai.api_resources.abstract.createable_api_resource import CreateableAPIResource
5from openai.api_resources.abstract.deletable_api_resource import DeletableAPIResource
6from openai.api_resources.abstract.listable_api_resource import ListableAPIResource
7from openai.api_resources.abstract.nested_resource_class_methods import (
8 nested_resource_class_methods,
9)
10from openai.api_resources.abstract.updateable_api_resource import UpdateableAPIResource
11