Source code for steamship.plugin.outputs.embedded_items_plugin_output

from __future__ import annotations

from typing import List

from steamship.plugin.outputs.plugin_output import PluginOutput


[docs] class EmbeddedItemsPluginOutput(PluginOutput): embeddings: List[List[float]]