https://beta.openai.com/docs/api-reference/models
List and describe the various models available in the API. You can refer to the Models documentation to understand what models are available and the differences between them.
API에서 사용할 수 있는 다양한 모델을 나열하고 설명합니다. 모델 설명서를 참조하여 사용 가능한 모델과 차이점을 이해할 수 있습니다.
https://coronasdk.tistory.com/1212
List models
GET https://api.openai.com/v1/models
Lists the currently available models, and provides basic information about each one such as the owner and availability.
현재 사용 가능한 모델을 나열하고 소유자 및 가용성과 같은 각 모델에 대한 기본 정보를 제공합니다.
Retrieve model
GET https://api.openai.com/v1/models/{model}
Retrieves a model instance, providing basic information about the model such as the owner and permissioning.
소유자 및 권한과 같은 모델에 대한 기본 정보를 제공하는 모델 인스턴스를 검색합니다.
Path parameters
https://beta.openai.com/docs/api-reference/models/retrieve#models/retrieve-model
The ID of the model to use for this request
요청을 위해 사용되는 모델의 아이디.
'Open AI > API REFERENCE' 카테고리의 다른 글
Moderations - openai.Moderation.create() (0) | 2023.01.17 |
---|---|
Fine-tunes : openai.FineTune.create(), list(), retrieve(), cancel(), list_events(), delete() (0) | 2023.01.17 |
Files - openai.File.list(), create(), delete(), retrieve(), download() (0) | 2023.01.17 |
Embeddings - openai.Embedding.create() (0) | 2023.01.17 |
Images - openai.Image.create(), openai.Image.create_edit(), openai.Image.create_variation() (0) | 2023.01.17 |
Edits - openai.Edit.create() (0) | 2023.01.17 |
Completions - openai.Completion.create() (0) | 2023.01.17 |
Making Request - Open AI API 에 요청 하기 : curl (0) | 2023.01.16 |
Authentication - Open AI API 사용을 위한 인증 받기 : openai.api_key = os.getenv("OPENAI_API_KEY) (0) | 2023.01.16 |
Introduction - pip install openai , npm install openai (0) | 2023.01.16 |