Skip to content

Commit

Permalink
style: fix
Browse files Browse the repository at this point in the history
style: fix
  • Loading branch information
tazlin committed Jan 26, 2025
1 parent 2139586 commit 64793fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -259,14 +259,14 @@ With the role:
stable_diffusion_2_512
stable_diffusion_xl
stable_cascade
flux_1
flux_1
```
> **Warning**: Flux.schnell series models are the only Flux models allowed; Flux.dev is *not* currently permitted. Do not attempt to offer Flux.dev, models derived from it, or models which contain data from it.
See [`STABLE_DIFFUSION_BASELINE_CATEGORY` in horde_model_reference](https://github.com/Haidra-Org/horde-model-reference/blob/main/horde_model_reference/meta_consts.py#L86) for an up to date list.


3. Add the model `name` to your `models_to_load` list.

> Note: Do not use sexually explicit or excessively vulgar names for models.

If set up correctly, `custom_models.json` will appear in the worker directory on startup.
Expand Down
3 changes: 2 additions & 1 deletion horde_worker_regen/process_management/process_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -4008,7 +4008,8 @@ async def api_job_pop(self) -> None:
message_expiry=message_expiry,
)
logger.info(
f"Message {message_id} from {message_origin} (expires {message_expiry}): {message_text}",
f"Message {message_id} from {message_origin} (expires {message_expiry}): "
f"{message_text}",
)
except Exception as e:
logger.error(f"Failed to process API messages: {e}")
Expand Down

0 comments on commit 64793fa

Please sign in to comment.