ChatGPT (Azure OpenAI Service) を利用したSlack上で動くChat bot
※ このリポジトリは参照用に切り出したもので、更新する予定は今のところありません。
※ 本Slackbotについて書いたブログはこちらから
# virtualenv などのセットアップを行う
make setup
# アプリケーションを実行する
make run
# サーバに ssh する
gcloud compute ssh --project={your project name} --zone={your zone} {your instance name}
# ファイルを転送する
gcloud compute scp --project={your project name} --zone={your zone} {転送したいファイル} {your instance name}:{転送先パス}
- Google Cloud Platform
- Compute Engine
- Secret Manager
- Python3
- Slack Bolt for Python
- Azure OpenAI Service
Compute Engine上で、SystemdのServiceで複数プロセスを立てて負荷分散している
GitHub Actionsにて自動デプロイを実装しており、mainブランチにpush or mergeすると自動でデプロイが走る
# App manifestの一部を抜粋
oauth_config:
scopes:
bot:
- app_mentions:read
- channels:history
- channels:read
- chat:write
- groups:history
- im:history
- mpim:history
- reactions:read
- commands
settings:
event_subscriptions:
bot_events:
- app_mention
- message.channels
- message.groups
- message.im
- message.mpim
- reaction_added
This project is licensed under the MIT license. See LICENSE for the full license text.