Spaces:
Configuration error
Configuration error
| import modal | |
| app = modal.App("example-get-started") | |
| def square(x): | |
| print("This code is running on a remote worker!") | |
| return x**2 | |
| def main(): | |
| print("the square is", square.remote(42)) | |