https://github.com/star-3gg/flowise-discord-bot
Implementation of a discord bot for flowise queries that supports slash commands
https://github.com/star-3gg/flowise-discord-bot
automation discord-bot flowise free
Last synced: 6 months ago
JSON representation
Implementation of a discord bot for flowise queries that supports slash commands
- Host: GitHub
- URL: https://github.com/star-3gg/flowise-discord-bot
- Owner: star-3gg
- License: gpl-3.0
- Created: 2024-03-11T19:21:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-06T07:41:04.000Z (over 1 year ago)
- Last Synced: 2025-04-18T15:17:38.783Z (6 months ago)
- Topics: automation, discord-bot, flowise, free
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 4
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Flowise API Client Discord Bot
Python implementation of a discord bot for Flowise queries that supports slash commands
## For Users that want to Make Use of this Bot
### Installation
1. Create a `.env` from the provided `.env.example` and update it accordingly
2. Start the docker container using docker-compose:
```sh
docker-compose up
```3. All Done.
### Usage
The following slash-commands can be used in your discord server, developers can always add new ones or create an issue on this repository:
- `/ask ` Takes in a text question and responds with text
- `/echo` Responds with text `delta`. This is used for testing purposes during developmentAll commands are automatically completed, once you start typing `/`.
## For Developers
### Virtual environment
Install the `python-venv` package for virtual environment support:
```sh
sudo pacman -Sy python python-venv
```Create a virtual environment using the command:
```sh
python -m venv .venv
```Activate the created virtual environment using the command:
```sh
source .venv/bin/Activate
```Install the dependencies in your virtual environment:
```sh
pip install -r requirements.txt
```