Go to file
2023-04-10 13:52:20 +02:00
.vscode
fjerkroa_bot
tests
.flake8
.gitignore
.pre-commit-config.yaml
config.toml
mypy.ini
pyproject.toml
pytest.ini
README.md
requirements.txt
setup.py
setupenv.sh

Fjerkroa bot

A simple Discord bot that uses OpenAI's GPT to chat with users.

Installation

  1. Install the package using pip:
pip install fjerkroa-bot
  1. Create a bot.py file with the following content, replacing the tokens with your own:
from discord_gpt_bot import main

main.DISCORD_BOT_TOKEN = "your_discord_bot_token"
main.OPENAI_API_KEY = "your_openai_api_key"

main.run_bot()
  1. Run the bot:
python bot.py