1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Discord に ChatGPT を住まわせてトークンエンゲル係数を爆上げしてみた

Posted at

たまには技術的なことを書くです。

ぜ~んぜん、いいねが付かない しぇいしぇい Qiitaである。
承認欲求を刺激された僕はついに技術的な話を書くことにしたのであった。

Discord の BOTプログラムが構築済みの前提ですた。

  1. openaiのPythonパッケージをインストールしますた。

    $ pip3 install openai
    
  2. OpenAIのWebサイトにアクセスし、ユーザーアイコンから[View API keys]を選択しますた。

  3. API keys画面にてキーが出来ていない場合は [+ Create new secret key] を押下しませう。
    スクリーンショット 2023-04-13 230134.jpg

    作った時に鍵の情報がコピーできるのでコピーしませう。
    閉じると再度見ることは出来ないので、削除して作り直しになるます。
    :

  4. 有効なカギがある場合は下図の様に表示されますた。
    スクリーンショット 2023-04-13 230334.jpg

  5. 使用するChatGPTは3.5を選択しますた。

    connect.py
            # connected openAI use gpt 3.5
            response = openai.ChatCompletion.create(
                model="gpt-3.5-turbo",
                messages=[
                    {"role":"user", "content" : _prompt},
                ]
            )
    
  6. 今回は /neko と打った時にその直前に入力していた内容をChatGPTに話しかけるプログラムとしますた。
    また、Discordのチャンネルも特定のチャンネルのみ発言を拾う様にしますた。

  7. 話しかける内容の入れ替えロジックはこんな感じで考えますた。
    スクリーンショット 2023-04-14 22.39.40.png

  8. 入れ替えた後にリストを参照するインデックスを変換するので、それはこんな感じで考えますた。
    スクリーンショット 2023-04-14 22.39.55.png

  9. 動作イメージはこんな感じですた。
    スクリーンショット 2023-04-14 222721.jpg
    スクリーンショット 2023-04-14 222812.jpg

  10. ソースコードはこんな感じですた。

    main.py
    import discord
    import openai
    
    TOKEN = '[DISCORD_TOKEN]'
    KEY = '[OPENAI_APIKEY]'
    CHANNEL = '[DISCORD_CHANNEL_ID]'
    
    # initialize for discord
    intents = discord.Intents.default()
    intents.message_content = True
    client = discord.Client(intents=intents)
    
    # initialize for openAI
    openai.api_key = KEY
    
    # initialize for logic
    message_list = ['please tell me. you can input some talk with me.', 'empty']
    _counter = 0
    
    # event @ invoke
    @client.event
    async def on_ready():
        print('ログインしますた')
    
    # event @ recv message
    @client.event
    async def on_message(message):
        if message.channel.id == CHANNEL:
            # ignore message by bot
            if message.author.bot:
                return
            global _counter
            if _counter > 0 :
                _counter = 0
            else :
                _counter = _counter + 1
            print(message.content)
            print("_counter : " + str(_counter))
            print(message_list)
            print('------------------')
            message_list[_counter] = message.content
            print(message_list)
            print('access index : ' + str((_counter - 1) * -1))
    
            # if type /neko then throw question to chatGPT.
            if message.content == '/neko' :
                _prompt = message_list[ (_counter - 1) * -1 ] 
                print('prompt : ' + _prompt)
    
                # connected openAI use gpt 3.5
                response = openai.ChatCompletion.create(
                    model="gpt-3.5-turbo",
                    messages=[
                        {"role":"user", "content" : _prompt},
                    ]
                )
                await message.channel.send(response.choices[0]["message"]["content"])
    
    # bot invoke and connect discord server
    client.run(TOKEN)
    

終わりに

次はこの子に性格をつけてもいいんですけど、トークンでお金が掛かるのが非常に二の足を踏みます。
湯水のように使えるお金が欲しい
まともにPython組んだの初めてですが、人気がある理由が分かりますね。
非常に組みやすい言語ですわ。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?