mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
9 lines
266 B
Python
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")
|