Spaces:
Running
Running
File size: 1,030 Bytes
b72ab63 |
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 29 30 31 32 33 |
from gradio.components.base import Component
from gradio.events import Dependency
class Fallback(Component):
def preprocess(self, payload):
"""
This docstring is used to generate the docs for this custom component.
Parameters:
payload: the data to be preprocessed, sent from the frontend
Returns:
the data after preprocessing, sent to the user's function in the backend
"""
return payload
def postprocess(self, value):
"""
This docstring is used to generate the docs for this custom component.
Parameters:
payload: the data to be postprocessed, sent from the user's function in the backend
Returns:
the data after postprocessing, sent to the frontend
"""
return value
def example_payload(self):
return {"foo": "bar"}
def example_value(self):
return {"foo": "bar"}
def api_info(self):
return {"type": {}, "description": "any valid json"} |