Run genekogan/test using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run(
"genekogan/test:ae4152166b971845f5df6d6f382b03fe55cd4515b8350408293acb17f3c4fa7b",
input={}
)
# The genekogan/test model can stream output as it's running.# The predict method returns an iterator, and you can iterate over that output.for item in output:
# https://replicate.com/genekogan/test/api#output-schemaprint(item)