Compare commits

..

No commits in common. "9bce6f989ef07ceb6e7ad5f264d938093d0f331c" and "76b529b468a11610a8b1b9a2cb02a8543b9a977f" have entirely different histories.

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