2022 年 11 月,OpenAI 上线 ChatGPT,是继 AlphaGo 以来最出圈的人工智能热点,推出仅仅两个月,月活用户就破亿,成为史上用户增长速度最快的消费级应用程序。

084455_LXg0_5430600.jpg

2023 年 3 月 1 日,OpenAI 官方宣布,开发者现在可以通过 API 将 ChatGPT 和 Whisper 模型集成到他们的应用程序和产品中。

ChatGPT API 可以用于创建人工智能驱动的聊天界面,接入的模型名为 gpt-3.5-turbo,它比 ChatGPT 、GPT- 3.5 更快、更准确、更强大。gpt-3.5-turbo 的费用是 1000 tokens 只需要 0.002 美元,将此前 GPT-3.5 使用成本降低 90%。

通过 Python 绑定使用的代码:

import openai
cmpletion = openai.ChatCompletion.create ( model="gpt-3.5-turbo",  messages=[{"role": "user", "content": "Tell the world about the ChatGPT API in the style of a pirate."}])
print (completion)

Whisper 是 OpenAI 于 2022 年 9 月开源的语音到文本模型,OpenAI 通过开放 APT 向外提供 large-v2 模型。Whisper API 通过 transcriptions(源语言转录)或 translations(翻译为英语)端点使用,允许 m4a、mp3、mp4、mpeg、mpga、wav、webm 等各种格式的输入。large-v2 的费用是 0.006 美元 / 分钟。

通过 Python 绑定使用的代码:

import openai
file = open ("/path/to/file/openai.mp3", "rb")
transcription = openai.Audio.transcribe ("whisper-1", f)
print (transcription)

ChatGPT 和 Whisper 开放 API,意味着第三方可以开始构建这两个模型赋能的下一代应用程序,并使更多人从中受益。

👍

本文由 cds 整理发布,参考 CC-BY-SA 3.0 协议共享,欢迎转载、引用或改编。
感谢您的支持,以共同推动STEM公益教育!

楼主残忍的关闭了评论