반응형
https://beta.openai.com/docs/api-reference/introduction
Introduction
You can interact with the API through HTTP requests from any language, via our official Python bindings, our official Node.js library, or a community-maintained library.
공식 Python 바인딩, 공식 Node.js 라이브러리 또는 커뮤니티 유지 라이브러리를 통해 모든 언어의 HTTP 요청을 통해 API와 상호 작용할 수 있습니다.
To install the official Python bindings, run the following command:
공식 파이썬 바인딩을 인스톨 하려면 아래 명령어를 실행하세요.
pip install openai
To install the official Node.js library, run the following command in your Node.js project directory:
공식 Node.JS 라이브러리를 인스톨 하려면 여러분의 Node.js 프로젝트 디렉토리 아래에서 아래 명령어를 실행하세요.
npm install openai
반응형
'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 |
Models - openai.Model.list(), openai.Model.retrieve() (0) | 2023.01.16 |
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 |