-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path__init__.py
More file actions
270 lines (234 loc) · 8.42 KB
/
__init__.py
File metadata and controls
270 lines (234 loc) · 8.42 KB
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
import os
from typing import Dict, Union
from .audio import AsyncAudio, Audio
from .classification import AsyncClassification, Classification
from .embedding import AsyncEmbedding, Embedding
from .embedding_v2 import AsyncEmbeddingV2, EmbeddingV2
from .exceptions import JigsawStackError
from .image_generation import AsyncImageGeneration, ImageGeneration
from .prediction import AsyncPrediction, Prediction
from .prompt_engine import AsyncPromptEngine, PromptEngine
from .search import Search
from .sentiment import AsyncSentiment, Sentiment
from .sql import SQL, AsyncSQL
from .store import AsyncStore, Store
from .summary import AsyncSummary, Summary
from .translate import AsyncTranslate, Translate
from .validate import AsyncValidate, Validate
from .vision import AsyncVision, Vision
from .web import AsyncWeb, Web
class JigsawStack:
audio: Audio
vision: Vision
image_generation: ImageGeneration
file: Store
web: Web
search: Search
classification: Classification
prompt_engine: PromptEngine
api_key: str
api_url: str
headers: Dict[str, str]
# disable_request_logging: bool
def __init__(
self,
api_key: Union[str, None] = None,
api_url: Union[str, None] = None,
# disable_request_logging: Union[bool, None] = None,
headers: Union[Dict[str, str], None] = None,
) -> None:
if api_key is None:
api_key = os.environ.get("JIGSAWSTACK_API_KEY")
if api_key is None:
raise ValueError(
"The api_key client option must be set either by passing api_key to the client or by setting the JIGSAWSTACK_API_KEY environment variable"
)
if api_url is None:
api_url = os.environ.get("JIGSAWSTACK_API_URL")
if api_url is None:
api_url = "https://api.jigsawstack.com/"
self.api_key = api_key
self.api_url = api_url
self.headers = headers or {}
disable_request_logging = self.headers.get("x-jigsaw-no-request-log")
self.audio = Audio(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.web = Web(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.sentiment = Sentiment(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).analyze
self.validate = Validate(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.summary = Summary(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).summarize
self.vision = Vision(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.prediction = Prediction(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).predict
self.text_to_sql = SQL(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).text_to_sql
self.store = Store(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.translate = Translate(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.embedding = Embedding(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).execute
self.embeddingV2 = EmbeddingV2(
api_key=api_key,
api_url=api_url + "/v2",
disable_request_logging=disable_request_logging,
).execute
self.image_generation = ImageGeneration(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).image_generation
self.classification = Classification(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).classify
self.prompt_engine = PromptEngine(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
class AsyncJigsawStack:
validate: AsyncValidate
web: AsyncWeb
audio: AsyncAudio
vision: AsyncVision
image_generation: AsyncImageGeneration
store: AsyncStore
prompt_engine: AsyncPromptEngine
api_key: str
api_url: str
disable_request_logging: bool
def __init__(
self,
api_key: Union[str, None] = None,
api_url: Union[str, None] = None,
disable_request_logging: Union[bool, None] = None,
) -> None:
if api_key is None:
api_key = os.environ.get("JIGSAWSTACK_API_KEY")
if api_key is None:
raise ValueError(
"The api_key client option must be set either by passing api_key to the client or by setting the JIGSAWSTACK_API_KEY environment variable"
)
if api_url is None:
api_url = os.environ.get("JIGSAWSTACK_API_URL")
if api_url is None:
api_url = "https://api.jigsawstack.com/"
self.api_key = api_key
self.api_url = api_url
self.web = AsyncWeb(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.validate = AsyncValidate(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.audio = AsyncAudio(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.vision = AsyncVision(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.store = AsyncStore(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.summary = AsyncSummary(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).summarize
self.prediction = AsyncPrediction(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).predict
self.text_to_sql = AsyncSQL(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).text_to_sql
self.sentiment = AsyncSentiment(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).analyze
self.translate = AsyncTranslate(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
self.embedding = AsyncEmbedding(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).execute
self.embeddingV2 = AsyncEmbeddingV2(
api_key=api_key,
api_url=api_url + "/v2",
disable_request_logging=disable_request_logging,
).execute
self.image_generation = AsyncImageGeneration(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).image_generation
self.classification = AsyncClassification(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
).classify
self.prompt_engine = AsyncPromptEngine(
api_key=api_key,
api_url=api_url + "/v1",
disable_request_logging=disable_request_logging,
)
# Create a global instance of the Web class
__all__ = ["JigsawStack", "Search", "JigsawStackError", "AsyncJigsawStack"]