llm-arena / model_test.py
IntimateUser6969's picture
feat{Gradio_UI + Frontier.+ OSS Model added}
45f3fab
Raw
History Blame Contribute Delete
254 Bytes
import modal
app = modal.App("example-get-started")
@app.function()
def square(x):
print("This code is running on a remote worker!")
return x**2
@app.local_entrypoint()
def main():
print("the square is", square.remote(42))