天天看點

在python中調用ChatGPT,并使用tkinter打包成exe

作者:地球上得好奇号

在python中調用ChatGpt

如果你用中文在前面加上# coding: utf-8

import openai

# Set the API key for the openai module
openai.api_key = "<your API key>"#這裡放入你的key,我這裡隐藏了

# Use the GPT-3 model to generate text
prompt = ""#這裡放入自己的問題
response = openai.Completion.create(
    engine="text-davinci-003",
    prompt=prompt,
    max_tokens=1024,
    n=1,
    temperature=0.5,
)

# Print the generated text
print(response["choices"][0]["text"])

           

tkinter桌面應用

# coding=utf-8
# sk - njzWsK9qzW2tKq9DUJHHT3Blb***********
import openai
# -*- coding:utf-8 -*-

import os, sys
from tkinter import *
from tkinter.font import Font
from tkinter.ttk import *

# Set the API key for the openai module
openai.api_key = "這裡放入你的key"


class Application_ui(Frame):
    # 這個類僅實作界面生成功能,具體事件處理代碼在子類Application中。
    def __init__(self, master=None):
        Frame.__init__(self, master)
        self.master.title('ChatGPT')
        self.master.geometry('955x500')
        self.createWidgets()

    def createWidgets(self):
        self.top = self.winfo_toplevel()

        self.style = Style()

        self.style.configure('Tftitle.TLabelframe', font=('楷體', 12))
        self.style.configure('Tftitle.TLabelframe.Label', font=('楷體', 12))
        self.ftitle = LabelFrame(self.top, text='人工智能Openai', style='Tftitle.TLabelframe')
        self.ftitle.place(relx=0.008, rely=0.017, relwidth=0.982, relheight=0.998)

        self.stext = Text(self.ftitle, font=('楷體', 12), wrap=NONE, )
        self.stext.place(relx=0.017, rely=0.036, relwidth=0.957, relheight=0.412)

        # 垂直滾動條
        self.VScroll1 = Scrollbar(self.stext, orient='vertical')
        self.VScroll1.pack(side=RIGHT, fill=Y)
        self.VScroll1.config(command=self.stext.yview)  # 将文本框關聯到滾動條上,滾動條滑動,文本框跟随滑動
        self.stext.config(yscrollcommand=self.VScroll1.set)  # 将滾動條關聯到文本框
        # 水準滾動條
        self.stextxscroll = Scrollbar(self.stext, orient=HORIZONTAL)
        self.stextxscroll.pack(side=BOTTOM, fill=X)  # side是滾動條放置的位置,上下左右。fill是将滾動條沿着y軸填充
        self.stextxscroll.config(command=self.stext.xview)  # 将文本框關聯到滾動條上,滾動條滑動,文本框跟随滑動
        self.stext.config(xscrollcommand=self.stextxscroll.set)  # 将滾動條關聯到文本框

        self.totext = Text(self.ftitle, font=('楷體', 12), wrap=NONE)
        self.totext.place(relx=0.017, rely=0.552, relwidth=0.957, relheight=0.412)

        self.VScroll2 = Scrollbar(self.totext, orient='vertical')
        self.VScroll2.pack(side=RIGHT, fill=Y)
        # 将滾動條與文本框關聯
        self.VScroll2.config(command=self.totext.yview)  # 将文本框關聯到滾動條上,滾動條滑動,文本框跟随滑動
        self.totext.config(yscrollcommand=self.VScroll2.set)  # 将滾動條關聯到文本框
        # 水準滾動條
        self.totextxscroll = Scrollbar(self.totext, orient=HORIZONTAL)
        self.totextxscroll.pack(side=BOTTOM, fill=X)  # side是滾動條放置的位置,上下左右。fill是将滾動條沿着y軸填充
        self.totextxscroll.config(command=self.totext.xview)  # 将文本框關聯到滾動條上,滾動條滑動,文本框跟随滑動
        self.totext.config(xscrollcommand=self.totextxscroll.set)  # 将滾動條關聯到文本框

        def cut(editor, event=None):
            editor.event_generate("<<Cut>>")

        def copy(editor, event=None):
            editor.event_generate("<<Copy>>")

        def paste(editor, event=None):
            editor.event_generate('<<Paste>>')

        def rightKey(event, editor):
            menubar.delete(0, END)
            menubar.add_command(label='剪切', command=lambda: cut(editor))
            menubar.add_command(label='複制', command=lambda: copy(editor))
            menubar.add_command(label='粘貼', command=lambda: paste(editor))
            menubar.post(event.x_root, event.y_root)

        menubar = Menu(self.top, tearoff=False)  # 建立一個菜單
        self.stext.bind("<Button-3>", lambda x: rightKey(x, self.stext))  # 綁定右鍵滑鼠事件
        self.totext.bind("<Button-3>", lambda x: rightKey(x, self.totext))  # 綁定右鍵滑鼠事件

        self.style.configure('Tcleartext.TButton', font=('楷體', 12))
        self.cleartext = Button(self.ftitle, text='清空', command=self.cleartext_Cmd, style='Tcleartext.TButton')
        self.cleartext.place(relx=0.239, rely=0.463, relwidth=0.086, relheight=0.073)

        self.style.configure('Taddyh.TButton', font=('楷體', 12))
        self.addyh = Button(self.ftitle, text='點選查詢', command=self.addyh_Cmd,
                            style='Taddyh.TButton')
        self.addyh.place(relx=0.512, rely=0.463, relwidth=0.2, relheight=0.073)


class Application(Application_ui):
    # 這個類實作具體的事件處理回調函數。界面生成代碼在Application_ui中。
    def __init__(self, master=None):
        Application_ui.__init__(self, master)

    def cleartext_Cmd(self, event=None):
        # TODO, Please finish the function here!
        # 清空兩個文本框
        self.stext.delete(1.0, "end")
        self.totext.delete(1.0, "end")

    def addyh_Cmd(self, event=None):
        # TODO, Please finish the function here!
        cookiestext = self.stext.get(1.0, "end")
        response = openai.Completion.create(
            engine="text-davinci-002",
            prompt=cookiestext,
            max_tokens=1024,
            n=1,
            temperature=0.5,
        )
        answer = (response["choices"][0]["text"]).split(".")
        for i in answer:
            self.totext.insert(1.0, i)

            self.totext.update()


if __name__ == "__main__":
    top = Tk()
    Application(top).mainloop()

           

最後用pyinstaller打包