Skip to content

Commit

Permalink
🐛 fix(controller): correct prompt formatting in message output
Browse files Browse the repository at this point in the history
  • Loading branch information
sudoskys committed Sep 28, 2024
1 parent cec18d7 commit ee211e4
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 @@ -69,7 +69,7 @@ async def read_a111(file: BytesIO):
logger.debug(f"Error {e}")
return []
else:
return [f"**📦 Prompt**\n```{prompt}```", f"\n>{message}\n"]
return [f"**📦 Prompt**\n```{prompt}```", f">{message}\n"]


async def read_comfyui(file: BytesIO):
Expand Down

0 comments on commit ee211e4

Please sign in to comment.