InvokeAI/docs
psychedelicious 044d4c107a feat(nodes): move all invocation metadata (type, title, tags, category) to decorator
All invocation metadata (type, title, tags and category) are now defined in decorators.

The decorators add the `type: Literal["invocation_type"]: "invocation_type"` field to the invocation.

Category is a new invocation metadata, but it is not used by the frontend just yet.

- `@invocation()` decorator for invocations

```py
@invocation(
    "sdxl_compel_prompt",
    title="SDXL Prompt",
    tags=["sdxl", "compel", "prompt"],
    category="conditioning",
)
class SDXLCompelPromptInvocation(BaseInvocation, SDXLPromptInvocationBase):
    ...
```

- `@invocation_output()` decorator for invocation outputs

```py
@invocation_output("clip_skip_output")
class ClipSkipInvocationOutput(BaseInvocationOutput):
    ...
```

- update invocation docs
- add category to decorator
- regen frontend types
2023-08-30 18:35:12 +10:00
..
assets 3.1 Documentation Updates (#4318) 2023-08-25 11:59:46 +10:00
contributing feat(nodes): move all invocation metadata (type, title, tags, category) to decorator 2023-08-30 18:35:12 +10:00
deprecated updated postprocessing, prompts, img2img and web docs 2023-05-29 10:55:57 -04:00
features 3.1 Documentation Updates (#4318) 2023-08-25 11:59:46 +10:00
help 3.1 Documentation Updates (#4318) 2023-08-25 11:59:46 +10:00
installation 3.1 Documentation Updates (#4318) 2023-08-25 11:59:46 +10:00
javascripts 3.1 Documentation Updates (#4318) 2023-08-25 11:59:46 +10:00
nodes Merge branch 'main' into sammyf-patch-1-1 2023-08-26 08:46:38 -04:00
other Update CONTRIBUTORS.md 2023-07-21 08:24:17 -04:00
CHANGELOG.md documentation fixes 2023-07-18 12:45:47 -04:00
index.md 3.1 Documentation Updates (#4318) 2023-08-25 11:59:46 +10:00
requirements-mkdocs.txt (docs) add redirects for moved pages (#2063) 2022-12-18 08:04:58 +00:00