Skip to content

Commit e15b397

Browse files
zekesuperhighfives
andcommitted
document typescript usage
tidy up example Co-Authored-By: Charlie Gleason <[email protected]>
1 parent 02b06d4 commit e15b397

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

README.md

+26
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,32 @@ const output = await replicate.run(model, { input });
112112
> upload the file to your own storage provider
113113
> and pass a publicly accessible URL.
114114
115+
## TypeScript usage
116+
117+
This library exports TypeScript definitions. You can import them like this:
118+
119+
```ts
120+
import Replicate, { Prediction } from 'replicate';
121+
```
122+
123+
Here's an example that uses the `Prediction` type with a custom `onProgress` callback:
124+
125+
```ts
126+
import Replicate, { Prediction } from 'replicate';
127+
128+
const replicate = new Replicate();
129+
const model = "black-forest-labs/flux-schnell";
130+
const prompt = "a 19th century portrait of a raccoon gentleman wearing a suit";
131+
const onProgress = (prediction: Prediction) => {
132+
console.log({ prediction });
133+
};
134+
135+
const output = await replicate.run(model, { input: { prompt } }, onProgress)
136+
console.log({ output })
137+
```
138+
139+
See the full list of exported types in [index.d.ts](./index.d.ts).
140+
115141
### Webhooks
116142

117143
Webhooks provide real-time updates about your prediction. Specify an endpoint when you create a prediction, and Replicate will send HTTP POST requests to that URL when the prediction is created, updated, and finished.

0 commit comments

Comments
 (0)