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()