We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
app_version
1 parent c8fbaf5 commit 49cce1eCopy full SHA for 49cce1e
invokeai/app/invocations/metadata.py
@@ -2,6 +2,7 @@
2
3
from pydantic import Field
4
5
+from ...version import __version__
6
from invokeai.app.invocations.baseinvocation import (
7
BaseInvocation,
8
BaseInvocationOutput,
@@ -23,6 +24,7 @@ class LoRAMetadataField(BaseModelExcludeNull):
23
24
class CoreMetadata(BaseModelExcludeNull):
25
"""Core generation metadata for an image generated in InvokeAI."""
26
27
+ app_version: str = Field(default=__version__, description="The version of InvokeAI used to generate this image")
28
generation_mode: str = Field(
29
description="The generation mode that output this image",
30
)
0 commit comments