详细的从零部署ChatGPT

news/2024/11/6 11:25:07/

chatgpt产品机遇:
1. chatgpt 所带来的机遇:  下一代 AI 搜索引擎,解决目前搜索引擎结果多样复杂、需要人工判断准确定的问题;替代低端劳动岗位、释放部分脑力活动、即将变革多个行业 ;
2. chatgpt 我分析将带来多个新的工作岗位机会:做gtp词的精准度优化等工作,类目前SEO SEM;
3. 全球头部搜索引擎企业都在入局:百度--文心一言、 OpenAi--ChatGPT、谷歌---Bard 等
4. 依托大平台的技术+自己实现算法模型为辅助  为 全行业提供 问答产品;
5. 对于国内的科技公司至少是百亿级的市场; being 接入 chatgpt 股价暴涨 5 千多亿、chatgpt 本身产品估值 2千亿;

chatgpt本身的问题:

1. chatgpt是基于预训练的transformer模型 + 人工标注,所有当搜索出现不准的情况是天生属性;

如何部署ChatGPT ?

一、OpenA i 账号;

二、ChatGPT需要短信验证

三、验证通过后,就可以直接使用ChatGPT服务了

点击 Create new secret key 按钮,会生成一个对接秘钥 ,这个秘钥一定复制下来,因为平台是不提供二次查看的功能

-----------------------------------------------------------------------------------------------------------------------------

代码对接 需要安装 Python3.6以上的版本

pip install openai

#!/usr/bin/env python
#coding=utf-8
#Author : xuyj 2023-02-11import os
import openaiopenai.api_key = "xxxxxxxxxxxxxxxxx"  #os.getenv("OPENAI_API_KEY")start_sequence = "\nA:"
restart_sequence = "\n\nQ: "
while 1==1:prompt = input(restart_sequence)if prompt == 'quit':breakelse:try:response = openai.Completion.create(model="text-davinci-003",# prompt="I am a highly intelligent question answering bot. If you ask me a question that is rooted in truth, I will give you the answer. If you ask me a question that is nonsense, trickery, or has no clear answer, I will respond with \"Unknown\".\n\nQ: What is human life expectancy in the United States?\nA: Human life expectancy in the United States is 78 years.\n\nQ: Who was president of the United States in 1955?\nA: Dwight D. Eisenhower was president of the United States in 1955.\n\nQ: Which party did he belong to?\nA: He belonged to the Republican Party.\n\nQ: What is the square root of banana?\nA: Unknown\n\nQ: How does a telescope work?\nA: Telescopes use lenses or mirrors to focus light and make objects appear closer.\n\nQ: Where were the 1992 Olympics held?\nA: The 1992 Olympics were held in Barcelona, Spain.\n\nQ: How many squigs are in a bonk?\nA: Unknown\n\nQ:",prompt = prompt,temperature=0,max_tokens=2000,top_p=1,frequency_penalty=0,presence_penalty=0,)print(start_sequence,response["choices"][0]["text"].strip())except Exception as exc:print(exc)

 运行结果如下:

 反正我评估肯定是 下一代AI搜索引擎的主流

请各路大神留下 GPT好的场景,一旦选用随时沟通合作!~~~


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

相关文章

你真的会用async和await么?

背景 背景就是遇到了一个比较烦人的模块,里面的涉及到了大量的async 和 awiat。发现大多人对这个语法糖一知半解,然后大量的滥用,整理一下 async 前置知识: Promise.resolve(foo) new Promise(resolve > resolve(foo)…

mysql 第六章

目录 1.子查询 2.exists 3.as 别名 4.视图 5.null 6.连接查询 7.总结 1.子查询 2.exists 3.as 别名 4.视图 5.null 6.连接查询 7.总结 对 mysql 数据库的查询,除了基本的查询外,有时候需要对查询的结果集进行处理。

省去麻烦的环境配置,一分钟来试试 chatgpt API 代码⚡

项目地址:https://github.com/wjsvec/try_chatgpt_API_in_one_minute try chatgpt API in one minute⚡ 这个项目用来做什么😊 由于一些特殊的网络原因,在试用 chatgpt 的 API 的时候总是遇到奇奇怪怪的问题😫,有时…

ChatGPT API调用+服务器部署【附Git地址】

文章目录 一、关键代码二、使用步骤1.获取代码2.服务器部署 总结 运行对话效果图 一、关键代码 public class Main {public static final String URL "https://api.openai.com/v1/chat/completions";// 你的 API KEYpublic static final String APT_KEY "sk…

利用Cloudflare搭建ChatGPT API 代理服务器 傻瓜教程

✈ChatGPT的API接口为 https://api.openai.com 但是很多小伙伴不是国家区域不对,就试没有一个好的代理,经常chatgpt出现无法聊天的情况,那么自己搭建一个代理服务器那不是很香?还是免费的,直接整起来!图文教…

ChatGPT API的使用(一)

OpenAI除了提供ChatGPT聊天功能外,还提供了功能强大的图片生成与编辑功能,以及代码注释、语音转换功能,而这些功能需要通过API进行访问。 首先需要生成您的帐户独有的 API 密钥。访问此页面并创建一个新的密钥。 在这里需要点击复制&#xf…

如何实现基于ChatGPT API的C#接入?

今年开年,最火的莫过于ChatGPT的相关讨论,这个提供了非常强大的AI处理,并且整个平台也提供了很多对应的API进行接入的处理,使得我们可以在各种程序上无缝接入AI的后端处理,从而实现智能AI的各种应用。ChatGPT的API可以…

chatgpt API接口中文说明介绍(二)

提示:如果你认为本文对你有帮助,请点一下关注,后面会有更多人工智能方面的文章。 文章目录 前言一、示例代码二、参数说明总结 如果有问题可以联系我**:https://gitee.com/xiaoyuren/gpt3 前言 上一篇介绍了chatgpt的 接口和使用…