没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
Openai Api开发文档 | Openai Api中文文档 | Openai Api中英双语文档 ChatGPT是由OpenAI开发的一个人工智能聊天机器人程序,于2022年11月推出。该程序使用基于GPT-3.5架构的大型语言模型并通过强化学习进行训练。 ChatGPT目前仍以文字方式交互,而除了可以通过人类自然对话方式进行交互,还可以用于相对复杂的语言工作,包括自动文本生成、自动问答、自动摘要等在内的多种任务。如:在自动文本生成方面,ChatGPT可以根据输入的文本自动生成类似的文本,在自动问答方面,ChatGPT可以根据输入的问题自动生成答案。还具有编写和调试计算机程序的能力。在推广的期间中,所有人可以免费注册,并在登录后后免费使用 ChatGPT 实现与 AI 机器人对话。ChatGPT于2022年11月发布后,OpenAI估值已涨至290亿美元。上线两个月后,用户数量达到1亿。
资源推荐
资源详情
资源评论
2023/3/13 17:19
API Reference - OpenAI API --- API 参考 - OpenAI API
https://platform.openai.com/docs/api-reference/fine-tunes/delete-model
1/45
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.
您可以通过任何语言的 HTTP 请求、我们的官方 Python 绑定、我们的官方 Node.js 库或社区维
护的库与 API 交互。
To install the official Python bindings, run the following command:
要安装官方 Python 绑定,请运行以下命令:
To install the official Node.js library, run the following command in your Node.js project
directory:
要安装官方 Node.js 库,请在 Node.js 项目目录中运行以下命令:
The OpenAI API uses API keys for authentication. Visit your API Keys page to retrieve the
API key you'll use in your requests.
OpenAI API 使用 API 密钥进行身份验证。访问您的 API 密钥页面以检索您将在请求中使用的
API 密钥。
Remember that your API key is a secret! Do not share it with others or expose it in any
client-side code (browsers, apps). Production requests must be routed through your own
backend server where your API key can be securely loaded from an environment variable
or key management service.
请记住,您的 API 密钥是秘密的!不要与他人共享或在任何客户端代码(浏览器、应用程序)
中公开它。生产请求必须通过您自己的后端服务器进行路由,您的 API 密钥可以从环境变量或
密钥管理服务中安全加载。
All API requests should include your API key in an
Authorization
HTTP header as follows:
所有 API 请求都应在
Authorization
HTTP 标头中包含您的 API 密钥,如下所示:
Introduction介绍
pip install openai
npm install openai
Authentication验证
2023/3/13 17:19
API Reference - OpenAI API --- API 参考 - OpenAI API
https://platform.openai.com/docs/api-reference/fine-tunes/delete-model
2/45
For users who belong to multiple organizations, you can pass a header to specify which
organization is used for an API request. Usage from these API requests will count against
the specified organization's subscription quota.
对于属于多个组织的用户,您可以传递一个标头来指定哪个组织用于 API 请求。来自这些 API
请求的使用将计入指定组织的订阅配额。
Example curl command:卷曲命令示例:
Example with the
openai
Python package:
openai
Python 包的示例:
Example with the
openai
Node.js package:
openai
Node.js 包的示例:
Organization IDs can be found on your Organization settings page.
组织 ID 可以在您的组织设置页面上找到。
Authorization: Bearer YOUR_API_KEY
Requesting organization请求组织
curl https://api.openai.com/v1/models \
-H 'Authorization: Bearer YOUR_API_KEY' \
-H 'OpenAI-Organization: org-jZkKCN83A0rQ6WQXgmJ17fq6'
import os
import openai
openai.organization = "org-jZkKCN83A0rQ6WQXgmJ17fq6"
openai.api_key = os.getenv("OPENAI_API_KEY")
openai.Model.list()
import { Configuration, OpenAIApi } from "openai";
const configuration = new Configuration({
organization: "org-jZkKCN83A0rQ6WQXgmJ17fq6",
apiKey: process.env.OPENAI_API_KEY,
});
const openai = new OpenAIApi(configuration);
const response = await openai.listEngines();
2023/3/13 17:19
API Reference - OpenAI API --- API 参考 - OpenAI API
https://platform.openai.com/docs/api-reference/fine-tunes/delete-model
3/45
You can paste the command below into your terminal to run your first API request. Make
sure to replace
YOUR_API_KEY
with your secret API key.
您可以将下面的命令粘贴到您的终端中以运行您的第一个 API 请求。确保将
YOUR_API_KEY
替
换为您的 API 密钥。
This request queries the
gpt-3.5-turbo
model to complete the text starting with a prompt
of "Say this is a test". You should get a response back that resembles the following:
此请求查询
gpt-3.5-turbo
模型以完成以提示“Say this is a test”开头的文本。您应该会收到
类似于以下内容的响应:
Making requests发出请求
curl https://api.openai.com/v1/chat/completions \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR_API_KEY' \
-d '{
"model": "gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Say this is a test!"}],
"temperature": 0.7
}'
{
"id":"chatcmpl-abc123",
"object":"chat.completion",
"created":1677858242,
"model":"gpt-3.5-turbo-0301",
"usage":{
"prompt_tokens":13,
"completion_tokens":7,
"total_tokens":20
},
"choices":[
{
"message":{
"role":"assistant",
"content":"\n\nThis is a test!"
},
"finish_reason":"stop",
"index":0
2023/3/13 17:19
API Reference - OpenAI API --- API 参考 - OpenAI API
https://platform.openai.com/docs/api-reference/fine-tunes/delete-model
4/45
Now you've generated your first chat completion. We can see the
finish_reason
is
stop
which means the API returned the full completion generated by the model. In the above
request, we only generated a single message but you can set the
n
parameter to
generate multiple messages choices. In this example,
gpt-3.5-turbo
is being used for
more of a traditional text completion task. The model is also optimized for chat
applications as well.
现在你已经生成了你的第一个聊天完成。我们可以看到
finish_reason
是
stop
,这意味着
API 返回了模型生成的完整完成。在上面的请求中,我们只生成了一条消息,但是你可以设置
n
参数来生成多条消息选择。在此示例中,
gpt-3.5-turbo
用于更多的传统文本完成任务。
该模型还针对聊天应用程序进行了优化。
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 中可用的各种模型。您可以参考模型文档以了解可用的模型以及它们之间的区
别。
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.
列出当前可用的模型,并提供有关每个模型的基本信息,例如所有者和可用性。
Example request
}
]
}
Models
List models
curl
Copy
curl https://api.openai.com/v1/models \
-H 'Authorization: Bearer YOUR_API_KEY'
2023/3/13 17:19
API Reference - OpenAI API --- API 参考 - OpenAI API
https://platform.openai.com/docs/api-reference/fine-tunes/delete-model
5/45
Response
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
Example request
Copy
{
"data": [
{
"id": "model-id-0",
"object": "model",
"owned_by": "organization-owner",
"permission": [...]
},
{
"id": "model-id-1",
"object": "model",
"owned_by": "organization-owner",
"permission": [...]
},
{
"id": "model-id-2",
"object": "model",
"owned_by": "openai",
"permission": [...]
},
],
"object": "list"
}
Retrieve model
The ID of the model to use for this request
用于此请求的模型的 ID
model
string Required
text-davinci-003
curl
Copy
剩余44页未读,继续阅读
资源评论
- 士多霹雳酱2023-07-26文档使用简明的语言,清晰地介绍了Openai Api的使用方法和注意事项。
- 莉雯Liwen2023-07-26文档中的实际案例展示了Openai Api的强大功能,给人以实用性和创造性的启发。
- 一筐猪的头发丝2023-07-26这个开发文档中英双语对照,方便不同语言的开发者阅读和理解。
- 图像车间2023-07-26完整而系统的文档结构,使读者能够有针对性地查找所需的信息,提高了阅读效率。
- 赵伊辰2023-07-26文档提供了详细的示例代码,让开发者能够快速上手并进行实际应用。
slongzhang_
- 粉丝: 7270
- 资源: 14
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 服装销售平台源代码.zip
- 高校心理教育辅导设计与实现.zip
- 服装生产管理系统源代码.zip
- 3b123中学生日常行为评分管理系统_springboot+vue.zip
- 3b125流浪狗领养管理_springboot+vue.zip
- 3b124电影推荐系统_springboot+vue.zip
- 购物推荐网站源代码.zip
- 技术交流和分享平台源代码.zip
- 基于B2B平台的医疗病历交互系统源代码.zip
- 3b127旅游网站设计_springboot+vue0.zip
- 3b126小说网站系统_springboot+vue.zip
- 教师工作量管理系统源代码.zip
- 俱乐部管理系统源代码.zip
- 兼职网源代码.zip
- 美容院管理系统源代码.zip
- 旅游网站源代码.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功