Spaces:
Runtime error
Runtime error
File size: 1,098 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.file_import_plugin_input import FileImportPluginInput
from steamship.plugin.outputs.raw_data_plugin_output import RawDataPluginOutput
# Note!
# =====
#
# This is the PLUGIN IMPLEMENTOR's View of a File Importer.
#
# If you are using the Steamship Client, you probably want steamship.client.operations.file_importer instead
# of this file.
#
class FileImporter(PluginService[FileImportPluginInput, RawDataPluginOutput], ABC):
@abstractmethod
def run(
self, request: PluginRequest[FileImportPluginInput]
) -> InvocableResponse[RawDataPluginOutput]:
raise NotImplementedError()
@post("import")
def run_endpoint(self, **kwargs) -> InvocableResponse[RawDataPluginOutput]:
"""Exposes the File Importer's `run` operation to the Steamship Engine via the expected HTTP path POST /import"""
return self.run(PluginRequest[FileImportPluginInput](**kwargs))
|