This commit is contained in:
lvmin 2023-09-10 11:05:10 -07:00
parent b10d9d78f6
commit 6acb2fb66d
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ class FooocusExpansion:
print('Fooocus Expansion engine loaded.')
def __call__(self, prompt, seed):
prompt = safe_str(prompt) + ', ' # Reduce semantic corruption.
prompt = safe_str(prompt) + ',' # Reduce semantic corruption.
seed = int(seed)
set_seed(seed)
response = self.pipe(prompt, max_length=len(prompt) + 256)