fastdash / app.py
dkedar7's picture
Upload folder using huggingface_hub
6b5c900 verified
from fast_dash import FastDash
# Write the main callback function here
def simple_text_to_text(input_text: str) -> str:
return input_text
# Initialize your FastDash application here
app = FastDash(simple_text_to_text)
if __name__ == '__main__':
app.run()