Skip to content

Commit

Permalink
πŸ”§ chore(dependencies): update dependencies in pyproject.toml
Browse files Browse the repository at this point in the history
πŸ”¨ refactor(event): remove unused AnimeIDF and related code

πŸš€ feat(controller): add new message handlers for various commands

♻️ refactor(controller): simplify tagger function and markdown replies
  • Loading branch information
sudoskys committed Dec 25, 2024
1 parent a87272b commit 163d878
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ async def scene_composition(message: types.Message):
if settings.mode.only_white:
if message.chat.id not in settings.mode.white_group:
return logger.info(f"White List Out {message.chat.id}")
contents = prompt_generator.generate_scene_tags()
contents = prompt_generator.generate_scene_composition()
prompt = [formatting.mbold("πŸ₯› Scene Composition Prompt", escape=False)]
for content in contents:
prompt.append(f"- `{content}`")
Expand Down

0 comments on commit 163d878

Please sign in to comment.