Skip to content

Commit

Permalink
stylistic changes for AUTOMATIC1111#13118
Browse files Browse the repository at this point in the history
  • Loading branch information
AUTOMATIC1111 committed Sep 9, 2023
1 parent 73c2a03 commit c9c457e
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions modules/ui.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import datetime
import functools
import mimetypes
import os
import sys
Expand Down Expand Up @@ -152,14 +151,15 @@ def connect_clear_prompt(button):
)


def update_token_counter(text, steps, is_positive=True):
def update_token_counter(text, steps, *, is_positive=True):
try:
text, _ = extra_networks.parse_prompt(text)

if is_positive:
_, prompt_flat_list, _ = prompt_parser.get_multicond_prompt_list([text])
else:
prompt_flat_list = [text]

prompt_schedules = prompt_parser.get_learned_conditioning_prompt_schedules(prompt_flat_list, steps)

except Exception:
Expand All @@ -173,6 +173,10 @@ def update_token_counter(text, steps, is_positive=True):
return f"<span class='gr-box gr-text-input'>{token_count}/{max_length}</span>"


def update_negative_prompt_token_counter(text, steps):
return update_token_counter(text, steps, is_positive=False)


class Toprow:
"""Creates a top row UI with prompts, generate button, styles, extra little buttons for things, and enables some functionality related to their operation"""

Expand Down Expand Up @@ -539,7 +543,7 @@ def create_ui():
]

toprow.token_button.click(fn=wrap_queued_call(update_token_counter), inputs=[toprow.prompt, steps], outputs=[toprow.token_counter])
toprow.negative_token_button.click(fn=wrap_queued_call(functools.partial(update_token_counter, is_positive=False)), inputs=[toprow.negative_prompt, steps], outputs=[toprow.negative_token_counter])
toprow.negative_token_button.click(fn=wrap_queued_call(update_negative_prompt_token_counter), inputs=[toprow.negative_prompt, steps], outputs=[toprow.negative_token_counter])

extra_networks_ui = ui_extra_networks.create_ui(txt2img_interface, [txt2img_generation_tab], 'txt2img')
ui_extra_networks.setup_ui(extra_networks_ui, txt2img_gallery)
Expand Down

0 comments on commit c9c457e

Please sign in to comment.