ai / app.py
CHEN11102's picture
Create app.py
6153c6f verified
raw
history blame contribute delete
186 Bytes
import replicate
deployment = replicate.deployments.get("jilll111/ai")
prediction = deployment.predictions.create(
input={"frame1": "..."}
)
prediction.wait()
print(prediction.output)