File size: 186 Bytes
b115d50
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from __future__ import annotations

from typing import List

from steamship.base.model import CamelModel


class EmbeddedItemsPluginOutput(CamelModel):
    embeddings: List[List[float]]