add incorrect start word guard to xy_grid (#2259)

This commit is contained in:
DepFA 2022-10-11 11:59:56 +01:00 committed by GitHub
parent a8490e4019
commit 1a0a6a84c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,17 +27,12 @@ def apply_field(field):
def apply_prompt(p, x, xs): def apply_prompt(p, x, xs):
if xs[0] not in p.prompt and xs[0] not in p.negative_prompt:
orig_prompt = p.prompt raise RuntimeError(f"Prompt S/R did not find {xs[0]} in prompt or negative prompt.")
orig_negative_prompt = p.negative_prompt
p.prompt = p.prompt.replace(xs[0], x) p.prompt = p.prompt.replace(xs[0], x)
p.negative_prompt = p.negative_prompt.replace(xs[0], x) p.negative_prompt = p.negative_prompt.replace(xs[0], x)
if p.prompt == orig_prompt and p.negative_prompt == orig_negative_prompt:
pass
#raise RuntimeError(f"Prompt S/R did not find {xs[0]} in prompt or negative prompt. Did you forget to add the token?")
def apply_order(p, x, xs): def apply_order(p, x, xs):
token_order = [] token_order = []