We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
use
1 parent 20a37d1 commit bae5dc8Copy full SHA for bae5dc8
replicate/__init__.py
@@ -3,6 +3,26 @@
3
from replicate.pagination import paginate as _paginate
4
from replicate.use import use
5
6
+__all__ = [
7
+ "Client",
8
+ "use",
9
+ "run",
10
+ "async_run",
11
+ "stream",
12
+ "async_stream",
13
+ "paginate",
14
+ "async_paginate",
15
+ "collections",
16
+ "deployments",
17
+ "files",
18
+ "hardware",
19
+ "models",
20
+ "predictions",
21
+ "trainings",
22
+ "webhooks",
23
+ "default_client",
24
+]
25
+
26
default_client = Client()
27
28
run = default_client.run
0 commit comments