fastdash / app.py
Kedar Dabhadkar
Added app files
162a84c
raw
history blame contribute delete
299 Bytes
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, port=7860)
server = app.server
if __name__ == '__main__':
app.run()