1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
//! An Unofficial Rust client for [Replicate](https://replicate.com). Provides a type-safe interface by deserializing API responses into Rust structs.
//!
//! ## Getting Started
//!
//! Add `replicate_rust` to `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! replicate-rust = "0.0.5"
//! ```
//!
//! Grab your token from [replicate.com/account](https://replicate.com/account) and set it as an environment variable:
//!
//! ```sh
//! export REPLICATE_API_TOKEN=<your token>
//! ```
//!
//! Here's an example using `replicate_rust` to run a model:
//!
//! ```rust
//! use replicate_rust::{config::Config, Replicate, errors::ReplicateError};
//!
//! fn main() -> Result<(), ReplicateError> {
//! let config = Config::default();
//! // Instead of using the default config ( which reads API token from env variable), you can also set the token directly:
//! // let config = Config {
//! // auth: String::from("REPLICATE_API_TOKEN"),
//! // ..Default::default()
//! // };
//!
//! let replicate = Replicate::new(config);
//!
//! // Construct the inputs.
//! let mut inputs = std::collections::HashMap::new();
//! inputs.insert("prompt", "a 19th century portrait of a wombat gentleman");
//!
//! let version = "stability-ai/stable-diffusion:27b93a2413e7f36cd83da926f3656280b2931564ff050bf9575f1fdf9bcd7478";
//!
//! // Run the model.
//! let result = replicate.run(version, inputs)?;
//!
//! // Print the result.
//! println!("{:?}", result.output);
//! // Some(Array [String("https://pbxt.replicate.delivery/QLDGe2rXuIQ9ByMViQEXrYCkKfDi9I3YWAzPwWsDZWMXeN7iA/out-0.png")])```
//!
//! Ok(())
//! }
//! ```
//!
//! ## Usage
//!
//! See the [reference docs](https://docs.rs/replicate-rust/) for detailed API documentation.
//!
//! ## Examples
//!
//! - Run a model in the background:
//! ```rust
//! // Construct the inputs.
//! let mut inputs = std::collections::HashMap::new();
//! inputs.insert("prompt", "a 19th century portrait of a wombat gentleman");
//!
//! let version = "stability-ai/stable-diffusion:27b93a2413e7f36cd83da926f3656280b2931564ff050bf9575f1fdf9bcd7478";
//!
//! // Run the model.
//! let mut prediction = replicate.predictions.create(version, inputs)?;
//!
//! println!("{:?}", prediction.status);
//! // 'starting'
//!
//! prediction.reload()?;
//! println!("{:?}", prediction.status);
//! // 'processing'
//!
//! println!("{:?}", prediction.logs);
//! // Some("Using seed: 3599
//! // 0%| | 0/50 [00:00<?, ?it/s]
//! // 4%|▍ | 2/50 [00:00<00:04, 10.00it/s]
//! // 8%|▊ | 4/50 [00:00<00:03, 11.56it/s]
//!
//!
//! let prediction = prediction.wait()?;
//!
//! println!("{:?}", prediction.status);
//! // 'succeeded'
//!
//! println!("{:?}", prediction.output);
// ! // Some(Array [String("https://pbxt.replicate.delivery/QLDGe2rXuIQ9ByMViQEXrYCkKfDi9I3YWAzPwWsDZWMXeN7iA/out-0.png")])
//! ```
//!
//! - Cancel a prediction:
//! ```rust
//! // Construct the inputs.
//! let mut inputs = std::collections::HashMap::new();
//! inputs.insert("prompt", "a 19th century portrait of a wombat gentleman");
//!
//! let version = "stability-ai/stable-diffusion:27b93a2413e7f36cd83da926f3656280b2931564ff050bf9575f1fdf9bcd7478";
//!
//! // Run the model.
//! let mut prediction = replicate.predictions.create(version, inputs)?;
//!
//! println!("{:?}", prediction.status);
//! // 'starting'
//!
//! prediction.cancel()?;
//!
//! prediction.reload()?;
//!
//! println!("{:?}", prediction.status);
//! // 'cancelled'
//! ```
//!
//! - List predictions:
//! ```rust
//! let predictions = replicate.predictions.list()?;
//! println!("{:?}", predictions);
//! // ListPredictions { ... }
//! ```
//!
//! - Get model Information:
//! ```rust
//! let model = replicate.models.get("replicate", "hello-world")?;
//! println!("{:?}", model);
//! // GetModel { ... }
//! ```
//!
//! - Get Versions List:
//! ```rust
//! let versions = replicate.models.versions.list("replicate", "hello-world")?;
//! println!("{:?}", versions);
//! // ListModelVersions { ... }
//! ```
//!
//! - Get Model Version Information:
//! ```rust
//! let model = replicate.models.versions.get("kvfrans",
//! "clipdraw",
//! "5797a99edc939ea0e9242d5e8c9cb3bc7d125b1eac21bda852e5cb79ede2cd9b",)?;
//! println!("{:?}", model);
//! // GetModelVersion { ... }
//! ```
//!
//! - Get Collection Information:
//! ```rust
//! let collection = replicate.collections.get("audio-generation")?;
//! println!("{:?}", collection);
//! // GetCollectionModels { ... }//! ```
//! ```
//!
//! - Get Collection Lists:
//! ```rust
//! let collections = replicate.collections.list()?;
//! println!("{:?}", collections);
//! // ListCollectionModels { ... }
//! ```
//!
use HashMap;
use GetPrediction;
use Collection;
use Config;
use ReplicateError;
use Model;
use Prediction;
use Training;
/// Rust Client for interacting with the [Replicate API](https://replicate.com/docs/api/). Currently supports the following endpoints:
/// * [Predictions](https://replicate.com/docs/reference/http#predictions.create)
/// * [Models](https://replicate.com/docs/reference/http#models.get)
/// * [Trainings](https://replicate.com/docs/reference/http#trainings.create)
/// * [Collections](https://replicate.com/docs/reference/http#collections.get)
/// Rust Client for interacting with the [Replicate API](https://replicate.com/docs/api/).