diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2023-01-02 06:11:10 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-02 06:11:10 +0300 |
commit | fd4461d44c7256d56889f5b5ed9fb660a859172f (patch) | |
tree | b768bab8ba99b90099bdf1db82947be9c3b6623b /modules/api/models.py | |
parent | f39a79d1430cb2a07853b9e1ba0fde0db8a0d5d5 (diff) | |
parent | c65909ad16a1962129114c6251de092f49479b06 (diff) |
Merge pull request #6196 from philpax/add-embeddings-api
feat(api): add /sdapi/v1/embeddings
Diffstat (limited to 'modules/api/models.py')
-rw-r--r-- | modules/api/models.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/api/models.py b/modules/api/models.py index c446ce7a..4a632c68 100644 --- a/modules/api/models.py +++ b/modules/api/models.py @@ -249,3 +249,13 @@ class ArtistItem(BaseModel): score: float = Field(title="Score") category: str = Field(title="Category") +class EmbeddingItem(BaseModel): + step: Optional[int] = Field(title="Step", description="The number of steps that were used to train this embedding, if available") + sd_checkpoint: Optional[str] = Field(title="SD Checkpoint", description="The hash of the checkpoint this embedding was trained on, if available") + sd_checkpoint_name: Optional[str] = Field(title="SD Checkpoint Name", description="The name of the checkpoint this embedding was trained on, if available. Note that this is the name that was used by the trainer; for a stable identifier, use `sd_checkpoint` instead") + shape: int = Field(title="Shape", description="The length of each individual vector in the embedding") + vectors: int = Field(title="Vectors", description="The number of vectors in the embedding") + +class EmbeddingsResponse(BaseModel): + loaded: Dict[str, EmbeddingItem] = Field(title="Loaded", description="Embeddings loaded for the current model") + skipped: Dict[str, EmbeddingItem] = Field(title="Skipped", description="Embeddings skipped for the current model (likely due to architecture incompatibility)")
\ No newline at end of file |