InvokeAI/invokeai/app
psychedelicious c48fd9c083 feat(nodes): refactor parameter/primitive nodes
Refine concept of "parameter" nodes to "primitives":
- integer
- float
- string
- boolean
- image
- latents
- conditioning
- color

Each primitive has:
- A field definition, if it is not already python primitive value. The field is how this primitive value is passed between nodes. Collections are lists of the field in node definitions. ex: `ImageField` & `list[ImageField]`
- A single output class. ex: `ImageOutput`
- A collection output class. ex: `ImageCollectionOutput`
- A node, which functions to load or pass on the primitive value. ex: `ImageInvocation` (in this case, `ImageInvocation` replaces `LoadImage`)

Plus a number of related changes:
- Reorganize these into `primitives.py`
- Update all nodes and logic to use primitives
- Consolidate "prompt" outputs into "string" & "mask" into "image" (there's no reason for these to be different, the function identically)
- Update default graphs & tests
- Regen frontend types & minor frontend tidy related to changes
2023-08-16 09:54:38 +10:00
..
api prevent vae: '' from crashing model 2023-08-10 17:33:04 -04:00
assets/images tweaks in response to psychedelicious review of PR 2023-07-26 15:27:04 +10:00
cli Run python black 2023-07-28 09:46:44 -04:00
invocations feat(nodes): refactor parameter/primitive nodes 2023-08-16 09:54:38 +10:00
models feat(nodes): refactor parameter/primitive nodes 2023-08-16 09:54:38 +10:00
services feat(nodes): refactor parameter/primitive nodes 2023-08-16 09:54:38 +10:00
util Apply requested changes 2023-08-10 06:19:22 +03:00
api_app.py feat: node editor 2023-08-16 09:54:38 +10:00
cli_app.py added stats service to the cli_app startup 2023-08-02 18:41:43 -04:00