Compare commits

...

2 Commits

Author SHA1 Message Date
yair
9bce6f989e
Update README.md 2023-04-27 13:59:16 +03:00
yair
9aaf8aa354 fix negative prompt 2023-04-27 13:57:48 +03:00
3 changed files with 5 additions and 5 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
*.png *.png
.env .env
*.session .session

View File

@ -6,12 +6,12 @@ this is a txt2img bot running on tami telegram channel
supported invocation: supported invocation:
`/draw <text>` - send prompt text to the bot and it will draw an image `/draw <text>` - send prompt text to the bot and it will draw an image
you can add `negative_prompt` using `ng <text>` you can add `negative_prompt` using `ng: <text>`
examples: examples:
`/draw a city street` `/draw a city street`
and without people and without people
`/draw a city street ng people` `/draw a city street ng: people`
to change the model use: to change the model use:
`/getmodels` - to get a list of models and then click to set it. `/getmodels` - to get a list of models and then click to set it.

View File

@ -28,7 +28,7 @@ app = Client("stable", api_id=API_ID, api_hash=API_HASH, bot_token=TOKEN)
def slice_positive_negative(string): def slice_positive_negative(string):
delimiter = "ng" delimiter = "ng:"
if delimiter in string: if delimiter in string:
index = string.index(delimiter) index = string.index(delimiter)
positive = string[:index].rstrip() positive = string[:index].rstrip()
@ -43,7 +43,7 @@ def draw(client, message):
msgs = message.text.split(" ", 1) msgs = message.text.split(" ", 1)
if len(msgs) == 1: if len(msgs) == 1:
message.reply_text( message.reply_text(
"Format :\n/draw < text to image >\nng < negative (optional) >" "Format :\n/draw < text to image >\nng: < negative (optional) >"
) )
return return