diff --git a/README.md b/README.md index 8e70f84..b5d849a 100644 --- a/README.md +++ b/README.md @@ -6,19 +6,20 @@ this is a txt2img bot running on tami telegram channel supported invocation: `/draw ` - send prompt text to the bot and it will draw an image -you can add `negative_prompt` using `ng[]` +you can add `negative_prompt` using `ng ` examples: `/draw a city street` and without people -`/draw a city street ng[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. -note on [negative_prompt](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Negative-prompt) (aka ng): +note1: Anything after ng will be considered as nergative prompt. a.k.a things you do not want to see in your diffusion! +note2: 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). and you (currntly) can only ADD to it, not replace. diff --git a/main.py b/main.py index 5bce466..5d32a2c 100644 --- a/main.py +++ b/main.py @@ -36,7 +36,7 @@ def slice_positive_negative(string): return positive, negative else: return string, "null" # if we are missing the ng bad thing happen.... - + #POSSIBLE NG [[[[[[[[[[lowres, low resolution, bad resolution, bad, poor quality, bad quality, blurry, bad art, incomplete, logo, signature, text, jpeg artifacts, compression artifacts,child, childish]]]]]]]]]] @app.on_message(filters.command(["draw"])) def draw(client, message):