InvokeAI/invokeai/app
psychedelicious 641d235102 tidy(nodes): remove GraphInvocation
`GraphInvocation` is a node that can contain a whole graph. It is removed for a number of reasons:

1. This feature was unused (the UI doesn't support it) and there is no plan for it to be used.

The use-case it served is known in other node execution engines as "node groups" or "blocks" - a self-contained group of nodes, which has group inputs and outputs. This is a planned feature that will be handled client-side.

2. It adds substantial complexity to the graph processing logic. It's probably not enough to have a measurable performance impact but it does make it harder to work in the graph logic.

3. It allows for graphs to be recursive, and the improved invocations union handling does not play well with it. Actually, it works fine within `graph.py` but not in the tests for some reason. I do not understand why. There's probably a workaround, but I took this as encouragement to remove `GraphInvocation` from the app since we don't use it.
2024-03-01 10:42:33 +11:00
..
api final tidying before marking PR as ready for review 2024-03-01 10:42:33 +11:00
assets/images tweaks in response to psychedelicious review of PR 2023-07-26 15:27:04 +10:00
invocations feat(nodes): JIT graph nodes validation 2024-03-01 10:42:33 +11:00
services tidy(nodes): remove GraphInvocation 2024-03-01 10:42:33 +11:00
shared tidy(nodes): move all field things to fields.py 2024-03-01 10:42:33 +11:00
util feat(nodes): update invocation context for mm2, update nodes model usage 2024-03-01 10:42:33 +11:00
api_app.py fix(nodes): fix OpenAPI schema generation 2024-03-01 10:42:33 +11:00