zeke / haiku-progressive-image
A model for testing pydantic cog that yields images one word at a time.
Prediction
zeke/haiku-progressive-image:964b71878342ff5e9c864ddf1810d6e1d5662d522c8270239c49939a24ff9133IDxhnmeuncdzc6fje45hicicbnmmStatusSucceededSourceWebHardware–Total durationCreatedInput
- sleep
- 0.1
{ "sleep": 0.1 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "zeke/haiku-progressive-image:964b71878342ff5e9c864ddf1810d6e1d5662d522c8270239c49939a24ff9133", { input: { sleep: 0.1 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "zeke/haiku-progressive-image:964b71878342ff5e9c864ddf1810d6e1d5662d522c8270239c49939a24ff9133", input={ "sleep": 0.1 } ) # The zeke/haiku-progressive-image 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/zeke/haiku-progressive-image/api#output-schema print(item)
To learn more, take a look at the guide on getting started with Python.
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "zeke/haiku-progressive-image:964b71878342ff5e9c864ddf1810d6e1d5662d522c8270239c49939a24ff9133", "input": { "sleep": 0.1 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-03-11T17:54:43.109897Z", "created_at": "2022-03-11T17:54:16.805474Z", "data_removed": false, "error": null, "id": "xhnmeuncdzc6fje45hicicbnmm", "input": { "sleep": 0.1 }, "logs": null, "metrics": { "predict_time": 4.273521, "total_time": 26.304423 }, "output": [ "https://replicate.delivery/mgxm/288e4ab1-6176-46e6-afe7-6a04bd5b7f71/haiku.png", "https://replicate.delivery/mgxm/5b2794b7-2929-42b1-9bcc-099596c07a3d/haiku.png", "https://replicate.delivery/mgxm/e21291bd-c7ae-46ba-927a-f1ae835d1d9b/haiku.png", "https://replicate.delivery/mgxm/188afbd4-4b4b-4edf-afc0-2ded44eb56a7/haiku.png", "https://replicate.delivery/mgxm/241a61f7-ecfb-4d0d-9125-63df1e9836de/haiku.png", "https://replicate.delivery/mgxm/59234115-0005-47ac-9978-92b0410dbc99/haiku.png", "https://replicate.delivery/mgxm/fffd2b67-3e93-490a-b28e-46b247a20dc3/haiku.png", "https://replicate.delivery/mgxm/4d23c0b7-c29e-4bab-a98e-925be647e826/haiku.png", "https://replicate.delivery/mgxm/697614f4-9230-462e-af2a-baa9a8addbc4/haiku.png", "https://replicate.delivery/mgxm/9efdd826-a035-4b47-a9d1-d6be32f54b2d/haiku.png", "https://replicate.delivery/mgxm/b6f60c8d-d993-4d9e-9d46-228ca37f80f3/haiku.png", "https://replicate.delivery/mgxm/e3011118-9811-4b80-ab41-ba1fab1109eb/haiku.png" ], "started_at": "2022-03-11T17:54:38.836376Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/xhnmeuncdzc6fje45hicicbnmm", "cancel": "https://api.replicate.com/v1/predictions/xhnmeuncdzc6fje45hicicbnmm/cancel" }, "version": "964b71878342ff5e9c864ddf1810d6e1d5662d522c8270239c49939a24ff9133" }
Generated inPrediction
zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149IDtti4zrhheras7d4yhl6uersdnqStatusSucceededSourceWebHardware–Total durationCreatedInput
- sleep
- 0.1
{ "sleep": 0.1 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", { input: { sleep: 0.1 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", input={ "sleep": 0.1 } ) # The zeke/haiku-progressive-image 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/zeke/haiku-progressive-image/api#output-schema print(item)
To learn more, take a look at the guide on getting started with Python.
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", "input": { "sleep": 0.1 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-03-12T03:55:56.408716Z", "created_at": "2022-03-12T03:55:49.115902Z", "data_removed": false, "error": null, "id": "tti4zrhheras7d4yhl6uersdnq", "input": { "sleep": 0.1 }, "logs": null, "metrics": { "predict_time": 4.159725, "total_time": 7.292814 }, "output": [ "https://replicate.delivery/mgxm/4d2991e3-c837-44d0-ae12-86e0072822d4/haiku.png", "https://replicate.delivery/mgxm/22bfa0f1-08dd-4684-83a7-1a07803613cf/haiku.png", "https://replicate.delivery/mgxm/5f6ce938-751b-4d23-bf68-71702993c771/haiku.png", "https://replicate.delivery/mgxm/86ddb9d2-277e-4747-9ad3-664e05811733/haiku.png", "https://replicate.delivery/mgxm/6fce674d-da0d-4309-8805-a9be853e5462/haiku.png", "https://replicate.delivery/mgxm/edbdbbc8-92bd-4ca0-8087-bce866b0c682/haiku.png", "https://replicate.delivery/mgxm/a5fd31d7-5773-4fdf-83f2-a4402716a576/haiku.png", "https://replicate.delivery/mgxm/3b66927d-8514-43e7-8555-3cba9eab4e72/haiku.png", "https://replicate.delivery/mgxm/7438db8a-60e3-4078-89ce-845370c94e9c/haiku.png" ], "started_at": "2022-03-12T03:55:52.248991Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/tti4zrhheras7d4yhl6uersdnq", "cancel": "https://api.replicate.com/v1/predictions/tti4zrhheras7d4yhl6uersdnq/cancel" }, "version": "edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149" }
Generated inPrediction
zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149IDcg2xfz6twrho7hbh5lmyslzkamStatusSucceededSourceWebHardware–Total durationCreatedInput
- sleep
- 0.1
{ "sleep": 0.1 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", { input: { sleep: 0.1 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", input={ "sleep": 0.1 } ) # The zeke/haiku-progressive-image 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/zeke/haiku-progressive-image/api#output-schema print(item)
To learn more, take a look at the guide on getting started with Python.
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", "input": { "sleep": 0.1 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-03-12T03:57:19.537029Z", "created_at": "2022-03-12T03:57:13.101103Z", "data_removed": false, "error": null, "id": "cg2xfz6twrho7hbh5lmyslzkam", "input": { "sleep": 0.1 }, "logs": null, "metrics": { "predict_time": 6.20188, "total_time": 6.435926 }, "output": [ "https://replicate.delivery/mgxm/f08c812b-58ff-4a1f-8028-1c1b4513e039/haiku.png", "https://replicate.delivery/mgxm/2307f86b-dabe-4df8-a148-6f9546b39988/haiku.png", "https://replicate.delivery/mgxm/c2a4905b-e58d-48ae-97e0-b8143a3f7a21/haiku.png", "https://replicate.delivery/mgxm/2ce4d5e8-2d6c-4b35-85e9-c48d0ff46215/haiku.png", "https://replicate.delivery/mgxm/ec9e7784-5766-4689-b161-3b5045856581/haiku.png", "https://replicate.delivery/mgxm/b4f7505d-d19f-4e12-a44a-85b90dd2d2b2/haiku.png", "https://replicate.delivery/mgxm/ffe88f29-59da-4953-aa92-5ddea1b0393c/haiku.png", "https://replicate.delivery/mgxm/d2d7bd6b-5349-453f-b6af-127bf8d9790a/haiku.png", "https://replicate.delivery/mgxm/bcfe0638-053f-4b1e-a62c-258ab2901f2a/haiku.png", "https://replicate.delivery/mgxm/de1b8e96-7487-4224-9b11-3e35b0d29a1e/haiku.png", "https://replicate.delivery/mgxm/260c28be-858b-452c-9fbf-bc6e56c7e005/haiku.png", "https://replicate.delivery/mgxm/24c2405f-dc96-4d46-971e-980a1e8ab3f8/haiku.png" ], "started_at": "2022-03-12T03:57:13.335149Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/cg2xfz6twrho7hbh5lmyslzkam", "cancel": "https://api.replicate.com/v1/predictions/cg2xfz6twrho7hbh5lmyslzkam/cancel" }, "version": "edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149" }
Generated inPrediction
zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149IDervyk6wghbgpjhx5maafp4iccyStatusSucceededSourceWebHardware–Total durationCreatedInput
- sleep
- 0.1
{ "sleep": 0.1 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", { input: { sleep: 0.1 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", input={ "sleep": 0.1 } ) # The zeke/haiku-progressive-image 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/zeke/haiku-progressive-image/api#output-schema print(item)
To learn more, take a look at the guide on getting started with Python.
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", "input": { "sleep": 0.1 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-03-12T03:57:37.821729Z", "created_at": "2022-03-12T03:57:31.634632Z", "data_removed": false, "error": null, "id": "ervyk6wghbgpjhx5maafp4iccy", "input": { "sleep": 0.1 }, "logs": null, "metrics": { "predict_time": 6.011559, "total_time": 6.187097 }, "output": [ "https://replicate.delivery/mgxm/30e79d63-268b-49c9-a474-f26a5756e4a9/haiku.png", "https://replicate.delivery/mgxm/b3716785-5f99-4e71-aeed-be99e8f257fb/haiku.png", "https://replicate.delivery/mgxm/5e8f260f-b5f1-49ee-9eb6-f2b7852c2959/haiku.png", "https://replicate.delivery/mgxm/a407d8b4-7896-4a74-9264-b07895404359/haiku.png", "https://replicate.delivery/mgxm/2fe98567-8772-4b87-a6ca-c14c289bc345/haiku.png", "https://replicate.delivery/mgxm/135772ce-edd7-4f1e-b2b0-78ab7f6d0085/haiku.png", "https://replicate.delivery/mgxm/769d5dda-5519-4be4-a1ae-23326c31648e/haiku.png", "https://replicate.delivery/mgxm/315dd421-51db-4c2c-a61a-074a66cd16d4/haiku.png", "https://replicate.delivery/mgxm/dca5fee8-f3cc-4b6d-bc02-02515615cb62/haiku.png", "https://replicate.delivery/mgxm/75b6af9a-3363-489b-8940-aea9f8b276fb/haiku.png", "https://replicate.delivery/mgxm/e32a4fe3-48e4-4613-80ad-84e2ba95131b/haiku.png" ], "started_at": "2022-03-12T03:57:31.810170Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/ervyk6wghbgpjhx5maafp4iccy", "cancel": "https://api.replicate.com/v1/predictions/ervyk6wghbgpjhx5maafp4iccy/cancel" }, "version": "edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149" }
Generated inPrediction
zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149IDrft6m6m3zna5zlhtfikcpvmb3yStatusSucceededSourceWebHardware–Total durationCreatedInput
- sleep
- 0.1
{ "sleep": 0.1 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", { input: { sleep: 0.1 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", input={ "sleep": 0.1 } ) # The zeke/haiku-progressive-image 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/zeke/haiku-progressive-image/api#output-schema print(item)
To learn more, take a look at the guide on getting started with Python.
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "zeke/haiku-progressive-image:edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149", "input": { "sleep": 0.1 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-03-12T03:57:54.219606Z", "created_at": "2022-03-12T03:57:48.604305Z", "data_removed": false, "error": null, "id": "rft6m6m3zna5zlhtfikcpvmb3y", "input": { "sleep": 0.1 }, "logs": null, "metrics": { "predict_time": 5.467007, "total_time": 5.615301 }, "output": [ "https://replicate.delivery/mgxm/5077b603-07f1-4318-bc2d-44d7ff19d19c/haiku.png", "https://replicate.delivery/mgxm/61c64d69-5633-4ebb-8fef-b49f22fa9703/haiku.png", "https://replicate.delivery/mgxm/4b0fc52a-eb0f-4c8e-a1f9-b82cee43c344/haiku.png", "https://replicate.delivery/mgxm/9c3c1406-fc74-464e-b68c-891173c129d4/haiku.png", "https://replicate.delivery/mgxm/968e1a0e-ba96-472b-be94-14ae0fc05c85/haiku.png", "https://replicate.delivery/mgxm/045938c9-e094-4de4-81be-d59cd96d7c9c/haiku.png", "https://replicate.delivery/mgxm/3d113adf-f2f0-4df8-8907-9c532ba3342e/haiku.png", "https://replicate.delivery/mgxm/6e277ed1-e43d-4b4c-8007-39561aa72145/haiku.png", "https://replicate.delivery/mgxm/b84ade38-d941-41c7-90dc-eaa08aba4b80/haiku.png", "https://replicate.delivery/mgxm/1845017a-ffdc-4f42-b624-091993eb4d18/haiku.png" ], "started_at": "2022-03-12T03:57:48.752599Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/rft6m6m3zna5zlhtfikcpvmb3y", "cancel": "https://api.replicate.com/v1/predictions/rft6m6m3zna5zlhtfikcpvmb3y/cancel" }, "version": "edfd14dd31e0d6550528d82c4f61f6988d710ba8920fc2021c3888686012c149" }
Generated inPrediction
zeke/haiku-progressive-image:f1973a38f17fef0342672a40f80ae79695fdda735a1a9faa49c94f9dbf15b8c3IDf4jupgdhs5d6pk2huwhyseeu4aStatusSucceededSourceWebHardware–Total durationCreatedInput
- sleep
- 0.1
{ "sleep": 0.1 }
Install Replicate’s Node.js client library:npm install replicate
Import and set up the client:import Replicate from "replicate"; const replicate = new Replicate({ auth: process.env.REPLICATE_API_TOKEN, });
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
const output = await replicate.run( "zeke/haiku-progressive-image:f1973a38f17fef0342672a40f80ae79695fdda735a1a9faa49c94f9dbf15b8c3", { input: { sleep: 0.1 } } ); // To access the file URL: console.log(output[0].url()); //=> "http://example.com" // To write the file to disk: fs.writeFile("my-image.png", output[0]);
To learn more, take a look at the guide on getting started with Node.js.
Install Replicate’s Python client library:pip install replicate
Import the client:import replicate
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
output = replicate.run( "zeke/haiku-progressive-image:f1973a38f17fef0342672a40f80ae79695fdda735a1a9faa49c94f9dbf15b8c3", input={ "sleep": 0.1 } ) # The zeke/haiku-progressive-image 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/zeke/haiku-progressive-image/api#output-schema print(item)
To learn more, take a look at the guide on getting started with Python.
Run zeke/haiku-progressive-image using Replicate’s API. Check out the model's schema for an overview of inputs and outputs.
curl -s -X POST \ -H "Authorization: Bearer $REPLICATE_API_TOKEN" \ -H "Content-Type: application/json" \ -H "Prefer: wait" \ -d $'{ "version": "zeke/haiku-progressive-image:f1973a38f17fef0342672a40f80ae79695fdda735a1a9faa49c94f9dbf15b8c3", "input": { "sleep": 0.1 } }' \ https://api.replicate.com/v1/predictions
To learn more, take a look at Replicate’s HTTP API reference docs.
Output
{ "completed_at": "2022-03-12T04:19:02.987987Z", "created_at": "2022-03-12T04:18:44.171566Z", "data_removed": false, "error": null, "id": "f4jupgdhs5d6pk2huwhyseeu4a", "input": { "sleep": 0.1 }, "logs": null, "metrics": { "predict_time": 15.688604, "total_time": 18.816421 }, "output": [ "https://replicate.delivery/mgxm/1dcb446a-4c3a-43ec-bc35-777e5ee25ca2/haiku.png", "https://replicate.delivery/mgxm/ad95a3d5-0f49-435d-bc8d-89a488d04fe1/haiku.png", "https://replicate.delivery/mgxm/67b6d71a-63d9-4e4f-95c5-829144aa6ec7/haiku.png", "https://replicate.delivery/mgxm/acd0837f-bdcc-4933-b578-ab8c07dcc384/haiku.png", "https://replicate.delivery/mgxm/45527811-c72d-406b-8796-747d3661e481/haiku.png", "https://replicate.delivery/mgxm/86f68666-be90-44cb-b654-566373f97de8/haiku.png", "https://replicate.delivery/mgxm/a41ea2cc-ba81-4013-8faf-c0a556755ed1/haiku.png" ], "started_at": "2022-03-12T04:18:47.299383Z", "status": "succeeded", "urls": { "get": "https://api.replicate.com/v1/predictions/f4jupgdhs5d6pk2huwhyseeu4a", "cancel": "https://api.replicate.com/v1/predictions/f4jupgdhs5d6pk2huwhyseeu4a/cancel" }, "version": "f1973a38f17fef0342672a40f80ae79695fdda735a1a9faa49c94f9dbf15b8c3" }
Generated in
Want to make some of these yourself?
Run this model