调用库(Libraries)
Python 库
我们提供了一个 Python 库,你可以按如下方式安装:
$ pip install openai
安装后,可以使用绑定(the bindings)和 API Key 运行以下命令:
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)
绑定(the bindings)还将安装一个命令行实用程序,你可以按如下方式使用:
$ 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 项目目录中运行以下命令来安装它:
$ npm install openai
安装后,您可以使用该库和您的 API Key 运行以下命令:
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