From 20faa8b782ca936b6830bb64b8934b1a89cfeaf4 Mon Sep 17 00:00:00 2001 From: Eric Hennenfent Date: Sat, 27 Jan 2024 00:12:20 -0800 Subject: [PATCH] Remove "there is no text in the image" Based on the output from the last couple sessions, including the word "text" in the prompt seems to increase the frequency of text appearing. --- live_illustrate/render.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/live_illustrate/render.py b/live_illustrate/render.py index 719ff56..536419b 100644 --- a/live_illustrate/render.py +++ b/live_illustrate/render.py @@ -6,7 +6,7 @@ from .util import AsyncThread, Image, Summary # Prompt engineering level 1,000,000 -EXTRA: t.List[str] = ["There is no text in the image.", "digital painting, fantasy art"] +EXTRA: t.List[str] = ["digital painting, fantasy art"] class ImageRenderer(AsyncThread):