openai/openai-python
Publicmirrored from https://github.com/openai/openai-pythonAvailable
openai/object_classes.py
12lines · modecode
| 1 | from openai import api_resources |
| 2 | from openai.api_resources.experimental.completion_config import CompletionConfig |
| 3 | |
| 4 | OBJECT_CLASSES = { |
| 5 | "engine": api_resources.Engine, |
| 6 | "experimental.completion_config": CompletionConfig, |
| 7 | "file": api_resources.File, |
| 8 | "fine-tune": api_resources.FineTune, |
| 9 | "model": api_resources.Model, |
| 10 | "deployment": api_resources.Deployment, |
| 11 | "fine_tuning.job": api_resources.FineTuningJob, |
| 12 | } |
| 13 | |