1
0
Fork 0

start documenting region prompts

This commit is contained in:
Sean Sube 2023-11-09 18:23:19 -06:00
parent 42c526eb25
commit 918ffde8e6
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 19 additions and 0 deletions

View File

@ -32,6 +32,7 @@ Please see [the server admin guide](server-admin.md) for details on how to confi
- [Prompt tokens](#prompt-tokens)
- [LoRA and LyCORIS tokens](#lora-and-lycoris-tokens)
- [Textual Inversion tokens](#textual-inversion-tokens)
- [Region tokens](#region-tokens)
- [CLIP skip tokens](#clip-skip-tokens)
- [Long prompt weighting syntax](#long-prompt-weighting-syntax)
- [Pipelines](#pipelines)
@ -414,6 +415,24 @@ much less useful. For a concept called `cubex` with the token `<cube>`, the avai
- `<cube>`
- `cubex-0`
#### Region tokens
You can use a different prompt for part of the image using `<region:...>` tokens. Region tokens are more complicated
than the other tokens and have more parameters, which may change in the future.
```none
<region:top:left:bottom:right:strength:feather:prompt>
```
- the prompt can end with +
- top/left/bottom/right are integer pixels
- will be rounded down to nearest 8
- strength and feather are floats
- strength > 10 replaces other prompt
- strength < 0 does weird things
- feather can be 0.0 to 0.5, reasonably
- prompt can end with + to append the regular prompt
#### CLIP skip tokens
You can skip the last layers of the CLIP text encoder using the `clip` token: