add optional field to type

This commit is contained in:
maryhipp 2023-08-24 06:52:03 -07:00 committed by psychedelicious
parent 7f6fdf5d39
commit e6fd1c3d1f

View File

@ -32,6 +32,7 @@ class CoreMetadata(BaseModelExcludeNull):
generation_mode: str = Field(
description="The generation mode that output this image",
)
created_by: Optional[str] = Field(description="The name of the creator of the image")
positive_prompt: str = Field(description="The positive prompt parameter")
negative_prompt: str = Field(description="The negative prompt parameter")
width: int = Field(description="The width parameter")