您好,登錄后才能下訂單哦!
今天小編給大家分享一下nonebot插件之chatgpt如何使用的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
獲取key的地址:Account API Keys - OpenAI API
如圖所示,我已經(jīng)創(chuàng)建好一個(gè)key了,大家也可以點(diǎn)擊Create new secret key
按鈕來(lái)創(chuàng)建一個(gè)新的key,注意,千萬(wàn)不要泄露自己的key哦
在獲取key的過(guò)程我們還是需要用到魔法的,且代理必須為國(guó)外的,只要key搞到手,后續(xù)的步驟就不用用到魔法了
之前我原本是想要教大家去對(duì)接OpenAI的官方接口的,但是想到大部分同學(xué)可能不會(huì)“魔法”,如果沒有“魔法”體驗(yàn)感會(huì)大打折扣,所以我們就要借助其他大佬幫助我們完成代理這個(gè)過(guò)程
在網(wǎng)上沖浪的時(shí)候,我發(fā)現(xiàn)了這個(gè)寶藏網(wǎng)站 GPT3.5 (cutim.top)
可以看到這個(gè)網(wǎng)站是需要我們提供key的,我這里淺淺解釋一下本次程序的主要思路
整體思路大概就是這樣
到這里,大家應(yīng)該都有key了吧,我們打開剛才的網(wǎng)站,按F12打開開發(fā)者調(diào)試工具
在這里我們可以看到請(qǐng)求的api地址: gpt.cutim.top/question
我們可以看到他是post請(qǐng)求
那么我們打開源分析,不難看出數(shù)據(jù)就是json格式,且有兩個(gè)參數(shù),一個(gè)key
,一個(gè)question
既然我們已經(jīng)找到接口了,那么下一步就是重頭戲——寫代碼了
先上猛料
from nonebot import on_keyword from nonebot.typing import T_State from nonebot.adapters.onebot.v11 import GroupMessageEvent, Bot, Message import httpx import json ''' 實(shí)現(xiàn)qq群聊調(diào)用chatgpt write by 萌新源 at 2023/3/5 ''' chatgpt = on_keyword({"#gpt"}) @chatgpt.handle() async def yy(bot: Bot, event: GroupMessageEvent, state: T_State): get_msg = str(event.message).strip() # 獲取用戶發(fā)送的鏈接 user_question = get_msg.strip("#gpt") msg_id = event.message_id # 獲取消息id user_id = event.user_id file_name = "chatgpt.json" try: with open(file_name, "r", encoding="UTF-8") as f: person_data = json.load(f) # 讀取數(shù)據(jù) try: user_data = person_data[str(user_id)] except KeyError: user_data = "" form_data = {'key': '填寫你自己的key', 'question': user_data + f"----{user_question}"} async with httpx.AsyncClient() as client: headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE' } url = f"http://gpt.cutim.top/question" data = await client.post(url=url, headers=headers, json=form_data, timeout=None) # 請(qǐng)求數(shù)據(jù) response = data.json() try: # 規(guī)避內(nèi)容獲取失敗 res_ai = str(response['content']) try: user_data = person_data[str(user_id)] + f"----{user_question}" question = user_data + f'\n{res_ai}' person_data[str(user_id)] = question except KeyError: person_data[str(user_id)] = f'----{user_question}' with open(file_name, "w", encoding="UTF-8") as f: json.dump(person_data, f, ensure_ascii=False) ai_res = str(response['content']).strip("\n") except KeyError: # 重置會(huì)話 person_data[user_id] = "" with open(file_name, "w", encoding="UTF-8") as f: json.dump(person_data, f, ensure_ascii=False) ai_res = '很抱歉,內(nèi)容獲取失敗,請(qǐng)確認(rèn)您的問(wèn)題沒有非法成分,如沒有可能是您的會(huì)話歷史已達(dá)到上限,請(qǐng)更換您的提問(wèn)方式或再試一次' except FileNotFoundError: with open(file_name, "w", encoding="UTF-8") as f: json.dump({user_id: f'----{user_question}'}, f, ensure_ascii=False) form_data = {'key': '填寫你自己的key', 'question': user_question} async with httpx.AsyncClient() as client: headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.132 Safari/537.36 QIHU 360SE' } url = f"http://gpt.cutim.top/question" data = await client.post(url=url, headers=headers, json=form_data, timeout=None) # 請(qǐng)求數(shù)據(jù) response = data.json() ai_res = str(response['content']).strip("\n") res = f"[CQ:reply,id={msg_id}]{ai_res}" await chatgpt.send(Message(res))
這里我也是直接上全部代碼
接下來(lái)我挑一些我認(rèn)為比較有研究?jī)r(jià)值的代碼出來(lái)講講
try: with open(file_name, "r", encoding="UTF-8") as f: #① person_data = json.load(f) # 讀取數(shù)據(jù) try: user_data = person_data[str(user_id)] except KeyError: user_data = "" form_data = {'key': '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', 'question': user_data + f"----{user_question}"}
比如這一段,在①這個(gè)地方,我讀取了一個(gè)用來(lái)儲(chǔ)存用戶會(huì)話的json文件,那么可能有人會(huì)問(wèn)了,為什么要讀取這樣一個(gè)文件呢?或者說(shuō)這個(gè)文件有什么作用?
其實(shí)在早期版本沒有會(huì)話文件的時(shí)候,經(jīng)過(guò)群友的測(cè)試,我發(fā)現(xiàn)了一個(gè)小問(wèn)題,那就是對(duì)話不連續(xù),比如說(shuō)我要跟gpt玩成語(yǔ)接龍,但是會(huì)話是不連續(xù)的呀,于是我就找到了用一個(gè)文件儲(chǔ)存用戶會(huì)話的方法,文件結(jié)構(gòu)大概是這樣
就是把每個(gè)人的會(huì)話數(shù)據(jù)分別儲(chǔ)存起來(lái),這樣對(duì)話就有了連續(xù)性
連續(xù)性問(wèn)題是解決了,但是又產(chǎn)生了一個(gè)新的問(wèn)題——會(huì)話太長(zhǎng),gpt不知道怎么回答或者說(shuō)是無(wú)法正常獲取內(nèi)容,那又怎么辦,于是我想到了下面的方法來(lái)解決這個(gè)問(wèn)題
try: # 規(guī)避內(nèi)容獲取失敗 res_ai = str(response['content']) try: user_data = person_data[str(user_id)] + f"----{user_question}" question = user_data + f'\n{res_ai}' person_data[str(user_id)] = question except KeyError: person_data[str(user_id)] = f'----{user_question}' with open(file_name, "w", encoding="UTF-8") as f: json.dump(person_data, f, ensure_ascii=False) ai_res = str(response['content']).strip("\n") except KeyError: # 重置會(huì)話 person_data[user_id] = "" with open(file_name, "w", encoding="UTF-8") as f: json.dump(person_data, f, ensure_ascii=False) ai_res = '很抱歉,內(nèi)容獲取失敗,請(qǐng)確認(rèn)您的問(wèn)題沒有非法成分,如沒有可能是您的會(huì)話歷史已達(dá)到上限,請(qǐng)更換您的提問(wèn)方式或再試一次'
可以看到,我這里寫了個(gè)try語(yǔ)句,當(dāng)獲取內(nèi)容失敗的時(shí)候就把會(huì)話清空,并且返回一個(gè)提示信息給用戶,好讓用戶重新提問(wèn)。
以上就是“nonebot插件之chatgpt如何使用”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。