arbi 0.18.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 (165) hide show
  1. arbi/__init__.py +92 -0
  2. arbi/_base_client.py +2124 -0
  3. arbi/_client.py +442 -0
  4. arbi/_compat.py +219 -0
  5. arbi/_constants.py +14 -0
  6. arbi/_exceptions.py +108 -0
  7. arbi/_files.py +123 -0
  8. arbi/_models.py +872 -0
  9. arbi/_qs.py +150 -0
  10. arbi/_resource.py +43 -0
  11. arbi/_response.py +830 -0
  12. arbi/_streaming.py +333 -0
  13. arbi/_types.py +270 -0
  14. arbi/_utils/__init__.py +64 -0
  15. arbi/_utils/_compat.py +45 -0
  16. arbi/_utils/_datetime_parse.py +136 -0
  17. arbi/_utils/_logs.py +25 -0
  18. arbi/_utils/_proxy.py +65 -0
  19. arbi/_utils/_reflection.py +42 -0
  20. arbi/_utils/_resources_proxy.py +24 -0
  21. arbi/_utils/_streams.py +12 -0
  22. arbi/_utils/_sync.py +58 -0
  23. arbi/_utils/_transform.py +457 -0
  24. arbi/_utils/_typing.py +156 -0
  25. arbi/_utils/_utils.py +421 -0
  26. arbi/_version.py +4 -0
  27. arbi/lib/.keep +4 -0
  28. arbi/py.typed +0 -0
  29. arbi/resources/__init__.py +19 -0
  30. arbi/resources/api/__init__.py +145 -0
  31. arbi/resources/api/api.py +422 -0
  32. arbi/resources/api/assistant.py +312 -0
  33. arbi/resources/api/configs.py +533 -0
  34. arbi/resources/api/conversation/__init__.py +33 -0
  35. arbi/resources/api/conversation/conversation.py +648 -0
  36. arbi/resources/api/conversation/user.py +270 -0
  37. arbi/resources/api/document/__init__.py +33 -0
  38. arbi/resources/api/document/doctag.py +516 -0
  39. arbi/resources/api/document/document.py +929 -0
  40. arbi/resources/api/health.py +253 -0
  41. arbi/resources/api/notifications.py +478 -0
  42. arbi/resources/api/tag.py +409 -0
  43. arbi/resources/api/user/__init__.py +61 -0
  44. arbi/resources/api/user/contacts.py +322 -0
  45. arbi/resources/api/user/settings.py +283 -0
  46. arbi/resources/api/user/subscription.py +230 -0
  47. arbi/resources/api/user/user.py +943 -0
  48. arbi/resources/api/workspace.py +1198 -0
  49. arbi/types/__init__.py +8 -0
  50. arbi/types/api/__init__.py +94 -0
  51. arbi/types/api/assistant_query_params.py +95 -0
  52. arbi/types/api/assistant_retrieve_params.py +95 -0
  53. arbi/types/api/chunker_config_param.py +9 -0
  54. arbi/types/api/config_create_params.py +227 -0
  55. arbi/types/api/config_create_response.py +17 -0
  56. arbi/types/api/config_delete_response.py +11 -0
  57. arbi/types/api/config_get_versions_response.py +19 -0
  58. arbi/types/api/config_retrieve_response.py +234 -0
  59. arbi/types/api/conversation/__init__.py +8 -0
  60. arbi/types/api/conversation/user_add_params.py +11 -0
  61. arbi/types/api/conversation/user_add_response.py +11 -0
  62. arbi/types/api/conversation/user_remove_params.py +11 -0
  63. arbi/types/api/conversation/user_remove_response.py +11 -0
  64. arbi/types/api/conversation_delete_message_response.py +11 -0
  65. arbi/types/api/conversation_delete_response.py +11 -0
  66. arbi/types/api/conversation_retrieve_message_response.py +105 -0
  67. arbi/types/api/conversation_retrieve_threads_response.py +124 -0
  68. arbi/types/api/conversation_share_response.py +11 -0
  69. arbi/types/api/conversation_update_title_params.py +16 -0
  70. arbi/types/api/conversation_update_title_response.py +13 -0
  71. arbi/types/api/doc_response.py +66 -0
  72. arbi/types/api/document/__init__.py +11 -0
  73. arbi/types/api/document/doc_tag_response.py +40 -0
  74. arbi/types/api/document/doctag_create_params.py +35 -0
  75. arbi/types/api/document/doctag_create_response.py +10 -0
  76. arbi/types/api/document/doctag_delete_params.py +15 -0
  77. arbi/types/api/document/doctag_generate_params.py +22 -0
  78. arbi/types/api/document/doctag_generate_response.py +20 -0
  79. arbi/types/api/document/doctag_update_params.py +35 -0
  80. arbi/types/api/document_date_extractor_llm_config.py +29 -0
  81. arbi/types/api/document_date_extractor_llm_config_param.py +28 -0
  82. arbi/types/api/document_delete_params.py +13 -0
  83. arbi/types/api/document_get_parsed_response.py +26 -0
  84. arbi/types/api/document_retrieve_params.py +16 -0
  85. arbi/types/api/document_retrieve_response.py +10 -0
  86. arbi/types/api/document_update_params.py +42 -0
  87. arbi/types/api/document_update_response.py +10 -0
  88. arbi/types/api/document_upload_from_url_params.py +26 -0
  89. arbi/types/api/document_upload_from_url_response.py +16 -0
  90. arbi/types/api/document_upload_params.py +26 -0
  91. arbi/types/api/document_upload_response.py +16 -0
  92. arbi/types/api/embedder_config.py +30 -0
  93. arbi/types/api/embedder_config_param.py +29 -0
  94. arbi/types/api/health_check_models_response.py +21 -0
  95. arbi/types/api/health_get_models_response.py +19 -0
  96. arbi/types/api/health_retrieve_status_response.py +49 -0
  97. arbi/types/api/model_citation_config.py +20 -0
  98. arbi/types/api/model_citation_config_param.py +20 -0
  99. arbi/types/api/notification_create_params.py +20 -0
  100. arbi/types/api/notification_create_response.py +47 -0
  101. arbi/types/api/notification_delete_params.py +13 -0
  102. arbi/types/api/notification_get_schemas_response.py +197 -0
  103. arbi/types/api/notification_list_response.py +47 -0
  104. arbi/types/api/notification_update_params.py +27 -0
  105. arbi/types/api/notification_update_response.py +47 -0
  106. arbi/types/api/parser_config_param.py +9 -0
  107. arbi/types/api/query_llm_config.py +30 -0
  108. arbi/types/api/query_llm_config_param.py +29 -0
  109. arbi/types/api/reranker_config.py +21 -0
  110. arbi/types/api/reranker_config_param.py +20 -0
  111. arbi/types/api/retriever_config.py +39 -0
  112. arbi/types/api/retriever_config_param.py +38 -0
  113. arbi/types/api/tag_create_params.py +49 -0
  114. arbi/types/api/tag_create_response.py +57 -0
  115. arbi/types/api/tag_delete_response.py +9 -0
  116. arbi/types/api/tag_update_params.py +22 -0
  117. arbi/types/api/tag_update_response.py +57 -0
  118. arbi/types/api/title_llm_config.py +29 -0
  119. arbi/types/api/title_llm_config_param.py +28 -0
  120. arbi/types/api/user/__init__.py +13 -0
  121. arbi/types/api/user/contact_create_params.py +13 -0
  122. arbi/types/api/user/contact_create_response.py +30 -0
  123. arbi/types/api/user/contact_delete_params.py +13 -0
  124. arbi/types/api/user/contact_list_response.py +30 -0
  125. arbi/types/api/user/setting_retrieve_response.py +89 -0
  126. arbi/types/api/user/setting_update_params.py +60 -0
  127. arbi/types/api/user/subscription_create_params.py +13 -0
  128. arbi/types/api/user/subscription_create_response.py +11 -0
  129. arbi/types/api/user/subscription_retrieve_response.py +48 -0
  130. arbi/types/api/user_change_password_params.py +18 -0
  131. arbi/types/api/user_change_password_response.py +11 -0
  132. arbi/types/api/user_check_sso_status_params.py +20 -0
  133. arbi/types/api/user_check_sso_status_response.py +25 -0
  134. arbi/types/api/user_list_products_response.py +37 -0
  135. arbi/types/api/user_list_workspaces_response.py +10 -0
  136. arbi/types/api/user_login_params.py +18 -0
  137. arbi/types/api/user_login_response.py +23 -0
  138. arbi/types/api/user_logout_response.py +9 -0
  139. arbi/types/api/user_register_params.py +22 -0
  140. arbi/types/api/user_response.py +26 -0
  141. arbi/types/api/user_verify_email_params.py +11 -0
  142. arbi/types/api/user_verify_email_response.py +9 -0
  143. arbi/types/api/workspace_copy_params.py +21 -0
  144. arbi/types/api/workspace_copy_response.py +25 -0
  145. arbi/types/api/workspace_create_protected_params.py +16 -0
  146. arbi/types/api/workspace_delete_response.py +9 -0
  147. arbi/types/api/workspace_get_conversations_response.py +30 -0
  148. arbi/types/api/workspace_get_documents_response.py +10 -0
  149. arbi/types/api/workspace_get_stats_response.py +17 -0
  150. arbi/types/api/workspace_get_tags_response.py +60 -0
  151. arbi/types/api/workspace_get_users_response.py +10 -0
  152. arbi/types/api/workspace_remove_user_params.py +11 -0
  153. arbi/types/api/workspace_remove_user_response.py +11 -0
  154. arbi/types/api/workspace_response.py +41 -0
  155. arbi/types/api/workspace_share_params.py +15 -0
  156. arbi/types/api/workspace_share_response.py +13 -0
  157. arbi/types/api/workspace_update_params.py +20 -0
  158. arbi/types/chunk.py +12 -0
  159. arbi/types/chunk_metadata.py +31 -0
  160. arbi/types/chunk_metadata_param.py +32 -0
  161. arbi/types/chunk_param.py +15 -0
  162. arbi-0.18.0.dist-info/METADATA +410 -0
  163. arbi-0.18.0.dist-info/RECORD +165 -0
  164. arbi-0.18.0.dist-info/WHEEL +4 -0
  165. arbi-0.18.0.dist-info/licenses/LICENSE +201 -0
@@ -0,0 +1,410 @@
1
+ Metadata-Version: 2.3
2
+ Name: arbi
3
+ Version: 0.18.0
4
+ Summary: The official Python library for the arbi API
5
+ Project-URL: Homepage, https://github.com/arbitrationcity/arbi-python
6
+ Project-URL: Repository, https://github.com/arbitrationcity/arbi-python
7
+ Author: Arbi
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.9
17
+ Classifier: Programming Language :: Python :: 3.10
18
+ Classifier: Programming Language :: Python :: 3.11
19
+ Classifier: Programming Language :: Python :: 3.12
20
+ Classifier: Programming Language :: Python :: 3.13
21
+ Classifier: Programming Language :: Python :: 3.14
22
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
23
+ Classifier: Typing :: Typed
24
+ Requires-Python: >=3.9
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
+ # Arbi Python API library
37
+
38
+ <!-- prettier-ignore -->
39
+ [![PyPI version](https://img.shields.io/pypi/v/arbi.svg?label=pypi%20(stable))](https://pypi.org/project/arbi/)
40
+
41
+ The Arbi Python library provides convenient access to the Arbi REST API from any Python 3.9+
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 full API of this library can be found in [api.md](https://github.com/arbitrationcity/arbi-python/tree/main/api.md).
50
+
51
+ ## Installation
52
+
53
+ ```sh
54
+ # install from PyPI
55
+ pip install arbi
56
+ ```
57
+
58
+ ## Usage
59
+
60
+ The full API of this library can be found in [api.md](https://github.com/arbitrationcity/arbi-python/tree/main/api.md).
61
+
62
+ ```python
63
+ import os
64
+ from arbi import Arbi
65
+
66
+ client = Arbi(
67
+ api_key=os.environ.get("ARBI_API_KEY"), # This is the default and can be omitted
68
+ )
69
+
70
+ response = client.api.index()
71
+ ```
72
+
73
+ While you can provide an `api_key` keyword argument,
74
+ we recommend using [python-dotenv](https://pypi.org/project/python-dotenv/)
75
+ to add `ARBI_API_KEY="My API Key"` to your `.env` file
76
+ so that your API Key is not stored in source control.
77
+
78
+ ## Async usage
79
+
80
+ Simply import `AsyncArbi` instead of `Arbi` and use `await` with each API call:
81
+
82
+ ```python
83
+ import os
84
+ import asyncio
85
+ from arbi import AsyncArbi
86
+
87
+ client = AsyncArbi(
88
+ api_key=os.environ.get("ARBI_API_KEY"), # This is the default and can be omitted
89
+ )
90
+
91
+
92
+ async def main() -> None:
93
+ response = await client.api.index()
94
+
95
+
96
+ asyncio.run(main())
97
+ ```
98
+
99
+ Functionality between the synchronous and asynchronous clients is otherwise identical.
100
+
101
+ ### With aiohttp
102
+
103
+ By default, the async client uses `httpx` for HTTP requests. However, for improved concurrency performance you may also use `aiohttp` as the HTTP backend.
104
+
105
+ You can enable this by installing `aiohttp`:
106
+
107
+ ```sh
108
+ # install from PyPI
109
+ pip install arbi[aiohttp]
110
+ ```
111
+
112
+ Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
113
+
114
+ ```python
115
+ import os
116
+ import asyncio
117
+ from arbi import DefaultAioHttpClient
118
+ from arbi import AsyncArbi
119
+
120
+
121
+ async def main() -> None:
122
+ async with AsyncArbi(
123
+ api_key=os.environ.get("ARBI_API_KEY"), # This is the default and can be omitted
124
+ http_client=DefaultAioHttpClient(),
125
+ ) as client:
126
+ response = await client.api.index()
127
+
128
+
129
+ asyncio.run(main())
130
+ ```
131
+
132
+ ## Using types
133
+
134
+ 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:
135
+
136
+ - Serializing back into JSON, `model.to_json()`
137
+ - Converting to a dictionary, `model.to_dict()`
138
+
139
+ 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`.
140
+
141
+ ## Nested params
142
+
143
+ Nested parameters are dictionaries, typed using `TypedDict`, for example:
144
+
145
+ ```python
146
+ from arbi import Arbi
147
+
148
+ client = Arbi()
149
+
150
+ client.api.user.settings.update(
151
+ subscription={},
152
+ )
153
+ ```
154
+
155
+ ## Handling errors
156
+
157
+ When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `arbi.APIConnectionError` is raised.
158
+
159
+ When the API returns a non-success status code (that is, 4xx or 5xx
160
+ response), a subclass of `arbi.APIStatusError` is raised, containing `status_code` and `response` properties.
161
+
162
+ All errors inherit from `arbi.APIError`.
163
+
164
+ ```python
165
+ import arbi
166
+ from arbi import Arbi
167
+
168
+ client = Arbi()
169
+
170
+ try:
171
+ client.api.index()
172
+ except arbi.APIConnectionError as e:
173
+ print("The server could not be reached")
174
+ print(e.__cause__) # an underlying Exception, likely raised within httpx.
175
+ except arbi.RateLimitError as e:
176
+ print("A 429 status code was received; we should back off a bit.")
177
+ except arbi.APIStatusError as e:
178
+ print("Another non-200-range status code was received")
179
+ print(e.status_code)
180
+ print(e.response)
181
+ ```
182
+
183
+ Error codes are as follows:
184
+
185
+ | Status Code | Error Type |
186
+ | ----------- | -------------------------- |
187
+ | 400 | `BadRequestError` |
188
+ | 401 | `AuthenticationError` |
189
+ | 403 | `PermissionDeniedError` |
190
+ | 404 | `NotFoundError` |
191
+ | 422 | `UnprocessableEntityError` |
192
+ | 429 | `RateLimitError` |
193
+ | >=500 | `InternalServerError` |
194
+ | N/A | `APIConnectionError` |
195
+
196
+ ### Retries
197
+
198
+ Certain errors are automatically retried 2 times by default, with a short exponential backoff.
199
+ Connection errors (for example, due to a network connectivity problem), 408 Request Timeout, 409 Conflict,
200
+ 429 Rate Limit, and >=500 Internal errors are all retried by default.
201
+
202
+ You can use the `max_retries` option to configure or disable retry settings:
203
+
204
+ ```python
205
+ from arbi import Arbi
206
+
207
+ # Configure the default for all requests:
208
+ client = Arbi(
209
+ # default is 2
210
+ max_retries=0,
211
+ )
212
+
213
+ # Or, configure per-request:
214
+ client.with_options(max_retries=5).api.index()
215
+ ```
216
+
217
+ ### Timeouts
218
+
219
+ By default requests time out after 1 minute. You can configure this with a `timeout` option,
220
+ which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/timeouts/#fine-tuning-the-configuration) object:
221
+
222
+ ```python
223
+ from arbi import Arbi
224
+
225
+ # Configure the default for all requests:
226
+ client = Arbi(
227
+ # 20 seconds (default is 1 minute)
228
+ timeout=20.0,
229
+ )
230
+
231
+ # More granular control:
232
+ client = Arbi(
233
+ timeout=httpx.Timeout(60.0, read=5.0, write=10.0, connect=2.0),
234
+ )
235
+
236
+ # Override per-request:
237
+ client.with_options(timeout=5.0).api.index()
238
+ ```
239
+
240
+ On timeout, an `APITimeoutError` is thrown.
241
+
242
+ Note that requests that time out are [retried twice by default](https://github.com/arbitrationcity/arbi-python/tree/main/#retries).
243
+
244
+ ## Advanced
245
+
246
+ ### Logging
247
+
248
+ We use the standard library [`logging`](https://docs.python.org/3/library/logging.html) module.
249
+
250
+ You can enable logging by setting the environment variable `ARBI_LOG` to `info`.
251
+
252
+ ```shell
253
+ $ export ARBI_LOG=info
254
+ ```
255
+
256
+ Or to `debug` for more verbose logging.
257
+
258
+ ### How to tell whether `None` means `null` or missing
259
+
260
+ 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`:
261
+
262
+ ```py
263
+ if response.my_field is None:
264
+ if 'my_field' not in response.model_fields_set:
265
+ print('Got json like {}, without a "my_field" key present at all.')
266
+ else:
267
+ print('Got json like {"my_field": null}.')
268
+ ```
269
+
270
+ ### Accessing raw response data (e.g. headers)
271
+
272
+ The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
273
+
274
+ ```py
275
+ from arbi import Arbi
276
+
277
+ client = Arbi()
278
+ response = client.api.with_raw_response.index()
279
+ print(response.headers.get('X-My-Header'))
280
+
281
+ api = response.parse() # get the object that `api.index()` would have returned
282
+ print(api)
283
+ ```
284
+
285
+ These methods return an [`APIResponse`](https://github.com/arbitrationcity/arbi-python/tree/main/src/arbi/_response.py) object.
286
+
287
+ The async client returns an [`AsyncAPIResponse`](https://github.com/arbitrationcity/arbi-python/tree/main/src/arbi/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
288
+
289
+ #### `.with_streaming_response`
290
+
291
+ The above interface eagerly reads the full response body when you make the request, which may not always be what you want.
292
+
293
+ 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.
294
+
295
+ ```python
296
+ with client.api.with_streaming_response.index() as response:
297
+ print(response.headers.get("X-My-Header"))
298
+
299
+ for line in response.iter_lines():
300
+ print(line)
301
+ ```
302
+
303
+ The context manager is required so that the response will reliably be closed.
304
+
305
+ ### Making custom/undocumented requests
306
+
307
+ This library is typed for convenient access to the documented API.
308
+
309
+ If you need to access undocumented endpoints, params, or response properties, the library can still be used.
310
+
311
+ #### Undocumented endpoints
312
+
313
+ To make requests to undocumented endpoints, you can make requests using `client.get`, `client.post`, and other
314
+ http verbs. Options on the client will be respected (such as retries) when making this request.
315
+
316
+ ```py
317
+ import httpx
318
+
319
+ response = client.post(
320
+ "/foo",
321
+ cast_to=httpx.Response,
322
+ body={"my_param": True},
323
+ )
324
+
325
+ print(response.headers.get("x-foo"))
326
+ ```
327
+
328
+ #### Undocumented request params
329
+
330
+ If you want to explicitly send an extra param, you can do so with the `extra_query`, `extra_body`, and `extra_headers` request
331
+ options.
332
+
333
+ #### Undocumented response properties
334
+
335
+ To access undocumented response properties, you can access the extra fields like `response.unknown_prop`. You
336
+ can also get all the extra fields on the Pydantic model as a dict with
337
+ [`response.model_extra`](https://docs.pydantic.dev/latest/api/base_model/#pydantic.BaseModel.model_extra).
338
+
339
+ ### Configuring the HTTP client
340
+
341
+ You can directly override the [httpx client](https://www.python-httpx.org/api/#client) to customize it for your use case, including:
342
+
343
+ - Support for [proxies](https://www.python-httpx.org/advanced/proxies/)
344
+ - Custom [transports](https://www.python-httpx.org/advanced/transports/)
345
+ - Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
346
+
347
+ ```python
348
+ import httpx
349
+ from arbi import Arbi, DefaultHttpxClient
350
+
351
+ client = Arbi(
352
+ # Or use the `ARBI_BASE_URL` env var
353
+ base_url="http://my.test.server.example.com:8083",
354
+ http_client=DefaultHttpxClient(
355
+ proxy="http://my.test.proxy.example.com",
356
+ transport=httpx.HTTPTransport(local_address="0.0.0.0"),
357
+ ),
358
+ )
359
+ ```
360
+
361
+ You can also customize the client on a per-request basis by using `with_options()`:
362
+
363
+ ```python
364
+ client.with_options(http_client=DefaultHttpxClient(...))
365
+ ```
366
+
367
+ ### Managing HTTP resources
368
+
369
+ 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.
370
+
371
+ ```py
372
+ from arbi import Arbi
373
+
374
+ with Arbi() as client:
375
+ # make requests here
376
+ ...
377
+
378
+ # HTTP client is now closed
379
+ ```
380
+
381
+ ## Versioning
382
+
383
+ 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:
384
+
385
+ 1. Changes that only affect static types, without breaking runtime behavior.
386
+ 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.)_
387
+ 3. Changes that we do not expect to impact the vast majority of users in practice.
388
+
389
+ We take backwards-compatibility seriously and work hard to ensure you can rely on a smooth upgrade experience.
390
+
391
+ We are keen for your feedback; please open an [issue](https://www.github.com/arbitrationcity/arbi-python/issues) with questions, bugs, or suggestions.
392
+
393
+ ### Determining the installed version
394
+
395
+ 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.
396
+
397
+ You can determine the version that is being used at runtime with:
398
+
399
+ ```py
400
+ import arbi
401
+ print(arbi.__version__)
402
+ ```
403
+
404
+ ## Requirements
405
+
406
+ Python 3.9 or higher.
407
+
408
+ ## Contributing
409
+
410
+ See [the contributing documentation](https://github.com/arbitrationcity/arbi-python/tree/main/./CONTRIBUTING.md).
@@ -0,0 +1,165 @@
1
+ arbi/__init__.py,sha256=ClssvoymscHgzz5SeaZ8-Go-7e5qohJ6P9ZmoJZYHX0,2606
2
+ arbi/_base_client.py,sha256=yJOV2bJd5lpZwgqlicgWhMeOwajbsJkb_K8SahU2IIc,73407
3
+ arbi/_client.py,sha256=NzwD9UeJxe5-585O9zKGcCE_oGFopSejBoPzKiZsJ0E,15862
4
+ arbi/_compat.py,sha256=DQBVORjFb33zch24jzkhM14msvnzY7mmSmgDLaVFUM8,6562
5
+ arbi/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
6
+ arbi/_exceptions.py,sha256=ymYmwHMUBfDutGbh6IppIeeweaUQ646Qqe3CdCk5wgM,3216
7
+ arbi/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
8
+ arbi/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
9
+ arbi/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
10
+ arbi/_resource.py,sha256=eBjjRTRH59kNM8uLWIK04QCR0Sknrv9fEs4DvHw749U,1088
11
+ arbi/_response.py,sha256=YuaBc04B9DUJJE0ptEY4_9l_sEhDGdmfNEoow70cdRk,28776
12
+ arbi/_streaming.py,sha256=zM6RuNmZ9OAqxHDIFwDF7Y3L3jisK0Q0rXf_OLNW0Vo,10213
13
+ arbi/_types.py,sha256=qHso3-pk4h6jshu2oK8SUYyqdfuXot8X3qnFpDmlj0c,7592
14
+ arbi/_version.py,sha256=UGXiiI5ce5uP-Mxph4EB9wImuJw2AnkAJjkDhbSQ084,157
15
+ arbi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ arbi/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
+ arbi/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
18
+ arbi/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
19
+ arbi/_utils/_logs.py,sha256=8KRH2HNTPpXiZmTJwcw1JgdwU3GDtFOuxJ83fb_hrFY,768
20
+ arbi/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
21
+ arbi/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
22
+ arbi/_utils/_resources_proxy.py,sha256=Ar894nC6HRi3YKu1Hl8-4xUTXwqtXkfrl1IId_ivR_w,579
23
+ arbi/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
24
+ arbi/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
25
+ arbi/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
26
+ arbi/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
27
+ arbi/_utils/_utils.py,sha256=dU865pDf2txmSTFmDpmRHa1JrJKQi9F8nkqsTC5QPNc,12231
28
+ arbi/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
29
+ arbi/resources/__init__.py,sha256=Ks_RQk6zvKGqOl6H7gpnyW1FrSY8SVsrKGj4mcmQ61k,513
30
+ arbi/resources/api/__init__.py,sha256=DSstS6Ey0QTv6oW-8KzqRmqxNVtIpmSb1ToWFRxE9mQ,4784
31
+ arbi/resources/api/api.py,sha256=A2E8a1gi690uOV5s8eabpzyiy1IGq1eH1pcUiXhAVVo,14780
32
+ arbi/resources/api/assistant.py,sha256=4KEoWwakviGani9Rb5m5geklGmnKrynGZQ1vYNiZ-8A,12124
33
+ arbi/resources/api/configs.py,sha256=B7GPtw7tudT9C1Sw_-4lk6xkm9qDd9pm3oLeDFojvEk,22466
34
+ arbi/resources/api/health.py,sha256=KyFR9x1Mr1QhlAxhd7w6azkm0vSlA6Ur1GLstfCrcWI,10186
35
+ arbi/resources/api/notifications.py,sha256=EVDNBR0fMiVhViMpdJoHzbxonBCENhYEkdqxhiv7dfY,19209
36
+ arbi/resources/api/tag.py,sha256=1XtSfY_4RsQEYRdCP-I9J3m6h0kOP6UMeKekSR2qbZg,15544
37
+ arbi/resources/api/workspace.py,sha256=M_BNnLvUNbX_zJ_7b1FojahCC-jWKRY_XB28bb-NIlQ,48894
38
+ arbi/resources/api/conversation/__init__.py,sha256=WQKtfAPfHwgtRJaTnZszRZmQ0caUcMcDv7EHhu1rf4U,1054
39
+ arbi/resources/api/conversation/conversation.py,sha256=rrtiNir0XzV74rKvaT3gFQTBRoU3Z66lE167JJDJpvo,26666
40
+ arbi/resources/api/conversation/user.py,sha256=SBvtd4XkpZyMpwVAh-MV_vKptE6YoGKoGohx5zH5WNw,10280
41
+ arbi/resources/api/document/__init__.py,sha256=rWMpPRNptDv_fNvOlkbmxivuj82qRzP5GQRoFjifs2Y,1028
42
+ arbi/resources/api/document/doctag.py,sha256=HL3w12wyjwYi7gnJwn_viZ1o9g6ZzVZMlB4wmEsqglQ,19637
43
+ arbi/resources/api/document/document.py,sha256=yYdMpmCIaxXSadjAc9jvNMtUcVs0IH_nq46yvOCSOdc,36697
44
+ arbi/resources/api/user/__init__.py,sha256=22XDqj8fVrbQWgvY2GZ65Yq1MlXU55UjpyBtwVqArr0,2006
45
+ arbi/resources/api/user/contacts.py,sha256=UihsrEEE1V7GZpVgdhDdKapVPli6eWX__BwFLBTxDMQ,12375
46
+ arbi/resources/api/user/settings.py,sha256=T5BI0FbWZpJU3Ydxr0sUyBr_3eSSbeLKYbB7d7JfFTI,11832
47
+ arbi/resources/api/user/subscription.py,sha256=oTnAuvfVPJLZaDFDSwHN5h03ZwKkaa55chiiGgD9oKE,9224
48
+ arbi/resources/api/user/user.py,sha256=QBg-hCVN7o_UdNNDfPL0IutWQo4GD3Wcq2Z43nxSRF8,36317
49
+ arbi/types/__init__.py,sha256=zOxql2OO_R5LGwkFLawHC6O_f57kidrnO9hwxyuquzE,341
50
+ arbi/types/chunk.py,sha256=J6LQxWxLDW9feXQZOiYNNSBKgwkzhXgf74DS_noHFLs,254
51
+ arbi/types/chunk_metadata.py,sha256=GHcVONko0WWfDAa6rvLHldxgxL2IWmI6NqKwXAJLgYQ,545
52
+ arbi/types/chunk_metadata_param.py,sha256=UwGaK35hTMRR-YKPivEpQtUorIAqu-I7did2HnOV4aE,629
53
+ arbi/types/chunk_param.py,sha256=YI77ArEd8KXaDXspgezw1h36xQhoCnb4iwX6Hws3nzU,368
54
+ arbi/types/api/__init__.py,sha256=__3EH6nVLADXbk4z-HNM-2hPXt4anP2goipC0Wp_MU0,7601
55
+ arbi/types/api/assistant_query_params.py,sha256=iyDQx6ROk6xjLiYDqkTUZt4awc5szYHhAR6HWcWpTQk,2266
56
+ arbi/types/api/assistant_retrieve_params.py,sha256=IXuOOeuu-fT2syIMf1tTtaRUB5cDs_xnyZ8UDh73B4I,2272
57
+ arbi/types/api/chunker_config_param.py,sha256=hdYyEXCdR_g6DB_c0EuoH_73MocVOVaqwaV2Z5D_hCs,237
58
+ arbi/types/api/config_create_params.py,sha256=F3UnGs8TOJ6ROxyCzVQMsZMqDNU70LiD71Ii_xeWBtw,8796
59
+ arbi/types/api/config_create_response.py,sha256=lQu02nH9xUoxpxd3USUPfjT9N8gLfWzBzCKL4k4rqUY,359
60
+ arbi/types/api/config_delete_response.py,sha256=DSBLJ9NT42K3icy_XFSyM1bfiSSvo6NPi6DN5drK2IQ,259
61
+ arbi/types/api/config_get_versions_response.py,sha256=9zPsTDowITXN_zjK1dzCnUQK8otPKBmaZMtdZLcLLwU,384
62
+ arbi/types/api/config_retrieve_response.py,sha256=iBvr8V5UBRQon9lT97ksaqiDsq_8CaYF5QTFSXQwYCk,9444
63
+ arbi/types/api/conversation_delete_message_response.py,sha256=4te9sHh4cWMdUUR_79_LnwoV1tFOzg2TR50fw6ALgfY,285
64
+ arbi/types/api/conversation_delete_response.py,sha256=9qOWK2udruW1Emzp_0o_iSbPVhTi9qI3TNyvv8Mo9TA,271
65
+ arbi/types/api/conversation_retrieve_message_response.py,sha256=pdO_D0K0DYVrNLGrZ0GHdmm9yF19TLEamQ56KO-axpI,2593
66
+ arbi/types/api/conversation_retrieve_threads_response.py,sha256=G8xjZ83b7pui32L_WLP8KI_MFxwcaVj1Z93T0RHKczU,3081
67
+ arbi/types/api/conversation_share_response.py,sha256=wm3-w5puCTF3nKV2Xbt0RYXwPWW9oHWnR2OPTdpGp44,269
68
+ arbi/types/api/conversation_update_title_params.py,sha256=nsxtxABCLjMFeBqFkiqWfdemkoHy-BftwsBTzyrzDm0,476
69
+ arbi/types/api/conversation_update_title_response.py,sha256=GHtttE9kyIjYhSa8D5bMLvfhvsjRvy4FEVPikG3x04Q,297
70
+ arbi/types/api/doc_response.py,sha256=LOUgQwnuSjDcm0qZfLFA9iuvPSh0bUawJXROoCGi1rs,1397
71
+ arbi/types/api/document_date_extractor_llm_config.py,sha256=CFJmVLmoK9GlOF4ikP8tNzWQLcCRxZC5RThyuK1nq4A,1109
72
+ arbi/types/api/document_date_extractor_llm_config_param.py,sha256=_HiOJmarO5r7tJvuTZSvvvPzj1xXPTOT3ANp1wicGWo,1053
73
+ arbi/types/api/document_delete_params.py,sha256=1peFbIK8JogrmU0jD56Q_hjKeHp_sTrDwf19ymsbH0w,349
74
+ arbi/types/api/document_get_parsed_response.py,sha256=Ug91THKXOkvxZdiwKAmQEBSaaY4zfKX2kDqZa5jli-w,588
75
+ arbi/types/api/document_retrieve_params.py,sha256=8IPr1bRpSPtm0SF4enU7OGOWKZnGf_cn32lb2qlFbkk,471
76
+ arbi/types/api/document_retrieve_response.py,sha256=qDVPqVf0TdvgEE8yBn0ebbc67TATQgk4mVs_beYWMDI,287
77
+ arbi/types/api/document_update_params.py,sha256=10Z2TRtVW_k5Qrsf8fFI2I024HjSa9hR31ldanoaysI,1156
78
+ arbi/types/api/document_update_response.py,sha256=mJmrR0n6zhYuhzkuAplvdIvDlUQeq3PobaR3oZvUnMs,283
79
+ arbi/types/api/document_upload_from_url_params.py,sha256=ymD_sW-GAo56dVr7zbyCPjZBot__nwkkgQWXeENLRWg,749
80
+ arbi/types/api/document_upload_from_url_response.py,sha256=-cCU55c14t0KO5P9agC32f9R0fWwoWfv9hfhS6qZNX4,396
81
+ arbi/types/api/document_upload_params.py,sha256=LM_p5ZuvmVw5J3XEgoEefgydE-8hXH9QIyp1VtRVxh0,746
82
+ arbi/types/api/document_upload_response.py,sha256=DXLXyNArWYB6otjPstDOkRBb3f0sH1HytHWIv-Wdzn0,382
83
+ arbi/types/api/embedder_config.py,sha256=bglJ7lPF5NMUmvw7_fUutQsRp8wL504ShVi33WJwuTs,1102
84
+ arbi/types/api/embedder_config_param.py,sha256=gTlvStClH1V0O0rdi7P8hSpHiMQuhfx1_snwxCPm3V8,1046
85
+ arbi/types/api/health_check_models_response.py,sha256=tMKh7I40pCkteDLR1TLMiutYEgCFQdEsc1l3nMS95DY,389
86
+ arbi/types/api/health_get_models_response.py,sha256=GpHTGHIz8ddUDkDwAYk-nMJ633q943BWhf5wzekRHls,403
87
+ arbi/types/api/health_retrieve_status_response.py,sha256=Tb5BV2NyzJnBG7JQA_25pKMSKwkESwys0DAUwfq_OZA,1004
88
+ arbi/types/api/model_citation_config.py,sha256=Y3xDl-Y2JmDV399iviALSeg-8r-vACx_7ah6PtEsIoM,774
89
+ arbi/types/api/model_citation_config_param.py,sha256=VtKOJMJoQaqacP7hMHL2TyYPIIIraHA7eN00OGhWygs,784
90
+ arbi/types/api/notification_create_params.py,sha256=mbSdniLjayp4xc3Q0QZ_2tPVWdkf0WCB3lK5dJchwlU,508
91
+ arbi/types/api/notification_create_response.py,sha256=5HO6wcZIL2_EX4FEN7OGfKpCRGfN52OIf0YfJ231Cq0,1229
92
+ arbi/types/api/notification_delete_params.py,sha256=Zjpc4Jg6TMiQ9xzEhUMuMEABgw8eGE11CRe6M2ylh94,357
93
+ arbi/types/api/notification_get_schemas_response.py,sha256=V_SoGi16vyCnyZlL8KQVLBz9I_qASKN83QzYJCxvJdU,4673
94
+ arbi/types/api/notification_list_response.py,sha256=C8rO-9NNINNbL7u4Hrt3EFchnFzCr-yzuRGN3lujx2U,1219
95
+ arbi/types/api/notification_update_params.py,sha256=Dp2_bIZ6kjaU_JSRSvqfs8TDpn0bqLRjFHHM0zpr7f8,676
96
+ arbi/types/api/notification_update_response.py,sha256=e3kNCFmKJK96xYsF4Gt-S864tyoodZc_j7HKJo7A398,1229
97
+ arbi/types/api/parser_config_param.py,sha256=lFJO9CO8m3e8YFltmHLrMKhC83FFwCJWjsua5l3Jjic,235
98
+ arbi/types/api/query_llm_config.py,sha256=LkDKaQgcaOg7HC76jW1RGGOnbZnwXSsjB42HXFLeTzE,1102
99
+ arbi/types/api/query_llm_config_param.py,sha256=bKGnr2jRqSI9BxnemLLehkRLCba9WvrS82LhtsnAPvc,1046
100
+ arbi/types/api/reranker_config.py,sha256=PJkomlrt6wYihqWcj7_oLgbdFY0ArFcRpU6m71XoD3M,718
101
+ arbi/types/api/reranker_config_param.py,sha256=eMFvnO972sio_O_gVFlmRhdmQWUWBbhpIkkhO3uVpaw,695
102
+ arbi/types/api/retriever_config.py,sha256=ys8EChjsZVhjtn1kdfqO5m6jnH3d0BmDYk3AWjbFSZ8,1654
103
+ arbi/types/api/retriever_config_param.py,sha256=RR81uOD1PvyKxeJIYJ0Q8zQXCDAsoFLxHWRNAEl4kDE,1580
104
+ arbi/types/api/tag_create_params.py,sha256=9p-poDztKJqQqljhPnOp92f-ZpyBXDtQVb_sHl4fuXQ,1334
105
+ arbi/types/api/tag_create_response.py,sha256=OdloCr-3t7wkPKo498USAniLJ-cd6bao6ez4ahxZCtA,1347
106
+ arbi/types/api/tag_delete_response.py,sha256=uRvx0SqOe0ZGQwl8oRAZGe7zyWk6SqNL77ksAfIs7M8,207
107
+ arbi/types/api/tag_update_params.py,sha256=c8yyiCRIII2OX-F6EoJ5oMvo_L77LSseLwk2eofqgFc,508
108
+ arbi/types/api/tag_update_response.py,sha256=a5wv5jCQeXekE4c3ptiRsIsot1_R5VbVCpEg_pRVfig,1347
109
+ arbi/types/api/title_llm_config.py,sha256=PXO4kMDbrvGGbOgCIOadvly1-r-mfWtqeYXL-pJH10s,1061
110
+ arbi/types/api/title_llm_config_param.py,sha256=4WG5AXMuSE6CKBxUwTXZZdzJDkzvBaTbqN2L8u_W4EU,1005
111
+ arbi/types/api/user_change_password_params.py,sha256=NUEceCschBF9BKqT27thb9eNqF2OKS0CgACZVSCRcjw,446
112
+ arbi/types/api/user_change_password_response.py,sha256=kSgwx-tEpC6PlMgaDddvIoePhifAjc0yPT-ViVarJIc,254
113
+ arbi/types/api/user_check_sso_status_params.py,sha256=Hb1NGMzrAuWYbhPNnS2B8ZsegHTRm-m0UB-PGuY8z1k,445
114
+ arbi/types/api/user_check_sso_status_response.py,sha256=UpPVW4VZl16fs4fAkZq-o9FNDO31bC4EATZZAsWlmuk,647
115
+ arbi/types/api/user_list_products_response.py,sha256=dOc8Y8ktYkrH04tMRCTOCuynwcAp4by_pUM7pHmZLU4,804
116
+ arbi/types/api/user_list_workspaces_response.py,sha256=X0oscmn3j575hI61D9rRytgNWvdw066jkSrhNohP2iw,309
117
+ arbi/types/api/user_login_params.py,sha256=5FNc0XkOrUwHfshulBDfnicz2BJp5t_2qFnCthzPeYQ,396
118
+ arbi/types/api/user_login_response.py,sha256=PIn5dr4PAxfw-UXxVzR2WZeNbH5LcOqHMh3-WNHwBwg,550
119
+ arbi/types/api/user_logout_response.py,sha256=osQbYps3A6UNKeIrbPRZcC9z1zgFv-wpVRicvAXbEGA,209
120
+ arbi/types/api/user_register_params.py,sha256=O0A9BnTrtl8NU5cJA3B_sG302Fa7tewiLLiCE61d954,479
121
+ arbi/types/api/user_response.py,sha256=uDXvGo9w8str7zcNmcam02C4oDEBCC1q7HDnlbocSo8,505
122
+ arbi/types/api/user_verify_email_params.py,sha256=urUDkRA7aQL3xI7b-6ZDthexP-5uh0z1f3YpTCSiQ9o,290
123
+ arbi/types/api/user_verify_email_response.py,sha256=Z94jdaY-UEugVFq-pV9tuS6w_7h8J0ZWfZuWQwcn56I,219
124
+ arbi/types/api/workspace_copy_params.py,sha256=XrMYume8IDcSsrmHLoD66RyYe3APwlxnsxv98gE7Ggk,677
125
+ arbi/types/api/workspace_copy_response.py,sha256=XniNhythTHEBSIKBJmP9CjcrgWqVhY3YE8DZBJ5n4K8,496
126
+ arbi/types/api/workspace_create_protected_params.py,sha256=GEWI-KNn3kb35x-mcm90Hsaq45B_a5HporRZNTXDUok,388
127
+ arbi/types/api/workspace_delete_response.py,sha256=9a8IW_EpP-YkirjDnXomQBe-JkgBv6FfH-x_R1WYKhI,219
128
+ arbi/types/api/workspace_get_conversations_response.py,sha256=vNrWUgpgVO0cjixDrmJdZsAv0c2HijEP6c-NvZpMEuI,707
129
+ arbi/types/api/workspace_get_documents_response.py,sha256=Jugc3x-GMaBiP0xBev78uQXlXGLjgRI2y-XerSpBsT0,297
130
+ arbi/types/api/workspace_get_stats_response.py,sha256=yNIGwDcCu9X8keA3JEv2J1s0Uc9gMAMxEEz51OnzIoM,441
131
+ arbi/types/api/workspace_get_tags_response.py,sha256=MaUq4rgmiST9nUBCHAmJTlcV7bx3w5fHMIn3BdDBh0k,1567
132
+ arbi/types/api/workspace_get_users_response.py,sha256=B1VOTXTJaBjrrIPaWIlIii32QSOZqSeOS42Rm0aNo70,292
133
+ arbi/types/api/workspace_remove_user_params.py,sha256=w5hOk29XiNAtgfe5wxdi9mfLWnwqpZg8FPTGhvIe0k8,304
134
+ arbi/types/api/workspace_remove_user_response.py,sha256=R6V0FWSqpL4OoZ4YbEQcohXU51Az4wQSDFYol3AfGCI,273
135
+ arbi/types/api/workspace_response.py,sha256=hyIBlrmgcILKROxIr3DyF_C2p_Ty8b_ELqQst8IUdec,853
136
+ arbi/types/api/workspace_share_params.py,sha256=GheVCcIXEfActMr7SiI2ZwMdIxJBPJ5x1swqqY5oZ4M,417
137
+ arbi/types/api/workspace_share_response.py,sha256=JOoU_wLjUiIdcY356mtmlO16OQZm8IAU00A_k55NnPw,266
138
+ arbi/types/api/workspace_update_params.py,sha256=CqswSvA9zrC7NncTFYcLJjBMZs_Xmfk6cP_y8L8J_j4,489
139
+ arbi/types/api/conversation/__init__.py,sha256=jzfeVJd78d972p4eSzTZNWXY7EXR50kJ3e6pzDcG8d8,393
140
+ arbi/types/api/conversation/user_add_params.py,sha256=bzAIbyla6URUE6xkArzggJnv1sDFxCG1AzYiMKMlQ74,280
141
+ arbi/types/api/conversation/user_add_response.py,sha256=85ahGr81kC7sqLn0T1r-AYxgvER4gFki6YdhxTJ1pf0,250
142
+ arbi/types/api/conversation/user_remove_params.py,sha256=97uPdwbgNpPhij4ZdOxYM5pvayf9gbNAQiFK8v81wbw,286
143
+ arbi/types/api/conversation/user_remove_response.py,sha256=fWNQvo7H5ZrtYW_PObSaQEhHbojHrazeoLRgCpWdYbI,256
144
+ arbi/types/api/document/__init__.py,sha256=8QYwGp9OEnfCHVmSk-1L78XaDafIWtttKCCet3nra2Y,660
145
+ arbi/types/api/document/doc_tag_response.py,sha256=aE-JZbTYiLNKjPRmZxhNy9y57yJIcrJqwYUJGQ1_310,805
146
+ arbi/types/api/document/doctag_create_params.py,sha256=TPk9rN6t3xuD_NvMwySs_x65NFW-8ntx_JBGmDLLCHw,877
147
+ arbi/types/api/document/doctag_create_response.py,sha256=W3weXHnnTgql2AjQ0My9Hueyo1RBj5bNg77kKA2_ft8,289
148
+ arbi/types/api/document/doctag_delete_params.py,sha256=u94Vfur7Abg3frHTaDALaTwk09gkPJ3ovvRuHQEt-3A,376
149
+ arbi/types/api/document/doctag_generate_params.py,sha256=je5hJctvj8hi3IB2WxqMbzN9Y4z_LtFzREVqUfLm3l4,617
150
+ arbi/types/api/document/doctag_generate_response.py,sha256=IlmlJh61eAgnQPBxImSP03QhqM-Hd6xQETILJOmcqBo,510
151
+ arbi/types/api/document/doctag_update_params.py,sha256=O8GzNtmEF7-sX6jiPEsglg2vqYarKlQrWFK1npebiNc,860
152
+ arbi/types/api/user/__init__.py,sha256=anULUv7UUxqbGvTzt5aKySS2sx2oH_sPqDaTirD6thI,906
153
+ arbi/types/api/user/contact_create_params.py,sha256=8ADL1b0LtmaQih2Ocyl2ea5XiWtM5uNXsRCAxgV3p_4,342
154
+ arbi/types/api/user/contact_create_response.py,sha256=5FB4lQncxl1guUNj5sD0fSHNQmsOUMoNzvjzSAuaRW8,817
155
+ arbi/types/api/user/contact_delete_params.py,sha256=x8U2_1RhpGfW_C-xxOX6WasbHudad-ejIhQv-FO7mQM,347
156
+ arbi/types/api/user/contact_list_response.py,sha256=7W0HHRK6PrtiM2MWRTeeM7rjwH2COyGHEYmZGnfTxBU,807
157
+ arbi/types/api/user/setting_retrieve_response.py,sha256=oR4Wcuwd5zREUxHT-eilbaf7ev3ZBbaqEUiwz3Gcfj0,2632
158
+ arbi/types/api/user/setting_update_params.py,sha256=SO-9mLEF-0hb38lfH9LKJONouh-us6mYcokAnR7saMo,1532
159
+ arbi/types/api/user/subscription_create_params.py,sha256=JGZApPmFHsLIIyYkOmhbra2bCKYgfn5cTW_UEJKUJtg,316
160
+ arbi/types/api/user/subscription_create_response.py,sha256=ZYx474gFNC9Y06gOwQJqHj6GTAY0U2sgZGM_SfRpdMQ,303
161
+ arbi/types/api/user/subscription_retrieve_response.py,sha256=-yYpieuLip2PITeV4_dPxMwgVNdXJaA-O45WaIRkxc8,1182
162
+ arbi-0.18.0.dist-info/METADATA,sha256=4bkCOOH8TFxo9-sWiNe72eMr6n9gJdIrnED6lPIiozs,13300
163
+ arbi-0.18.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
164
+ arbi-0.18.0.dist-info/licenses/LICENSE,sha256=WkfZReOrGows6re0a6rdV77cbYzWNHVKXTvKYeOWRLM,11334
165
+ arbi-0.18.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.26.3
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any