Files
LLM_Engineering_OLD/week8/community_contributions/modal_services/get_started.py
2025-06-05 16:42:02 +02:00

13 lines
213 B
Python

import sys, modal
app = modal.App("example-hello-world")
@app.function()
def f(i: int) -> int:
if i % 2 == 0:
print("hello", i)
else:
print("world", i, file=sys.stderr)
return i * i