File size: 299 Bytes
162a84c
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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()