InvokeAI/invokeai/app/services/models/board_image.py
2023-10-13 21:48:48 +11:00

9 lines
266 B
Python

from pydantic import Field
from invokeai.app.util.model_exclude_null import BaseModelExcludeNull
class BoardImage(BaseModelExcludeNull):
board_id: str = Field(description="The id of the board")
image_name: str = Field(description="The name of the image")