worqhat 3.10.0__py3-none-any.whl → 4.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (92) hide show
  1. worqhat/__init__.py +8 -89
  2. worqhat/client.py +62 -0
  3. worqhat/exceptions.py +43 -0
  4. worqhat/http_client.py +171 -0
  5. worqhat/py.typed +1 -0
  6. worqhat/resources/__init__.py +5 -59
  7. worqhat/resources/database.py +293 -0
  8. worqhat/resources/flows.py +61 -409
  9. worqhat/resources/storage.py +41 -431
  10. worqhat-4.1.0.dist-info/METADATA +538 -0
  11. worqhat-4.1.0.dist-info/RECORD +13 -0
  12. {worqhat-3.10.0.dist-info → worqhat-4.1.0.dist-info}/WHEEL +2 -1
  13. worqhat-4.1.0.dist-info/top_level.txt +1 -0
  14. worqhat/_base_client.py +0 -1995
  15. worqhat/_client.py +0 -484
  16. worqhat/_compat.py +0 -219
  17. worqhat/_constants.py +0 -14
  18. worqhat/_exceptions.py +0 -108
  19. worqhat/_files.py +0 -123
  20. worqhat/_models.py +0 -835
  21. worqhat/_qs.py +0 -150
  22. worqhat/_resource.py +0 -43
  23. worqhat/_response.py +0 -830
  24. worqhat/_streaming.py +0 -333
  25. worqhat/_types.py +0 -260
  26. worqhat/_utils/__init__.py +0 -64
  27. worqhat/_utils/_compat.py +0 -45
  28. worqhat/_utils/_datetime_parse.py +0 -136
  29. worqhat/_utils/_logs.py +0 -25
  30. worqhat/_utils/_proxy.py +0 -65
  31. worqhat/_utils/_reflection.py +0 -42
  32. worqhat/_utils/_resources_proxy.py +0 -24
  33. worqhat/_utils/_streams.py +0 -12
  34. worqhat/_utils/_sync.py +0 -86
  35. worqhat/_utils/_transform.py +0 -457
  36. worqhat/_utils/_typing.py +0 -156
  37. worqhat/_utils/_utils.py +0 -421
  38. worqhat/_version.py +0 -4
  39. worqhat/lib/.keep +0 -4
  40. worqhat/resources/db/__init__.py +0 -33
  41. worqhat/resources/db/db.py +0 -1650
  42. worqhat/resources/db/tables.py +0 -389
  43. worqhat/resources/health.py +0 -143
  44. worqhat/types/__init__.py +0 -44
  45. worqhat/types/db/__init__.py +0 -10
  46. worqhat/types/db/table_get_row_count_params.py +0 -12
  47. worqhat/types/db/table_get_row_count_response.py +0 -15
  48. worqhat/types/db/table_list_params.py +0 -15
  49. worqhat/types/db/table_list_response.py +0 -26
  50. worqhat/types/db/table_retrieve_schema_params.py +0 -12
  51. worqhat/types/db/table_retrieve_schema_response.py +0 -29
  52. worqhat/types/db_cluster_params.py +0 -27
  53. worqhat/types/db_cluster_response.py +0 -44
  54. worqhat/types/db_delete_records_params.py +0 -19
  55. worqhat/types/db_delete_records_response.py +0 -18
  56. worqhat/types/db_detect_anomalies_params.py +0 -24
  57. worqhat/types/db_detect_anomalies_response.py +0 -50
  58. worqhat/types/db_execute_batch_params.py +0 -36
  59. worqhat/types/db_execute_batch_response.py +0 -27
  60. worqhat/types/db_execute_query_params.py +0 -24
  61. worqhat/types/db_execute_query_response.py +0 -21
  62. worqhat/types/db_find_similar_params.py +0 -31
  63. worqhat/types/db_find_similar_response.py +0 -30
  64. worqhat/types/db_hybrid_search_params.py +0 -32
  65. worqhat/types/db_hybrid_search_response.py +0 -48
  66. worqhat/types/db_insert_record_params.py +0 -19
  67. worqhat/types/db_insert_record_response.py +0 -15
  68. worqhat/types/db_process_nl_query_params.py +0 -19
  69. worqhat/types/db_process_nl_query_response.py +0 -18
  70. worqhat/types/db_recommend_params.py +0 -33
  71. worqhat/types/db_recommend_response.py +0 -36
  72. worqhat/types/db_semantic_search_params.py +0 -33
  73. worqhat/types/db_semantic_search_response.py +0 -36
  74. worqhat/types/db_update_records_params.py +0 -22
  75. worqhat/types/db_update_records_response.py +0 -18
  76. worqhat/types/flow_get_metrics_params.py +0 -25
  77. worqhat/types/flow_get_metrics_response.py +0 -55
  78. worqhat/types/flow_trigger_with_file_params.py +0 -17
  79. worqhat/types/flow_trigger_with_file_response.py +0 -18
  80. worqhat/types/flow_trigger_with_payload_params.py +0 -13
  81. worqhat/types/flow_trigger_with_payload_response.py +0 -20
  82. worqhat/types/get_server_info_response.py +0 -15
  83. worqhat/types/health_check_response.py +0 -33
  84. worqhat/types/storage_delete_file_by_id_response.py +0 -18
  85. worqhat/types/storage_retrieve_file_by_id_response.py +0 -33
  86. worqhat/types/storage_retrieve_file_by_path_params.py +0 -12
  87. worqhat/types/storage_retrieve_file_by_path_response.py +0 -33
  88. worqhat/types/storage_upload_file_params.py +0 -17
  89. worqhat/types/storage_upload_file_response.py +0 -33
  90. worqhat-3.10.0.dist-info/METADATA +0 -432
  91. worqhat-3.10.0.dist-info/RECORD +0 -85
  92. worqhat-3.10.0.dist-info/licenses/LICENSE +0 -201
@@ -1,432 +0,0 @@
1
- Metadata-Version: 2.3
2
- Name: worqhat
3
- Version: 3.10.0
4
- Summary: The official Python library for the worqhat API
5
- Project-URL: Homepage, https://github.com/WorqHat/worqhat-python-sdk
6
- Project-URL: Repository, https://github.com/WorqHat/worqhat-python-sdk
7
- Author-email: Worqhat <support@worqhat.com>
8
- License: Apache-2.0
9
- Classifier: Intended Audience :: Developers
10
- Classifier: License :: OSI Approved :: Apache Software License
11
- Classifier: Operating System :: MacOS
12
- Classifier: Operating System :: Microsoft :: Windows
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Operating System :: POSIX
15
- Classifier: Operating System :: POSIX :: Linux
16
- Classifier: Programming Language :: Python :: 3.8
17
- Classifier: Programming Language :: Python :: 3.9
18
- Classifier: Programming Language :: Python :: 3.10
19
- Classifier: Programming Language :: Python :: 3.11
20
- Classifier: Programming Language :: Python :: 3.12
21
- Classifier: Programming Language :: Python :: 3.13
22
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
- Classifier: Typing :: Typed
24
- Requires-Python: >=3.8
25
- Requires-Dist: anyio<5,>=3.5.0
26
- Requires-Dist: distro<2,>=1.7.0
27
- Requires-Dist: httpx<1,>=0.23.0
28
- Requires-Dist: pydantic<3,>=1.9.0
29
- Requires-Dist: sniffio
30
- Requires-Dist: typing-extensions<5,>=4.10
31
- Provides-Extra: aiohttp
32
- Requires-Dist: aiohttp; extra == 'aiohttp'
33
- Requires-Dist: httpx-aiohttp>=0.1.9; extra == 'aiohttp'
34
- Description-Content-Type: text/markdown
35
-
36
- # Worqhat Python API library
37
-
38
- <!-- prettier-ignore -->
39
- [![PyPI version](https://img.shields.io/pypi/v/worqhat.svg?label=pypi%20(stable))](https://pypi.org/project/worqhat/)
40
-
41
- The Worqhat Python library provides convenient access to the Worqhat REST API from any Python 3.8+
42
- application. The library includes type definitions for all request params and response fields,
43
- and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
44
-
45
- It is generated with [Stainless](https://www.stainless.com/).
46
-
47
- ## Documentation
48
-
49
- The REST API documentation can be found on [worqhat.com](https://worqhat.com/support). The full API of this library can be found in [api.md](https://github.com/WorqHat/worqhat-python-sdk/tree/main/api.md).
50
-
51
- ## Installation
52
-
53
- ```sh
54
- # install from PyPI
55
- pip install worqhat
56
- ```
57
-
58
- ## Usage
59
-
60
- The full API of this library can be found in [api.md](https://github.com/WorqHat/worqhat-python-sdk/tree/main/api.md).
61
-
62
- ```python
63
- import os
64
- from worqhat import Worqhat
65
-
66
- client = Worqhat(
67
- api_key=os.environ.get("WORQHAT_API_KEY"), # This is the default and can be omitted
68
- )
69
-
70
- response = client.db.execute_query(
71
- query="REPLACE_ME",
72
- )
73
- print(response.data)
74
- ```
75
-
76
- While you can provide an `api_key` keyword argument,
77
- we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
78
- to add `WORQHAT_API_KEY="My API Key"` to your `.env` file
79
- so that your API Key is not stored in source control.
80
-
81
- ## Async usage
82
-
83
- Simply import `AsyncWorqhat` instead of `Worqhat` and use `await` with each API call:
84
-
85
- ```python
86
- import os
87
- import asyncio
88
- from worqhat import AsyncWorqhat
89
-
90
- client = AsyncWorqhat(
91
- api_key=os.environ.get("WORQHAT_API_KEY"), # This is the default and can be omitted
92
- )
93
-
94
-
95
- async def main() -> None:
96
- response = await client.db.execute_query(
97
- query="REPLACE_ME",
98
- )
99
- print(response.data)
100
-
101
-
102
- asyncio.run(main())
103
- ```
104
-
105
- Functionality between the synchronous and asynchronous clients is otherwise identical.
106
-
107
- ### With aiohttp
108
-
109
- By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
110
-
111
- You can enable this by installing `aiohttp`:
112
-
113
- ```sh
114
- # install from PyPI
115
- pip install worqhat[aiohttp]
116
- ```
117
-
118
- Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
119
-
120
- ```python
121
- import asyncio
122
- from worqhat import DefaultAioHttpClient
123
- from worqhat import AsyncWorqhat
124
-
125
-
126
- async def main() -> None:
127
- async with AsyncWorqhat(
128
- api_key="My API Key",
129
- http_client=DefaultAioHttpClient(),
130
- ) as client:
131
- response = await client.db.execute_query(
132
- query="REPLACE_ME",
133
- )
134
- print(response.data)
135
-
136
-
137
- asyncio.run(main())
138
- ```
139
-
140
- ## Using types
141
-
142
- Nested request parameters are [TypedDicts](https://docs.python.org/3/library/typing.html#typing.TypedDict). Responses are [Pydantic models](https://docs.pydantic.dev) which also provide helper methods for things like:
143
-
144
- - Serializing back into JSON, `model.to_json()`
145
- - Converting to a dictionary, `model.to_dict()`
146
-
147
- Typed requests and responses provide autocomplete and documentation within your editor. If you would like to see type errors in VS Code to help catch bugs earlier, set `python.analysis.typeCheckingMode` to `basic`.
148
-
149
- ## File uploads
150
-
151
- Request parameters that correspond to file uploads can be passed as `bytes`, or a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance or a tuple of `(filename, contents, media type)`.
152
-
153
- ```python
154
- from pathlib import Path
155
- from worqhat import Worqhat
156
-
157
- client = Worqhat()
158
-
159
- client.flows.trigger_with_file(
160
- flow_id="f825ab82-371f-40cb-9bed-b325531ead4a",
161
- file=Path("/path/to/file"),
162
- )
163
- ```
164
-
165
- The async client uses the exact same interface. If you pass a [`PathLike`](https://docs.python.org/3/library/os.html#os.PathLike) instance, the file contents will be read asynchronously automatically.
166
-
167
- ## Handling errors
168
-
169
- When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `worqhat.APIConnectionError` is raised.
170
-
171
- When the API returns a non-success status code (that is, 4xx or 5xx
172
- response), a subclass of `worqhat.APIStatusError` is raised, containing `status_code` and `response` properties.
173
-
174
- All errors inherit from `worqhat.APIError`.
175
-
176
- ```python
177
- import worqhat
178
- from worqhat import Worqhat
179
-
180
- client = Worqhat()
181
-
182
- try:
183
- client.db.execute_query(
184
- query="REPLACE_ME",
185
- )
186
- except worqhat.APIConnectionError as e:
187
- print("The server could not be reached")
188
- print(e.__cause__) # an underlying Exception, likely raised within httpx.
189
- except worqhat.RateLimitError as e:
190
- print("A 429 status code was received; we should back off a bit.")
191
- except worqhat.APIStatusError as e:
192
- print("Another non-200-range status code was received")
193
- print(e.status_code)
194
- print(e.response)
195
- ```
196
-
197
- Error codes are as follows:
198
-
199
- | Status Code | Error Type |
200
- | ----------- | -------------------------- |
201
- | 400 | `BadRequestError` |
202
- | 401 | `AuthenticationError` |
203
- | 403 | `PermissionDeniedError` |
204
- | 404 | `NotFoundError` |
205
- | 422 | `UnprocessableEntityError` |
206
- | 429 | `RateLimitError` |
207
- | >=500 | `InternalServerError` |
208
- | N/A | `APIConnectionError` |
209
-
210
- ### Retries
211
-
212
- Certain errors are automatically retried 2 times by default, with a short exponential backoff.
213
- Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
214
- 429 Rate Limit, and >=500 Internal errors are all retried by default.
215
-
216
- You can use the `max_retries` option to configure or disable retry settings:
217
-
218
- ```python
219
- from worqhat import Worqhat
220
-
221
- # Configure the default for all requests:
222
- client = Worqhat(
223
- # default is 2
224
- max_retries=0,
225
- )
226
-
227
- # Or, configure per-request:
228
- client.with_options(max_retries=5).db.execute_query(
229
- query="REPLACE_ME",
230
- )
231
- ```
232
-
233
- ### Timeouts
234
-
235
- By default requests time out after 1 minute. You can configure this with a `timeout` option,
236
- which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
237
-
238
- ```python
239
- from worqhat import Worqhat
240
-
241
- # Configure the default for all requests:
242
- client = Worqhat(
243
- # 20 seconds (default is 1 minute)
244
- timeout=20.0,
245
- )
246
-
247
- # More granular control:
248
- client = Worqhat(
249
- timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
250
- )
251
-
252
- # Override per-request:
253
- client.with_options(timeout=5.0).db.execute_query(
254
- query="REPLACE_ME",
255
- )
256
- ```
257
-
258
- On timeout, an `APITimeoutError` is thrown.
259
-
260
- Note that requests that time out are [retried twice by default](https://github.com/WorqHat/worqhat-python-sdk/tree/main/#retries).
261
-
262
- ## Advanced
263
-
264
- ### Logging
265
-
266
- We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
267
-
268
- You can enable logging by setting the environment variable `WORQHAT_LOG` to `info`.
269
-
270
- ```shell
271
- $ export WORQHAT_LOG=info
272
- ```
273
-
274
- Or to `debug` for more verbose logging.
275
-
276
- ### How to tell whether `None` means `null` or missing
277
-
278
- In an API response, a field may be explicitly `null`, or missing entirely; in either case, its value is `None` in this library. You can differentiate the two cases with `.model_fields_set`:
279
-
280
- ```py
281
- if response.my_field is None:
282
- if 'my_field' not in response.model_fields_set:
283
- print('Got json like {}, without a "my_field" key present at all.')
284
- else:
285
- print('Got json like {"my_field": null}.')
286
- ```
287
-
288
- ### Accessing raw response data (e.g. headers)
289
-
290
- The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
291
-
292
- ```py
293
- from worqhat import Worqhat
294
-
295
- client = Worqhat()
296
- response = client.db.with_raw_response.execute_query(
297
- query="REPLACE_ME",
298
- )
299
- print(response.headers.get('X-My-Header'))
300
-
301
- db = response.parse() # get the object that `db.execute_query()` would have returned
302
- print(db.data)
303
- ```
304
-
305
- These methods return an [`APIResponse`](https://github.com/WorqHat/worqhat-python-sdk/tree/main/src/worqhat/_response.py) object.
306
-
307
- The async client returns an [`AsyncAPIResponse`](https://github.com/WorqHat/worqhat-python-sdk/tree/main/src/worqhat/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
308
-
309
- #### `.with_streaming_response`
310
-
311
- The above interface eagerly reads the full response body when you make the request, which may not always be what you want.
312
-
313
- To stream the response body, use `.with_streaming_response` instead, which requires a context manager and only reads the response body once you call `.read()`, `.text()`, `.json()`, `.iter_bytes()`, `.iter_text()`, `.iter_lines()` or `.parse()`. In the async client, these are async methods.
314
-
315
- ```python
316
- with client.db.with_streaming_response.execute_query(
317
- query="REPLACE_ME",
318
- ) as response:
319
- print(response.headers.get("X-My-Header"))
320
-
321
- for line in response.iter_lines():
322
- print(line)
323
- ```
324
-
325
- The context manager is required so that the response will reliably be closed.
326
-
327
- ### Making custom/undocumented requests
328
-
329
- This library is typed for convenient access to the documented API.
330
-
331
- If you need to access undocumented endpoints, params, or response properties, the library can still be used.
332
-
333
- #### Undocumented endpoints
334
-
335
- To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
336
- http verbs. Options on the client will be respected (such as retries) when making this request.
337
-
338
- ```py
339
- import httpx
340
-
341
- response = client.post(
342
- "/foo",
343
- cast_to=httpx.Response,
344
- body={"my_param": True},
345
- )
346
-
347
- print(response.headers.get("x-foo"))
348
- ```
349
-
350
- #### Undocumented request params
351
-
352
- If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
353
- options.
354
-
355
- #### Undocumented response properties
356
-
357
- To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
358
- can also get all the extra fields on the Pydantic model as a dict with
359
- [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
360
-
361
- ### Configuring the HTTP client
362
-
363
- You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
364
-
365
- - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
366
- - Custom [transports](https://www.python-httpx.org/advanced/transports/)
367
- - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
368
-
369
- ```python
370
- import httpx
371
- from worqhat import Worqhat, DefaultHttpxClient
372
-
373
- client = Worqhat(
374
- # Or use the `WORQHAT_BASE_URL` env var
375
- base_url="http://my.test.server.example.com:8083",
376
- http_client=DefaultHttpxClient(
377
- proxy="http://my.test.proxy.example.com",
378
- transport=httpx.HTTPTransport(local_address="0.0.0.0"),
379
- ),
380
- )
381
- ```
382
-
383
- You can also customize the client on a per-request basis by using `with_options()`:
384
-
385
- ```python
386
- client.with_options(http_client=DefaultHttpxClient(...))
387
- ```
388
-
389
- ### Managing HTTP resources
390
-
391
- By default the library closes underlying HTTP connections whenever the client is [garbage collected](https://docs.python.org/3/reference/datamodel.html#object.__del__). You can manually close the client using the `.close()` method if desired, or with a context manager that closes when exiting.
392
-
393
- ```py
394
- from worqhat import Worqhat
395
-
396
- with Worqhat() as client:
397
- # make requests here
398
- ...
399
-
400
- # HTTP client is now closed
401
- ```
402
-
403
- ## Versioning
404
-
405
- This package generally follows [SemVer](https://semver.org/spec/v2.0.0.html) conventions, though certain backwards-incompatible changes may be released as minor versions:
406
-
407
- 1. Changes that only affect static types, without breaking runtime behavior.
408
- 2. Changes to library internals which are technically public but not intended or documented for external use. _(Please open a GitHub issue to let us know if you are relying on such internals.)_
409
- 3. Changes that we do not expect to impact the vast majority of users in practice.
410
-
411
- We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
412
-
413
- We are keen for your feedback; please open an [issue](https://www.github.com/WorqHat/worqhat-python-sdk/issues) with questions, bugs, or suggestions.
414
-
415
- ### Determining the installed version
416
-
417
- If you've upgraded to the latest version but aren't seeing any new features you were expecting then your python environment is likely still using an older version.
418
-
419
- You can determine the version that is being used at runtime with:
420
-
421
- ```py
422
- import worqhat
423
- print(worqhat.__version__)
424
- ```
425
-
426
- ## Requirements
427
-
428
- Python 3.8 or higher.
429
-
430
- ## Contributing
431
-
432
- See [the contributing documentation](https://github.com/WorqHat/worqhat-python-sdk/tree/main/./CONTRIBUTING.md).
@@ -1,85 +0,0 @@
1
- worqhat/__init__.py,sha256=ycCt_XY4yHZZusG7P9qZl9JzhV7NlY12yQ_7wtvveF8,2633
2
- worqhat/_base_client.py,sha256=Hrs2OxsIt1EseR69nOOe3-BH8c2hrSt2PsL-C8zDwK8,67048
3
- worqhat/_client.py,sha256=NHh56eXQxMjlbNzFt6JlmbVb5SI4ksdT9uDbwkQGS4o,18725
4
- worqhat/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
- worqhat/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
- worqhat/_exceptions.py,sha256=n2QtRwhErTAw2JJQ8Vt95ZlTeJvve2qXF8B1Z6M_7Ao,3222
7
- worqhat/_files.py,sha256=Bmgx2fwiLeMSXBhC1tUenHcA1jqisBYZ5vPx9JwCc_w,3618
8
- worqhat/_models.py,sha256=lKnskYPONAWDvWo8tmbbVk7HmG7UOsI0Nve0vSMmkRc,30452
9
- worqhat/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
- worqhat/_resource.py,sha256=2r0Ilj0AtogNG1TdsG6biEPWD5Ihgf1hOE51PwMEpyQ,1106
11
- worqhat/_response.py,sha256=NBeCvMH3I_Zr6-Gp_8aE-S7TtNphvnw_gTlK53-lew0,28794
12
- worqhat/_streaming.py,sha256=h3n2sOPN_iuD2DUno9BKZt0wT_F7GRZHcotRI5yuI0s,10104
13
- worqhat/_types.py,sha256=l1lNsjBVeSVoY_E2oIAbky9t1SU9P81OAbrR8kRQ3o0,7237
14
- worqhat/_version.py,sha256=ZDzp7bzWimDDcW_tyV4AbLWLr0_H7i4a2zwiPQJP7d0,160
15
- worqhat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
- worqhat/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
- worqhat/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
- worqhat/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
- worqhat/_utils/_logs.py,sha256=cb3jsbICK0cXrlqMRi4y96MiJuqk5_rQy3ujWtoZTJU,777
20
- worqhat/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
21
- worqhat/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
- worqhat/_utils/_resources_proxy.py,sha256=KNhJsT2AQfFi4M_mmRtS0WAOH1Mq1ys8fLBhZfTKK-o,594
23
- worqhat/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
- worqhat/_utils/_sync.py,sha256=TpGLrrhRNWTJtODNE6Fup3_k7zrWm1j2RlirzBwre-0,2862
25
- worqhat/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
- worqhat/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
- worqhat/_utils/_utils.py,sha256=0dDqauUbVZEXV0NVl7Bwu904Wwo5eyFCZpQThhFNhyA,12253
28
- worqhat/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
- worqhat/resources/__init__.py,sha256=GyDgUSdn0F477kMOCjkdda11hOnk1dRCL0CG0qLJ1xs,1850
30
- worqhat/resources/flows.py,sha256=JNyKSZBRtXrl_ucxPROUuXrmvf-NrlTIf5rL_2R94JU,17628
31
- worqhat/resources/health.py,sha256=SVF65ZTfJgUcpDH8UG5rGcwBUe8EkW8NddiNk0mlDkk,5127
32
- worqhat/resources/storage.py,sha256=N-0MuCBHB-jPNZ58u0Te3xkX2w4dkwShpapvnBViTfI,18196
33
- worqhat/resources/db/__init__.py,sha256=FdA8sX7Z6SK0k4-VLZmagXnmjdqpcwcGQ5RU6K4jWeg,950
34
- worqhat/resources/db/db.py,sha256=Pllu8fDyQYTvNhxvkbKleE9gkO8_BnUS-vO3lvM4wIM,63555
35
- worqhat/resources/db/tables.py,sha256=F_vhzvifWc5nwe08m4S3dZ6qFs5sygRoBS1a0IYZMwk,14997
36
- worqhat/types/__init__.py,sha256=wHGjTTptL9Lj14t8G6dn3ZZVeDU5U0BSlwLtWAan6NM,3581
37
- worqhat/types/db_cluster_params.py,sha256=xPRrFsXvbX45P1B_rCrbanzJbABemwaN2yWWKHBGzTo,756
38
- worqhat/types/db_cluster_response.py,sha256=D5rFZYw46HqMAgvc9wQcE3PdmjJIK83hDj6yO2JC4KQ,1203
39
- worqhat/types/db_delete_records_params.py,sha256=OtHU2hQJEZAxOna4KXj3Vq94T67WRLOsqnFpPWVr87o,564
40
- worqhat/types/db_delete_records_response.py,sha256=x4RJZMKEK_yhdeD5m1k0segCRQecsQsEK2vtfs6PAoQ,434
41
- worqhat/types/db_detect_anomalies_params.py,sha256=6DFiYxDvm5wVbGue0EMAPVHv_vJkbvx7RRc-_Ez-obg,672
42
- worqhat/types/db_detect_anomalies_response.py,sha256=FCSHRtZQOvMMzpITecooqjTvK6yzptEgltORbrfoKSQ,1331
43
- worqhat/types/db_execute_batch_params.py,sha256=GHsi0VKn9nwgvn_vE56hWuTbkhAWEFOgD5ywKMyQPiQ,1038
44
- worqhat/types/db_execute_batch_response.py,sha256=ma2G7awwCs79vAEmAd0qsZ4mm7qtmrP85-gLyr0FXT8,678
45
- worqhat/types/db_execute_query_params.py,sha256=F63dxBG2bq7d4akpDYyvJZyxipO2b7sA-w42jyuk1c4,753
46
- worqhat/types/db_execute_query_response.py,sha256=qUX3w3lMmSISCkUYqDURoW1e_0RyyUy03lNL_Y8tCsw,566
47
- worqhat/types/db_find_similar_params.py,sha256=_jFU0tR3z4yXTqebK8Dx99H0ja1JlIsazXzqL5xuVGk,875
48
- worqhat/types/db_find_similar_response.py,sha256=oSwPjtIOIdYkCu6YuqR-XFgdondV24kjEhRo9wsl9So,824
49
- worqhat/types/db_hybrid_search_params.py,sha256=QdLSeKbaQIf71aF-O3Urpr1111zcN2JG2VoowE15Oq4,884
50
- worqhat/types/db_hybrid_search_response.py,sha256=fy2s_6zEfikXL3deeMQbvLSIax1mH2jNYxGd8G0C9_E,1282
51
- worqhat/types/db_insert_record_params.py,sha256=v3R20cbxZebwDE6Nn5dU_3l2KKItp75Zl1BqcNS1jkE,559
52
- worqhat/types/db_insert_record_response.py,sha256=X3_9MhXkf3XHrJisAd7bFy1qF3jnvwcLtt6t8QPl6Fo,351
53
- worqhat/types/db_process_nl_query_params.py,sha256=giDIFmqMuD-7H9Qj4PU7772_2choWB-3q95tG-dx_PA,569
54
- worqhat/types/db_process_nl_query_response.py,sha256=b89K4MPIVUOm4KSmXumwx8mE2xhvzUvGAQhlbQGeyfo,432
55
- worqhat/types/db_recommend_params.py,sha256=cQEMS5LAgjmsKutII7J4qWNgOZM_JBo8htixQ2fr0d0,988
56
- worqhat/types/db_recommend_response.py,sha256=7uEnn8anOZC6b5ciHx6ydKdPC_miVd1hGAplKuugY-4,985
57
- worqhat/types/db_semantic_search_params.py,sha256=ttfUVVDb_cLHoZiQHax2w5gyxJ3HiHXDoLmPEZFJ67Y,941
58
- worqhat/types/db_semantic_search_response.py,sha256=PA-fQihMv6SYs8N4nwQDZi1QQhMeI_S4T4FGEA1TeCE,972
59
- worqhat/types/db_update_records_params.py,sha256=AdnLX5UncobxEuTWZPJ_s_NZiykNwVie3TjC9FyNOCU,621
60
- worqhat/types/db_update_records_response.py,sha256=2nJr_NHr7eMi8cJNi1GHTCbmcNlJxO3EiysxBfZVxzo,434
61
- worqhat/types/flow_get_metrics_params.py,sha256=x4SgBnhjUDIabDVd3f3_wVGldHSLelUSSM_AoxpglTs,768
62
- worqhat/types/flow_get_metrics_response.py,sha256=xk4-y22nz_54QydhCRFYT-wONKaoSmjJSr-bT88r-b4,1287
63
- worqhat/types/flow_trigger_with_file_params.py,sha256=E5u-840gLHNpM5DIpx6is_usrMgSiEu_OXZuS6-7D_A,414
64
- worqhat/types/flow_trigger_with_file_response.py,sha256=xa3qZSBwa8eJddqlGJrwd9WO-hPw1k9NJr3Yrr2EUzk,433
65
- worqhat/types/flow_trigger_with_payload_params.py,sha256=hHhYGbfzAilN0G44uYayybigW79IrZjaheiPNKqqWsg,380
66
- worqhat/types/flow_trigger_with_payload_response.py,sha256=XT-6VEfTbpM3o098AATogw9s-X60gsd18b4T_xOiW60,479
67
- worqhat/types/get_server_info_response.py,sha256=Ev88Yr-DGVx00hluVKMnY4xq-VluFvcQ6z08XZTPcCE,332
68
- worqhat/types/health_check_response.py,sha256=29tvzgqsy6wVfFwVunK5ouzSYeZGEUnQQuQpAQGsoxI,885
69
- worqhat/types/storage_delete_file_by_id_response.py,sha256=zAMTNS3wa9Q0b2WpDEdqwr8HKRAK51z2QdyJSM3n6So,465
70
- worqhat/types/storage_retrieve_file_by_id_response.py,sha256=ee4kOIX6XRNdauAx6C9QSnw7Z_WBYgltCIRS_OrHpWw,808
71
- worqhat/types/storage_retrieve_file_by_path_params.py,sha256=jxHUEBfKYH2zUEGlL1ytIFkzTWthTdPqNX_46H-9eiU,368
72
- worqhat/types/storage_retrieve_file_by_path_response.py,sha256=C5P4OZ_5pGJPASBC7o5iV-m2jqT-gbcnHWm9u2sx1uM,812
73
- worqhat/types/storage_upload_file_params.py,sha256=UHxyVPYyvX4KpEGUJK5wjN4N6Sh3TOfJYz9cNtDOanM,441
74
- worqhat/types/storage_upload_file_response.py,sha256=06xcnG2tpL7tPFvieyUsvcg-cxqYXdVEMU2-P8eEcOU,759
75
- worqhat/types/db/__init__.py,sha256=A11__5Vr1Ju2JdH7t5DpvVaYqoImM8Bf-iFYwjAr2Kc,645
76
- worqhat/types/db/table_get_row_count_params.py,sha256=jT6P25NN22TZe5Lk8TzMKY4dB9ReJQ2o33LQeTxS3Bs,362
77
- worqhat/types/db/table_get_row_count_response.py,sha256=jr3O3NQl1o8rVaoG1ilK1h1LOELc1d1AkbVAYGG1Go0,335
78
- worqhat/types/db/table_list_params.py,sha256=aiq4uIj9lNsnoN3-FgNn_mSfwUzX5XchPvlXh0hyJgY,443
79
- worqhat/types/db/table_list_response.py,sha256=gbktGz4ilObaMkbA9_t0UussYuSBPEN9cuhh6_IXnNw,578
80
- worqhat/types/db/table_retrieve_schema_params.py,sha256=DFQaflB9weCc8JjqXkaAK-TLfy1IXTev7-vh4O0RYFk,368
81
- worqhat/types/db/table_retrieve_schema_response.py,sha256=-OHPvWJSGJzEScrRPilQVsuU_60U7qIJ3_ZleVwJ1j0,655
82
- worqhat-3.10.0.dist-info/METADATA,sha256=3SAviC5JfiomEKLWwvioGy_ZlUkbZ8VSuMgiChLae1k,14314
83
- worqhat-3.10.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
84
- worqhat-3.10.0.dist-info/licenses/LICENSE,sha256=UwMftLIOitTJWtJ9bowByxdt9ZSFqmmb43oQosW5xiU,11337
85
- worqhat-3.10.0.dist-info/RECORD,,