Spaces:
Runtime error
Runtime error
File size: 1,110 Bytes
b115d50 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
from abc import ABC, abstractmethod
from steamship.invocable import InvocableResponse, post
from steamship.invocable.plugin_service import PluginRequest, PluginService
from steamship.plugin.inputs.block_and_tag_plugin_input import BlockAndTagPluginInput
from steamship.plugin.outputs.embedded_items_plugin_output import EmbeddedItemsPluginOutput
# Note!
# =====
#
# This is the PLUGIN IMPLEMENTOR's View of an Embedder.
#
# If you are using the Steamship Client, you probably want steamship.client.operations.embedder instead
# of this file.
#
class Embedder(PluginService[BlockAndTagPluginInput, EmbeddedItemsPluginOutput], ABC):
@abstractmethod
def run(
self, request: PluginRequest[BlockAndTagPluginInput]
) -> InvocableResponse[EmbeddedItemsPluginOutput]:
raise NotImplementedError()
@post("tag")
def run_endpoint(self, **kwargs) -> InvocableResponse[EmbeddedItemsPluginOutput]:
"""Exposes the Embedder's `run` operation to the Steamship Engine via the expected HTTP path POST /tag"""
return self.run(PluginRequest[BlockAndTagPluginInput](**kwargs))
|