关于ChatGPT API,你需要知道的…(截止到230303)

news/2024/11/6 15:42:08/

1. ChatGPT 的 API 已经推出

从官网 https://platform.openai.com/docs/guides/chat 和 https://platform.openai.com/docs/models/gpt-3-5 可以看出:gpt-3.5-turbo 已经正式上线。


在这里插入图片描述

  • GPT-3 快速入门:前端调用 GPT-3 API、Python 调用 GPT-3 API
  • openAI 模型信息详见:OpenAI API官方文档:models

2. API 的调用是有额度的

所有新用户都可以获得价值 18 美元的 t o k e n s tokens tokens,这些 t o k e n s tokens tokens 在 3 个月后到期1

所谓的 t o k e n token token,以一个粗略的经验法则:对于英语文本来说,1 个 t o k e n token token 大约是 4 个字符或 0.75 个单词2

关于 t o k e n token token 的 计费原则,以 GPT-3 的 4 个模型为例:

模型收费
Ada [Fastest]$0.0004 / 1K tokens
Babbage$0.0005 / 1K tokens
Curie$0.0020 / 1K tokens
Davinci [Most powerful]$0.0200 / 1K tokens

t o k e n token token 的数量,取决于你的输入和输出2

所以,网上一些插件说填入你自己的 API Keys 能“无限使用”,其实用的是你有限的额度($ 18.00)

但是,如果你是在网站上使用ChatGPT(如下图),实测发现并不会消耗你的额度
实测发现:在网站使用ChatGPT不会消耗额度

如何获得更多的 t o k e n token token 详见:How do I get more tokens or increase my monthly usage limits?


  1. What happens after I use my free tokens or the 3-months is up in the free trial? ↩︎

  2. OpenAI API官方文档:tokens ↩︎ ↩︎


http://www.ppmy.cn/news/950934.html

相关文章

ChatGPT API 简单使用教程

1、关于ChatGPT 和 API 获取 2、调用API 实现 ChatGPT 对话 import openaiopenai.api_key "你的api_key"def completion(prompt):completions openai.Completion.create(engine"text-davinci-003",promptprompt,max_tokens1024,n1,stopNone,temperatu…

chatgpt api基础使用示例

环境 pip install openaiapi Completions url: POST https://api.openai.com/v1/completions 参数&#xff1a; model: (string) text-davinci-003, text-davinci-002, text-curie-001, text-babbage-001, text-ada-001prompt: (string/array) (<|endoftext|>)suffix…

html JavaScript 调用chatgpt api

在HTML中使用JavaScript调用ChatGPT API需要使用AJAX(异步JavaScript和XML)来实现。您需要使用XMLHttpRequest对象来发送请求&#xff0c;然后使用JavaScript处理响应。 示例代码如下&#xff1a; varrequest new XMLHttpRequest(); request.open("POST", "htt…

ChatGPT API 正式开放,价格直接打骨折!100万个单词才18元

ChatGPT爆火之后&#xff0c;各种「自制API」层出不穷&#xff0c;中间商们也一个个赚得盆满钵满。 这次&#xff0c;OpenAI终于下定决心——正式开放ChatGPT API&#xff01; ChatGPT API地址&#xff1a;https://platform.openai.com/docs/guides/chat 现在&#xff0c;不要耗…

ChatGPT API

copy了一波 ChatGPT 官方API&#xff0c;希望可以帮助大家: 传送门 下面是AI对话和文字生成图片的两个例子 AI对话 Curl: curl https://api.openai.com/v1/completions \-H Content-Type: application/json \-H Authorization: Bearer YOUR_API_KEY \-d {"model"…

如何查询chatgpt apikey 的使用情况

如何查询chatgpt apikey 的使用情况 网上有很多免费的公用的查询chatgpt apikey (api-key)网站.

chatgpt API 使用实例

chatgpt API 使用指南 OpenAI API简介 “OpenAI 的 API 可用于解释或生成自然语言、代码或图像的任何涉及任务&#xff0c;我们提供范围广泛的模型&#xff0c;为各种任务提供不同层次的性能&#xff0c;还可以微调您自己的定制模型&#xff0c;从而利用这些模型进行内容生成…

chatGPT API的使用

在IDE中使用chatGPT&#xff1a; 使用步骤 安装OpenAI Python包&#xff1a;使用命令行或PyCharm的集成终端&#xff0c;运行以下命令来安装OpenAI Python包&#xff1a; pip install openai获取OpenAI API凭证&#xff1a;请按照OpenAI官方文档中的步骤获取OpenAI API凭证。 …