原文链接:Quickstart tutorial – OpenAI API
Python 库
我们提供了一个 Python 库,您可以按如下方式安装:
1 |
$ pip install openai |
安装后,可以使用绑定和密钥运行以下命令:
1 2 3 4 5 6 7 |
import os import openai # Load your API key from an environment variable or secret management service openai.api_key = os.getenv("OPENAI_API_KEY") response = openai.Completion.create(model="text-davinci-003", prompt="Say this is a test", temperature=0, max_tokens=7) |
绑定还将安装命令行实用工具,您可以使用如下方式:
1 |
$ openai api completions.create -m text-davinci-003 -p "Say this is a test" -t 0 -M 7 --stream |
Node.js 库
我们还有一个 Node.js 库,您可以通过在 Node.js 项目目录中运行以下命令来安装它:
1 |
$ npm install openai |
安装后,您可以使用库和密钥运行以下命令:
1 2 3 4 5 6 7 8 9 10 11 |
const { Configuration, OpenAIApi } = require("openai"); const configuration = new Configuration({ apiKey: process.env.OPENAI_API_KEY, }); const openai = new OpenAIApi(configuration); const response = await openai.createCompletion({ model: "text-davinci-003", prompt: "Say this is a test", temperature: 0, max_tokens: 7, }); |
社区库
下面的库由更广泛的开发人员社区构建和维护。如果您想在此处添加新库,请按照帮助中心文章中有关添加社区库的说明进行操作。
请注意,OpenAI 不会验证这些项目的正确性或安全性。
C# / .NET
Crystal
Go
Java
Kotlin
Node.js
- openai-api by Njerschow
- openai-api-node by erlapso
- gpt-x by ceifa
- gpt3 by poteat
- gpts by thencc
- @dalenguyen/openai by dalenguyen
- tectalic/openai by tectalic