亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基于chatgpt的微信自動回復功能如何實現

發布時間:2023-02-24 10:46:39 來源:億速云 閱讀:135 作者:iii 欄目:開發技術

本文小編為大家詳細介紹“基于chatgpt的微信自動回復功能如何實現”,內容詳細,步驟清晰,細節處理妥當,希望這篇“基于chatgpt的微信自動回復功能如何實現”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。

微信自動回復 基于聊天api的

import pyautogui
import pyperclip
import keyboard
import requests
import time

print('程序即將開始,請打開微信!')

# 檢測是否有新消息
def findNews():
    left, top, width, height = pyautogui.locateOnScreen("news.png", confidence=0.9)
    pyautogui.click(left + 20, top + 20)
    print('發現了新消息')

# 發送消息
def sendMsg():
    left, top, width, height = pyautogui.locateOnScreen('icon.png', confidence=0.9)
    print('獲取到了圖標位置')
    X = left + width
    pyautogui.rightClick(X, top - 40)
    pyautogui.click(X + 10, top - 40 + 10)
    friendMsg = pyperclip.paste() #將拷貝板內的文字轉換為字符串
    print('好友的消息:' + friendMsg)
    url = 'https://v.api.aa1.cn/api/api-xiaoai/talk.php'
    print('正在思考如何回復...')
    res = requests.get(url, params="msg=" + friendMsg)
    time.sleep(1)
    reply = res.text
    print('即將發送的消息:' + reply)
    pyperclip.copy(reply)
    pyautogui.click(X, top + 50)
    pyautogui.hotkey('ctrl', 'v')
    time.sleep(3)
    pyautogui.press('enter')
    print('發送成功!')
    time.sleep(1)
    # 恢復原始狀態
    print('恢復原始狀態')
    left, top, width, height = pyautogui.locateOnScreen('reset.png', confidence=0.9)
    pyautogui.click(left + 20, top  + 20)

# 開始執行
while True:
    # time.sleep(1)
    # 如果按下退格鍵,則退出循環
    if keyboard.is_pressed('backspace'):
        print('按下了退格鍵,程序即將結束')
        break
    
    # 捕獲錯誤
    try:
        findNews()
        sendMsg()

    except TypeError:
        print('沒有發現新消息...', time.time())

pyautogui.alert(text='Python程序已結束!', title='提示', button='好的')
print("程序已結束!")

微信自動回復 基于chatgpt的

import openai
import pyautogui
import pyperclip
import keyboard
import time

openai.api_key = "你的chat-gpt API"
def chat_gpt(prompt):# 你的問題prompt = prompt# 調用 ChatGPT 接口
    model_engine = "text-davinci-003"
    completion = openai.Completion.create(
        engine=model_engine,
        prompt=prompt,
        max_tokens=1024,
        n=1,
        stop=None,
        temperature=0.5,)
    response = completion.choices[0].text
    return response
        

print('程序即將開始,請打開微信!')

# 檢測是否有新消息
def findNews():
    left, top, width, height = pyautogui.locateOnScreen("news.png", confidence=0.9)
    pyautogui.click(left + 20, top + 20)
    print('發現了新消息')

# 發送消息
def sendMsg():
    left, top, width, height = pyautogui.locateOnScreen('icon.png', confidence=0.9)
    print('獲取到了圖標位置')
    X = left + width
    pyautogui.rightClick(X, top - 35)
    pyautogui.click(X + 10, top - 40 + 10)
    friendMsg = pyperclip.paste() #將拷貝板內的文字轉換為字符串
    print('好友的消息:' + friendMsg)
    #url = 'https://v.api.aa1.cn/api/api-xiaoai/talk.php'
    print('正在思考如何回復...')
    #res = requests.get(url, params="msg=" + friendMsg)
    #time.sleep(1)
    reply = chat_gpt(friendMsg).replace('?','').strip()
    print('即將發送的消息:' + reply)
    pyperclip.copy(reply)
    pyautogui.click(X, top + 50)
    pyautogui.hotkey('ctrl', 'v')
    time.sleep(1)
    pyautogui.press('enter')
    print('發送成功!')
    #time.sleep(1)
    # 恢復原始狀態
    print('恢復原始狀態')
    left, top, width, height = pyautogui.locateOnScreen('reset.png', confidence=0.9)
    pyautogui.click(left + 20, top  + 20)

# 開始執行
while True:
    # time.sleep(1)
    # 如果按下退格鍵,則退出循環
    if keyboard.is_pressed('backspace'):
        print('按下了退格鍵,程序即將結束')
        break
    
    # 捕獲錯誤
    try:
        findNews()
        sendMsg()

    except TypeError:
        print('沒有發現新消息...', time.time())

pyautogui.alert(text='Python程序已結束!', title='提示', button='好的')
print("程序已結束!")

讀到這里,這篇“基于chatgpt的微信自動回復功能如何實現”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

马关县| 中西区| 大方县| 泰顺县| 天峻县| 法库县| 天镇县| 化隆| 旬邑县| 云龙县| 武隆县| 江西省| 松江区| 陇南市| 龙游县| 延庆县| 巩义市| 精河县| 阜新市| 潍坊市| 盈江县| 黄平县| 南木林县| 肃宁县| 金寨县| 东平县| 黄石市| 安福县| 莲花县| 杭州市| 五大连池市| 双桥区| 平远县| 土默特右旗| 鄂伦春自治旗| 固始县| 吴桥县| 浪卡子县| 米易县| 武川县| 凤庆县|