stable-diffusion-telegram-bot/README.md

59 lines
1.9 KiB
Markdown
Raw Normal View History

2023-01-12 06:30:46 +02:00
# AI Powered Art in a Telegram Bot!
2023-03-18 15:09:38 +02:00
this is a txt2img bot running on tami telegram channel
# How to
supported invocation:
`/draw <text>` - send prompt text to the bot and it will draw an image
you can add `negative_prompt` using `ng[<text>]`
examples:
`/draw a city street`
and without people
`/draw a city street ng[people]`
to change the model use:
`/getmodels` - to get a list of models and then click to set it.
2023-03-19 22:31:26 +02:00
note on [negative_prompt](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Negative-prompt) (aka ng):
thia is a bit of a black art. i took the recommended defaults for the `Deliberate` model from this fun [alt-model spreadsheet](https://docs.google.com/spreadsheets/d/1Q0bYKRfVOTUHQbUsIISCztpdZXzfo9kOoAy17Qhz3hI/edit#gid=797387129).
2023-03-19 22:30:44 +02:00
and you (currntly) can only ADD to it, not replace.
2023-03-18 15:09:38 +02:00
2023-01-12 06:30:46 +02:00
## Setup
Install requirements
2023-03-18 15:09:38 +02:00
```bash
conda create -n sdw python=3.8
conda activate sdw
pip install -r requirements.txt
```
(note: conda is not strictly necessary, but it is recommended)
## Original readme
2023-01-12 06:30:46 +02:00
My Bot uses [Automatic1111's WebUI](https://github.com/AUTOMATIC1111/stable-diffusion-webui) as the backend.
Follow the directions on their repo for setup instructions.
Once you have WebUI set up, run `webui.sh` with the `--api` argument. You can also add other
arguments such as `--xformers` to use xformers memory efficient attention.
You can use the web ui interface that Automatic1111 provides to select the model and VAE to use.
Their repo has documentation on how to do so. I also recommend doing a test generation
Create a file called `.env` in the same folder as `main.py`. Inside the `.env` file,
create a line `TOKEN = xxxx`, where xxxx is your telegram bot token.
create a line `API_ID = xxxx`, where xxxx is your telegram id api id.
create a line `API_HASH = xxxx`, where xxxx is your telegram id api hash.
create a line `SD_URL = xxxx`, where xxxx is your sd api url.
Now, you can run the bot
`python main.py`
2023-01-12 06:41:51 +02:00
2023-01-12 06:30:46 +02:00