mixpeek 0.9.0__py3-none-any.whl → 0.10.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.
- {mixpeek_sdk → mixpeek}/__init__.py +2 -2
- {mixpeek_sdk → mixpeek}/_base_client.py +1 -1
- {mixpeek_sdk → mixpeek}/_response.py +4 -6
- {mixpeek_sdk → mixpeek}/_types.py +1 -1
- {mixpeek_sdk → mixpeek}/_utils/_logs.py +2 -2
- {mixpeek_sdk → mixpeek}/_version.py +2 -2
- {mixpeek-0.9.0.dist-info → mixpeek-0.10.0.dist-info}/METADATA +19 -19
- mixpeek-0.10.0.dist-info/RECORD +73 -0
- mixpeek-0.9.0.dist-info/RECORD +0 -73
- {mixpeek_sdk → mixpeek}/_client.py +0 -0
- {mixpeek_sdk → mixpeek}/_compat.py +0 -0
- {mixpeek_sdk → mixpeek}/_constants.py +0 -0
- {mixpeek_sdk → mixpeek}/_exceptions.py +0 -0
- {mixpeek_sdk → mixpeek}/_files.py +0 -0
- {mixpeek_sdk → mixpeek}/_models.py +0 -0
- {mixpeek_sdk → mixpeek}/_qs.py +0 -0
- {mixpeek_sdk → mixpeek}/_resource.py +0 -0
- {mixpeek_sdk → mixpeek}/_streaming.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_proxy.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_reflection.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_streams.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_sync.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_transform.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_typing.py +0 -0
- {mixpeek_sdk → mixpeek}/_utils/_utils.py +0 -0
- {mixpeek_sdk → mixpeek}/lib/.keep +0 -0
- {mixpeek_sdk → mixpeek}/py.typed +0 -0
- {mixpeek_sdk → mixpeek}/resources/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/accounts/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/accounts/accounts.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/accounts/private.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/agent/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/agent/agent.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/agent/task.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/collections/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/collections/collections.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/collections/files.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/describe.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/embed.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/indexes.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/read.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/recognize.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/search.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/tasks.py +0 -0
- {mixpeek_sdk → mixpeek}/resources/transcribe.py +0 -0
- {mixpeek_sdk → mixpeek}/types/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/types/accounts/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/types/accounts/private_update_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/accounts/user.py +0 -0
- {mixpeek_sdk → mixpeek}/types/agent/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/types/agent_create_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/agentresponse.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collection_search_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collections/__init__.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collections/file_create_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collections/file_full_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collections/file_update_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collections/fileresponse.py +0 -0
- {mixpeek_sdk → mixpeek}/types/collections/groupedfiledata.py +0 -0
- {mixpeek_sdk → mixpeek}/types/describe_upload_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/describe_url_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/embed_create_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/embeddingresponse.py +0 -0
- {mixpeek_sdk → mixpeek}/types/index_face_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/index_upload_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/index_url_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/search_text_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/search_upload_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/search_url_params.py +0 -0
- {mixpeek_sdk → mixpeek}/types/taskresponse.py +0 -0
- {mixpeek_sdk → mixpeek}/types/transcribe_url_params.py +0 -0
- {mixpeek-0.9.0.dist-info → mixpeek-0.10.0.dist-info}/WHEEL +0 -0
- {mixpeek-0.9.0.dist-info → mixpeek-0.10.0.dist-info}/licenses/LICENSE +0 -0
@@ -82,12 +82,12 @@ _setup_logging()
|
|
82
82
|
# Update the __module__ attribute for exported symbols so that
|
83
83
|
# error messages point to this module instead of the module
|
84
84
|
# it was originally defined in, e.g.
|
85
|
-
#
|
85
|
+
# mixpeek._exceptions.NotFoundError -> mixpeek.NotFoundError
|
86
86
|
__locals = locals()
|
87
87
|
for __name in __all__:
|
88
88
|
if not __name.startswith("__"):
|
89
89
|
try:
|
90
|
-
__locals[__name].__module__ = "
|
90
|
+
__locals[__name].__module__ = "mixpeek"
|
91
91
|
except (TypeError, AttributeError):
|
92
92
|
# Some of our exported symbols are builtins which we can't set attributes for.
|
93
93
|
pass
|
@@ -367,7 +367,7 @@ class BaseClient(Generic[_HttpxClientT, _DefaultStreamT]):
|
|
367
367
|
|
368
368
|
if max_retries is None: # pyright: ignore[reportUnnecessaryComparison]
|
369
369
|
raise TypeError(
|
370
|
-
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `
|
370
|
+
"max_retries cannot be None. If you want to disable retries, pass `0`; if you want unlimited retries, pass `math.inf` or a very high number; if you want the default behavior, pass `mixpeek.DEFAULT_MAX_RETRIES`"
|
371
371
|
)
|
372
372
|
|
373
373
|
def _enforce_trailing_slash(self, url: URL) -> URL:
|
@@ -211,9 +211,7 @@ class BaseAPIResponse(Generic[R]):
|
|
211
211
|
return cast(R, response)
|
212
212
|
|
213
213
|
if inspect.isclass(origin) and not issubclass(origin, BaseModel) and issubclass(origin, pydantic.BaseModel):
|
214
|
-
raise TypeError(
|
215
|
-
"Pydantic models must subclass our base model type, e.g. `from mixpeek_sdk import BaseModel`"
|
216
|
-
)
|
214
|
+
raise TypeError("Pydantic models must subclass our base model type, e.g. `from mixpeek import BaseModel`")
|
217
215
|
|
218
216
|
if (
|
219
217
|
cast_to is not object
|
@@ -279,7 +277,7 @@ class APIResponse(BaseAPIResponse[R]):
|
|
279
277
|
the `to` argument, e.g.
|
280
278
|
|
281
279
|
```py
|
282
|
-
from
|
280
|
+
from mixpeek import BaseModel
|
283
281
|
|
284
282
|
|
285
283
|
class MyModel(BaseModel):
|
@@ -381,7 +379,7 @@ class AsyncAPIResponse(BaseAPIResponse[R]):
|
|
381
379
|
the `to` argument, e.g.
|
382
380
|
|
383
381
|
```py
|
384
|
-
from
|
382
|
+
from mixpeek import BaseModel
|
385
383
|
|
386
384
|
|
387
385
|
class MyModel(BaseModel):
|
@@ -552,7 +550,7 @@ class AsyncStreamedBinaryAPIResponse(AsyncAPIResponse[bytes]):
|
|
552
550
|
class MissingStreamClassError(TypeError):
|
553
551
|
def __init__(self) -> None:
|
554
552
|
super().__init__(
|
555
|
-
"The `stream` argument was set to `True` but the `stream_cls` argument was not given. See `
|
553
|
+
"The `stream` argument was set to `True` but the `stream_cls` argument was not given. See `mixpeek._streaming` for reference",
|
556
554
|
)
|
557
555
|
|
558
556
|
|
@@ -81,7 +81,7 @@ HttpxRequestFiles = Union[Mapping[str, HttpxFileTypes], Sequence[Tuple[str, Http
|
|
81
81
|
# This unfortunately means that you will either have
|
82
82
|
# to import this type and pass it explicitly:
|
83
83
|
#
|
84
|
-
# from
|
84
|
+
# from mixpeek import NoneType
|
85
85
|
# client.get('/foo', cast_to=NoneType)
|
86
86
|
#
|
87
87
|
# or build it yourself:
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import os
|
2
2
|
import logging
|
3
3
|
|
4
|
-
logger: logging.Logger = logging.getLogger("
|
4
|
+
logger: logging.Logger = logging.getLogger("mixpeek")
|
5
5
|
httpx_logger: logging.Logger = logging.getLogger("httpx")
|
6
6
|
|
7
7
|
|
8
8
|
def _basic_config() -> None:
|
9
|
-
# e.g. [2023-10-05 14:12:26 -
|
9
|
+
# e.g. [2023-10-05 14:12:26 - mixpeek._base_client:818 - DEBUG] HTTP Request: POST http://127.0.0.1:4010/foo/bar "200 OK"
|
10
10
|
logging.basicConfig(
|
11
11
|
format="[%(asctime)s - %(name)s:%(lineno)d - %(levelname)s] %(message)s",
|
12
12
|
datefmt="%Y-%m-%d %H:%M:%S",
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: mixpeek
|
3
|
-
Version: 0.
|
3
|
+
Version: 0.10.0
|
4
4
|
Summary: The official Python library for the mixpeek-sdk API
|
5
5
|
Project-URL: Homepage, https://github.com/mixpeek/python-client
|
6
6
|
Project-URL: Repository, https://github.com/mixpeek/python-client
|
@@ -58,7 +58,7 @@ pip install mixpeek
|
|
58
58
|
The full API of this library can be found in [api.md](https://github.com/mixpeek/python-client/tree/main/api.md).
|
59
59
|
|
60
60
|
```python
|
61
|
-
from
|
61
|
+
from mixpeek import MixpeekSDK
|
62
62
|
|
63
63
|
client = MixpeekSDK()
|
64
64
|
|
@@ -74,7 +74,7 @@ Simply import `AsyncMixpeekSDK` instead of `MixpeekSDK` and use `await` with eac
|
|
74
74
|
|
75
75
|
```python
|
76
76
|
import asyncio
|
77
|
-
from
|
77
|
+
from mixpeek import AsyncMixpeekSDK
|
78
78
|
|
79
79
|
client = AsyncMixpeekSDK()
|
80
80
|
|
@@ -102,16 +102,16 @@ Typed requests and responses provide autocomplete and documentation within your
|
|
102
102
|
|
103
103
|
## Handling errors
|
104
104
|
|
105
|
-
When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `
|
105
|
+
When the library is unable to connect to the API (for example, due to network connection problems or a timeout), a subclass of `mixpeek.APIConnectionError` is raised.
|
106
106
|
|
107
107
|
When the API returns a non-success status code (that is, 4xx or 5xx
|
108
|
-
response), a subclass of `
|
108
|
+
response), a subclass of `mixpeek.APIStatusError` is raised, containing `status_code` and `response` properties.
|
109
109
|
|
110
|
-
All errors inherit from `
|
110
|
+
All errors inherit from `mixpeek.APIError`.
|
111
111
|
|
112
112
|
```python
|
113
|
-
import
|
114
|
-
from
|
113
|
+
import mixpeek
|
114
|
+
from mixpeek import MixpeekSDK
|
115
115
|
|
116
116
|
client = MixpeekSDK()
|
117
117
|
|
@@ -119,12 +119,12 @@ try:
|
|
119
119
|
client.agent.create(
|
120
120
|
prompt="prompt",
|
121
121
|
)
|
122
|
-
except
|
122
|
+
except mixpeek.APIConnectionError as e:
|
123
123
|
print("The server could not be reached")
|
124
124
|
print(e.__cause__) # an underlying Exception, likely raised within httpx.
|
125
|
-
except
|
125
|
+
except mixpeek.RateLimitError as e:
|
126
126
|
print("A 429 status code was received; we should back off a bit.")
|
127
|
-
except
|
127
|
+
except mixpeek.APIStatusError as e:
|
128
128
|
print("Another non-200-range status code was received")
|
129
129
|
print(e.status_code)
|
130
130
|
print(e.response)
|
@@ -152,7 +152,7 @@ Connection errors (for example, due to a network connectivity problem), 408 Requ
|
|
152
152
|
You can use the `max_retries` option to configure or disable retry settings:
|
153
153
|
|
154
154
|
```python
|
155
|
-
from
|
155
|
+
from mixpeek import MixpeekSDK
|
156
156
|
|
157
157
|
# Configure the default for all requests:
|
158
158
|
client = MixpeekSDK(
|
@@ -172,7 +172,7 @@ By default requests time out after 1 minute. You can configure this with a `time
|
|
172
172
|
which accepts a float or an [`httpx.Timeout`](https://www.python-httpx.org/advanced/#fine-tuning-the-configuration) object:
|
173
173
|
|
174
174
|
```python
|
175
|
-
from
|
175
|
+
from mixpeek import MixpeekSDK
|
176
176
|
|
177
177
|
# Configure the default for all requests:
|
178
178
|
client = MixpeekSDK(
|
@@ -224,7 +224,7 @@ if response.my_field is None:
|
|
224
224
|
The "raw" Response object can be accessed by prefixing `.with_raw_response.` to any HTTP method call, e.g.,
|
225
225
|
|
226
226
|
```py
|
227
|
-
from
|
227
|
+
from mixpeek import MixpeekSDK
|
228
228
|
|
229
229
|
client = MixpeekSDK()
|
230
230
|
response = client.agent.with_raw_response.create(
|
@@ -236,9 +236,9 @@ agent = response.parse() # get the object that `agent.create()` would have retu
|
|
236
236
|
print(agent.task_id)
|
237
237
|
```
|
238
238
|
|
239
|
-
These methods return an [`APIResponse`](https://github.com/mixpeek/python-client/tree/main/src/
|
239
|
+
These methods return an [`APIResponse`](https://github.com/mixpeek/python-client/tree/main/src/mixpeek/_response.py) object.
|
240
240
|
|
241
|
-
The async client returns an [`AsyncAPIResponse`](https://github.com/mixpeek/python-client/tree/main/src/
|
241
|
+
The async client returns an [`AsyncAPIResponse`](https://github.com/mixpeek/python-client/tree/main/src/mixpeek/_response.py) with the same structure, the only difference being `await`able methods for reading the response content.
|
242
242
|
|
243
243
|
#### `.with_streaming_response`
|
244
244
|
|
@@ -302,7 +302,7 @@ You can directly override the [httpx client](https://www.python-httpx.org/api/#c
|
|
302
302
|
- Additional [advanced](https://www.python-httpx.org/advanced/clients/) functionality
|
303
303
|
|
304
304
|
```python
|
305
|
-
from
|
305
|
+
from mixpeek import MixpeekSDK, DefaultHttpxClient
|
306
306
|
|
307
307
|
client = MixpeekSDK(
|
308
308
|
# Or use the `MIXPEEK_SDK_BASE_URL` env var
|
@@ -343,8 +343,8 @@ If you've upgraded to the latest version but aren't seeing any new features you
|
|
343
343
|
You can determine the version that is being used at runtime with:
|
344
344
|
|
345
345
|
```py
|
346
|
-
import
|
347
|
-
print(
|
346
|
+
import mixpeek
|
347
|
+
print(mixpeek.__version__)
|
348
348
|
```
|
349
349
|
|
350
350
|
## Requirements
|
@@ -0,0 +1,73 @@
|
|
1
|
+
mixpeek/__init__.py,sha256=wObrIBuBL_xHgCrg25PizCeS5_uCnzkUZ-NcikCK12Q,2467
|
2
|
+
mixpeek/_base_client.py,sha256=s07x-vuiHSXvOcVCi1gUBJK-z0rQcRMPtgsu9Golrq8,67841
|
3
|
+
mixpeek/_client.py,sha256=egHTc50BGCI1t4DEV6-8mm1N9dZYCmqtHxB1RSbXabQ,18965
|
4
|
+
mixpeek/_compat.py,sha256=9CWnEaYK0kot7aSNW-m2W9xZb5giIdvKN9sWxvBbbSA,6488
|
5
|
+
mixpeek/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
|
6
|
+
mixpeek/_exceptions.py,sha256=uhuT-chEyIWrSHVO6_mF07FIHDWIPL7RlWpgAjtLMNA,3228
|
7
|
+
mixpeek/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
|
8
|
+
mixpeek/_models.py,sha256=pXirq94yiihFXBbiR50vA-0NIlDurxbJ_rLXK062vWQ,28267
|
9
|
+
mixpeek/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
10
|
+
mixpeek/_resource.py,sha256=eFmGH2QSR3EXTXg6Yt0O475Of9KwH4ybaL-pI6OOzVo,1124
|
11
|
+
mixpeek/_response.py,sha256=bwhRXr3-tSNt10FAFpUkD1jyJEIsl2F-2_krIWMPmBA,28621
|
12
|
+
mixpeek/_streaming.py,sha256=eD7nQ3pmDWgSLauSbtmacvyRnTRgI3jDRLm5hhng-X0,10116
|
13
|
+
mixpeek/_types.py,sha256=tJvYXv32jVWyG2ya-ck8uaM1RQkI46JbN8KgnPI04hM,6104
|
14
|
+
mixpeek/_version.py,sha256=5p3w53wI5ZJ2tYwRcrN4Ca-c3IdQ3s65sC_sFPC8RBo,160
|
15
|
+
mixpeek/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
+
mixpeek/_utils/__init__.py,sha256=Uzq1-FIih_VUjzdNVWXks0sdC39KBKLMrZoz-_JOjJ4,1988
|
17
|
+
mixpeek/_utils/_logs.py,sha256=2YsmQFfM-GghkvVSREr4h13bndnOGpmfPY6-JiEoo7I,781
|
18
|
+
mixpeek/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,1902
|
19
|
+
mixpeek/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
20
|
+
mixpeek/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
21
|
+
mixpeek/_utils/_sync.py,sha256=9ex9pfOyd8xAF1LxpFx4IkqL8k0vk8srE2Ee-OTMQ0A,2840
|
22
|
+
mixpeek/_utils/_transform.py,sha256=NCz3q9_O-vuj60xVe-qzhEQ8uJWlZWJTsM-GwHDccf8,12958
|
23
|
+
mixpeek/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
|
24
|
+
mixpeek/_utils/_utils.py,sha256=tYrr7IX-5NMwsVKbNggbzOM84uNw7XnAe06e2Ln8Or0,11472
|
25
|
+
mixpeek/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
26
|
+
mixpeek/resources/__init__.py,sha256=lPQr0-9OSmFepm4x6QtdBs1_lRiWnTM2R8PpM025JBw,5208
|
27
|
+
mixpeek/resources/describe.py,sha256=3hCcuix_0Los0jzOyXi6PSUcL5Rr3FH0dVQyampBHA4,11853
|
28
|
+
mixpeek/resources/embed.py,sha256=-TD_nOTft0xP19wOceNO-muqOxt9P9ZDLovq8Cp42Wk,7978
|
29
|
+
mixpeek/resources/indexes.py,sha256=l750NICTNAjDmnF08GQBxKR0a9z71b_5hPTLFDShjhQ,18294
|
30
|
+
mixpeek/resources/read.py,sha256=_ZMKbD60ZMh3inFXhlE5abdXAi3cKgJ1y2BuJ7X80jA,6086
|
31
|
+
mixpeek/resources/recognize.py,sha256=wTDuhmlrhJmmu2HgDteOmEubjjfR4i2mgCNGxwW6IqE,6276
|
32
|
+
mixpeek/resources/search.py,sha256=phut239bkb_ccuFshxSqOtPYxl7Idg8uO_i7qX-mHN4,19163
|
33
|
+
mixpeek/resources/tasks.py,sha256=5aooYZQj37HeagQVyNc5uNMaytNpqO04t1LR5hRoF-Q,10154
|
34
|
+
mixpeek/resources/transcribe.py,sha256=mePVOsYOtd7nu4SBIIGjnQQVaoFKgWLuwYNVrhjhiLI,6645
|
35
|
+
mixpeek/resources/accounts/__init__.py,sha256=E2G262T6ZDvdgtjoDYDJhJPBaJSgTmoP0kF56RfgJJA,1041
|
36
|
+
mixpeek/resources/accounts/accounts.py,sha256=PQyQ6PlTB2ID3tWO2w83v6w8EEhIxankIBHqgvRIxzQ,3696
|
37
|
+
mixpeek/resources/accounts/private.py,sha256=To8ibZL84SV3HjpuaJCzHxvMCr7lRPo0aUiVTSqvre0,8297
|
38
|
+
mixpeek/resources/agent/__init__.py,sha256=8ZziMYVbbdclY956Wi1JQsJflO9piM5LxYbvIfZa--c,963
|
39
|
+
mixpeek/resources/agent/agent.py,sha256=zxasXvU0ZzBB23IcAcXQCpwm2kv4lLueftoYHmMZFbU,7566
|
40
|
+
mixpeek/resources/agent/task.py,sha256=Imnwoo2_0e4V5KY3NzwaurKRR0wmlOLilJcoE4UNXVU,6446
|
41
|
+
mixpeek/resources/collections/__init__.py,sha256=Z2Rifyx7j2prEwAq-vNKkLYGnLx8x56SYrbBHFkDrTk,1054
|
42
|
+
mixpeek/resources/collections/collections.py,sha256=ShYvSrIMydBr4aXtzNyQQqCBKKPSOuUbGJnil1ODgDE,16046
|
43
|
+
mixpeek/resources/collections/files.py,sha256=8YEyCZ0tmQyJq1R-orpoQr3oHowIank53-h2zXMkjgg,23978
|
44
|
+
mixpeek/types/__init__.py,sha256=2i4VRNuULZs79qxlKQAsl6H73r48RL3QA74TACObmJQ,1179
|
45
|
+
mixpeek/types/agent_create_params.py,sha256=3fS7o2hkeb5UShD0F75A6QGCok1N48DeltGZv3gKROk,496
|
46
|
+
mixpeek/types/agentresponse.py,sha256=L4E4fo937sp2HdfVIR7ThWg-5QLYdUcQLzVD6xvkrAM,201
|
47
|
+
mixpeek/types/collection_search_params.py,sha256=RLSZrA5Jzrq2a4E7KYb_c-ndC4zyWuQbIGWEDwQI6Xc,689
|
48
|
+
mixpeek/types/describe_upload_params.py,sha256=104kgev7KKoKWrCoxjq8iikX8z6tcGNUQx9Yq-C3sos,564
|
49
|
+
mixpeek/types/describe_url_params.py,sha256=UQqhEQsLkr6dgpzdxTJnNR9q2Y5PXPDE6xY5SqhibdU,520
|
50
|
+
mixpeek/types/embed_create_params.py,sha256=p_Eav7Q7a1yenVn2mlBMhOkJFQBZ_TdASo5lDaeqeUg,869
|
51
|
+
mixpeek/types/embeddingresponse.py,sha256=tBHASrZxPXjTHFQq6J_PcyTiTxkVDtJ8jSlGvDmJN9g,387
|
52
|
+
mixpeek/types/index_face_params.py,sha256=kr2mbNuwbvllvQkltIUSMg4mjBSCXAkPxdW8itbw0ZY,580
|
53
|
+
mixpeek/types/index_upload_params.py,sha256=xkMJjoGu5ABj-b3TBQbuZat5WpNI4ebzFCpsd5oVATc,634
|
54
|
+
mixpeek/types/index_url_params.py,sha256=Mr0Sxlz8vAApxn0zdkiZazNnH7NG1Lw5RyCzfozjeuM,3944
|
55
|
+
mixpeek/types/search_text_params.py,sha256=PnFcLYGNUrW6IEJyI7U3yAXJkhrIz5szHGfznMDZ7kI,1023
|
56
|
+
mixpeek/types/search_upload_params.py,sha256=GudNCR_eLafFuhlo5sSt1OtVWUlOF7x42jDwHbjj1_8,586
|
57
|
+
mixpeek/types/search_url_params.py,sha256=_ZqnuWinCjlfeO6zBNx4hzK68wVWqQfWi8fAS54aZuQ,1021
|
58
|
+
mixpeek/types/taskresponse.py,sha256=ub9aVQmtRi87lwOSVXfsMxe41cHetcfd5hKqBABVlF4,338
|
59
|
+
mixpeek/types/transcribe_url_params.py,sha256=1kyl8zfRmAdGaGtoyLJ54C9tNGw0TcvzVf4349gpwzo,497
|
60
|
+
mixpeek/types/accounts/__init__.py,sha256=QI8K7JwYVH6Shx_rYwvyR8VFKfPWCZ3D9tWb3ADGy60,232
|
61
|
+
mixpeek/types/accounts/private_update_params.py,sha256=MGldBmPtblgLmPvXFb4I4QhAXr9DRzcGt038tDAFyGg,605
|
62
|
+
mixpeek/types/accounts/user.py,sha256=Yrd_MHznqxot7BQqymmMH7dlhzkLz4Y35b3YuEL-PCc,629
|
63
|
+
mixpeek/types/agent/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
64
|
+
mixpeek/types/collections/__init__.py,sha256=Ow92wueBqOBbAO-6s4O8xBnKyKR5R1ZvakO3oYxmzmA,443
|
65
|
+
mixpeek/types/collections/file_create_params.py,sha256=7H-805bacjFwTvR8_DWW2xzecpn1enouhQ8WKIhgxb4,704
|
66
|
+
mixpeek/types/collections/file_full_params.py,sha256=AYuEQew8Sdx3XGLt5UY_ORYFKgi_ctD-ieruGh_x-0M,508
|
67
|
+
mixpeek/types/collections/file_update_params.py,sha256=m1C33PolkgSr0arL3elxEzXfXRRBf9Q6GBB6DECsZ18,496
|
68
|
+
mixpeek/types/collections/fileresponse.py,sha256=iokbF3X_sE6-Vkt8sUDoazTNTwyIvh-Yvp7cK0d7rQI,351
|
69
|
+
mixpeek/types/collections/groupedfiledata.py,sha256=id9xiaw-DTnpLThbDlI7q08SfG-PrG18z1gMWLc2g5w,700
|
70
|
+
mixpeek-0.10.0.dist-info/METADATA,sha256=x-6YoBycohjifNNfaywaPOmUcEHJ6kU2fWs0ts5NAI4,12157
|
71
|
+
mixpeek-0.10.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
72
|
+
mixpeek-0.10.0.dist-info/licenses/LICENSE,sha256=-o6p7v4Plgq-5IW0zY3volFbC4BWuzDH_VebeITLtLU,11341
|
73
|
+
mixpeek-0.10.0.dist-info/RECORD,,
|
mixpeek-0.9.0.dist-info/RECORD
DELETED
@@ -1,73 +0,0 @@
|
|
1
|
-
mixpeek_sdk/__init__.py,sha256=cb2Nnlnknbtn0gbWTA0YtqMGqZI7RbMgHhPpxIfQwes,2479
|
2
|
-
mixpeek_sdk/_base_client.py,sha256=dnjxb2J9BgMPl5ti32p4X_aAp_5y7U9QlkRUZEhHSMw,67845
|
3
|
-
mixpeek_sdk/_client.py,sha256=egHTc50BGCI1t4DEV6-8mm1N9dZYCmqtHxB1RSbXabQ,18965
|
4
|
-
mixpeek_sdk/_compat.py,sha256=9CWnEaYK0kot7aSNW-m2W9xZb5giIdvKN9sWxvBbbSA,6488
|
5
|
-
mixpeek_sdk/_constants.py,sha256=JE8kyZa2Q4NK_i4fO--8siEYTzeHnT0fYbOFDgDP4uk,464
|
6
|
-
mixpeek_sdk/_exceptions.py,sha256=uhuT-chEyIWrSHVO6_mF07FIHDWIPL7RlWpgAjtLMNA,3228
|
7
|
-
mixpeek_sdk/_files.py,sha256=mf4dOgL4b0ryyZlbqLhggD3GVgDf6XxdGFAgce01ugE,3549
|
8
|
-
mixpeek_sdk/_models.py,sha256=pXirq94yiihFXBbiR50vA-0NIlDurxbJ_rLXK062vWQ,28267
|
9
|
-
mixpeek_sdk/_qs.py,sha256=AOkSz4rHtK4YI3ZU_kzea-zpwBUgEY8WniGmTPyEimc,4846
|
10
|
-
mixpeek_sdk/_resource.py,sha256=eFmGH2QSR3EXTXg6Yt0O475Of9KwH4ybaL-pI6OOzVo,1124
|
11
|
-
mixpeek_sdk/_response.py,sha256=gqTeZXY33J9o3TM2WuVejtE_VETFLGdzkfI0NAiAabk,28667
|
12
|
-
mixpeek_sdk/_streaming.py,sha256=eD7nQ3pmDWgSLauSbtmacvyRnTRgI3jDRLm5hhng-X0,10116
|
13
|
-
mixpeek_sdk/_types.py,sha256=loR54ynzKuTaxp6NMfHDMPedXe40QPYDQr-UN8ubTQk,6108
|
14
|
-
mixpeek_sdk/_version.py,sha256=2r9FkoYgySnPtxK14k5suKZprj0N2TYDSOzG2w4hEuY,163
|
15
|
-
mixpeek_sdk/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
16
|
-
mixpeek_sdk/_utils/__init__.py,sha256=Uzq1-FIih_VUjzdNVWXks0sdC39KBKLMrZoz-_JOjJ4,1988
|
17
|
-
mixpeek_sdk/_utils/_logs.py,sha256=1-VkdvCyw_UmTG5JpUgGgZnWJU5oJIGuTR4-_YoQ1L8,789
|
18
|
-
mixpeek_sdk/_utils/_proxy.py,sha256=z3zsateHtb0EARTWKk8QZNHfPkqJbqwd1lM993LBwGE,1902
|
19
|
-
mixpeek_sdk/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
20
|
-
mixpeek_sdk/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
21
|
-
mixpeek_sdk/_utils/_sync.py,sha256=9ex9pfOyd8xAF1LxpFx4IkqL8k0vk8srE2Ee-OTMQ0A,2840
|
22
|
-
mixpeek_sdk/_utils/_transform.py,sha256=NCz3q9_O-vuj60xVe-qzhEQ8uJWlZWJTsM-GwHDccf8,12958
|
23
|
-
mixpeek_sdk/_utils/_typing.py,sha256=tFbktdpdHCQliwzGsWysgn0P5H0JRdagkZdb_LegGkY,3838
|
24
|
-
mixpeek_sdk/_utils/_utils.py,sha256=tYrr7IX-5NMwsVKbNggbzOM84uNw7XnAe06e2Ln8Or0,11472
|
25
|
-
mixpeek_sdk/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
26
|
-
mixpeek_sdk/resources/__init__.py,sha256=lPQr0-9OSmFepm4x6QtdBs1_lRiWnTM2R8PpM025JBw,5208
|
27
|
-
mixpeek_sdk/resources/describe.py,sha256=3hCcuix_0Los0jzOyXi6PSUcL5Rr3FH0dVQyampBHA4,11853
|
28
|
-
mixpeek_sdk/resources/embed.py,sha256=-TD_nOTft0xP19wOceNO-muqOxt9P9ZDLovq8Cp42Wk,7978
|
29
|
-
mixpeek_sdk/resources/indexes.py,sha256=l750NICTNAjDmnF08GQBxKR0a9z71b_5hPTLFDShjhQ,18294
|
30
|
-
mixpeek_sdk/resources/read.py,sha256=_ZMKbD60ZMh3inFXhlE5abdXAi3cKgJ1y2BuJ7X80jA,6086
|
31
|
-
mixpeek_sdk/resources/recognize.py,sha256=wTDuhmlrhJmmu2HgDteOmEubjjfR4i2mgCNGxwW6IqE,6276
|
32
|
-
mixpeek_sdk/resources/search.py,sha256=phut239bkb_ccuFshxSqOtPYxl7Idg8uO_i7qX-mHN4,19163
|
33
|
-
mixpeek_sdk/resources/tasks.py,sha256=5aooYZQj37HeagQVyNc5uNMaytNpqO04t1LR5hRoF-Q,10154
|
34
|
-
mixpeek_sdk/resources/transcribe.py,sha256=mePVOsYOtd7nu4SBIIGjnQQVaoFKgWLuwYNVrhjhiLI,6645
|
35
|
-
mixpeek_sdk/resources/accounts/__init__.py,sha256=E2G262T6ZDvdgtjoDYDJhJPBaJSgTmoP0kF56RfgJJA,1041
|
36
|
-
mixpeek_sdk/resources/accounts/accounts.py,sha256=PQyQ6PlTB2ID3tWO2w83v6w8EEhIxankIBHqgvRIxzQ,3696
|
37
|
-
mixpeek_sdk/resources/accounts/private.py,sha256=To8ibZL84SV3HjpuaJCzHxvMCr7lRPo0aUiVTSqvre0,8297
|
38
|
-
mixpeek_sdk/resources/agent/__init__.py,sha256=8ZziMYVbbdclY956Wi1JQsJflO9piM5LxYbvIfZa--c,963
|
39
|
-
mixpeek_sdk/resources/agent/agent.py,sha256=zxasXvU0ZzBB23IcAcXQCpwm2kv4lLueftoYHmMZFbU,7566
|
40
|
-
mixpeek_sdk/resources/agent/task.py,sha256=Imnwoo2_0e4V5KY3NzwaurKRR0wmlOLilJcoE4UNXVU,6446
|
41
|
-
mixpeek_sdk/resources/collections/__init__.py,sha256=Z2Rifyx7j2prEwAq-vNKkLYGnLx8x56SYrbBHFkDrTk,1054
|
42
|
-
mixpeek_sdk/resources/collections/collections.py,sha256=ShYvSrIMydBr4aXtzNyQQqCBKKPSOuUbGJnil1ODgDE,16046
|
43
|
-
mixpeek_sdk/resources/collections/files.py,sha256=8YEyCZ0tmQyJq1R-orpoQr3oHowIank53-h2zXMkjgg,23978
|
44
|
-
mixpeek_sdk/types/__init__.py,sha256=2i4VRNuULZs79qxlKQAsl6H73r48RL3QA74TACObmJQ,1179
|
45
|
-
mixpeek_sdk/types/agent_create_params.py,sha256=3fS7o2hkeb5UShD0F75A6QGCok1N48DeltGZv3gKROk,496
|
46
|
-
mixpeek_sdk/types/agentresponse.py,sha256=L4E4fo937sp2HdfVIR7ThWg-5QLYdUcQLzVD6xvkrAM,201
|
47
|
-
mixpeek_sdk/types/collection_search_params.py,sha256=RLSZrA5Jzrq2a4E7KYb_c-ndC4zyWuQbIGWEDwQI6Xc,689
|
48
|
-
mixpeek_sdk/types/describe_upload_params.py,sha256=104kgev7KKoKWrCoxjq8iikX8z6tcGNUQx9Yq-C3sos,564
|
49
|
-
mixpeek_sdk/types/describe_url_params.py,sha256=UQqhEQsLkr6dgpzdxTJnNR9q2Y5PXPDE6xY5SqhibdU,520
|
50
|
-
mixpeek_sdk/types/embed_create_params.py,sha256=p_Eav7Q7a1yenVn2mlBMhOkJFQBZ_TdASo5lDaeqeUg,869
|
51
|
-
mixpeek_sdk/types/embeddingresponse.py,sha256=tBHASrZxPXjTHFQq6J_PcyTiTxkVDtJ8jSlGvDmJN9g,387
|
52
|
-
mixpeek_sdk/types/index_face_params.py,sha256=kr2mbNuwbvllvQkltIUSMg4mjBSCXAkPxdW8itbw0ZY,580
|
53
|
-
mixpeek_sdk/types/index_upload_params.py,sha256=xkMJjoGu5ABj-b3TBQbuZat5WpNI4ebzFCpsd5oVATc,634
|
54
|
-
mixpeek_sdk/types/index_url_params.py,sha256=Mr0Sxlz8vAApxn0zdkiZazNnH7NG1Lw5RyCzfozjeuM,3944
|
55
|
-
mixpeek_sdk/types/search_text_params.py,sha256=PnFcLYGNUrW6IEJyI7U3yAXJkhrIz5szHGfznMDZ7kI,1023
|
56
|
-
mixpeek_sdk/types/search_upload_params.py,sha256=GudNCR_eLafFuhlo5sSt1OtVWUlOF7x42jDwHbjj1_8,586
|
57
|
-
mixpeek_sdk/types/search_url_params.py,sha256=_ZqnuWinCjlfeO6zBNx4hzK68wVWqQfWi8fAS54aZuQ,1021
|
58
|
-
mixpeek_sdk/types/taskresponse.py,sha256=ub9aVQmtRi87lwOSVXfsMxe41cHetcfd5hKqBABVlF4,338
|
59
|
-
mixpeek_sdk/types/transcribe_url_params.py,sha256=1kyl8zfRmAdGaGtoyLJ54C9tNGw0TcvzVf4349gpwzo,497
|
60
|
-
mixpeek_sdk/types/accounts/__init__.py,sha256=QI8K7JwYVH6Shx_rYwvyR8VFKfPWCZ3D9tWb3ADGy60,232
|
61
|
-
mixpeek_sdk/types/accounts/private_update_params.py,sha256=MGldBmPtblgLmPvXFb4I4QhAXr9DRzcGt038tDAFyGg,605
|
62
|
-
mixpeek_sdk/types/accounts/user.py,sha256=Yrd_MHznqxot7BQqymmMH7dlhzkLz4Y35b3YuEL-PCc,629
|
63
|
-
mixpeek_sdk/types/agent/__init__.py,sha256=OKfJYcKb4NObdiRObqJV_dOyDQ8feXekDUge2o_4pXQ,122
|
64
|
-
mixpeek_sdk/types/collections/__init__.py,sha256=Ow92wueBqOBbAO-6s4O8xBnKyKR5R1ZvakO3oYxmzmA,443
|
65
|
-
mixpeek_sdk/types/collections/file_create_params.py,sha256=7H-805bacjFwTvR8_DWW2xzecpn1enouhQ8WKIhgxb4,704
|
66
|
-
mixpeek_sdk/types/collections/file_full_params.py,sha256=AYuEQew8Sdx3XGLt5UY_ORYFKgi_ctD-ieruGh_x-0M,508
|
67
|
-
mixpeek_sdk/types/collections/file_update_params.py,sha256=m1C33PolkgSr0arL3elxEzXfXRRBf9Q6GBB6DECsZ18,496
|
68
|
-
mixpeek_sdk/types/collections/fileresponse.py,sha256=iokbF3X_sE6-Vkt8sUDoazTNTwyIvh-Yvp7cK0d7rQI,351
|
69
|
-
mixpeek_sdk/types/collections/groupedfiledata.py,sha256=id9xiaw-DTnpLThbDlI7q08SfG-PrG18z1gMWLc2g5w,700
|
70
|
-
mixpeek-0.9.0.dist-info/METADATA,sha256=nquitK0Fb4cxNSzYeVvP9WFLmEGR7wPrMfgi4pr1n30,12228
|
71
|
-
mixpeek-0.9.0.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
72
|
-
mixpeek-0.9.0.dist-info/licenses/LICENSE,sha256=-o6p7v4Plgq-5IW0zY3volFbC4BWuzDH_VebeITLtLU,11341
|
73
|
-
mixpeek-0.9.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mixpeek_sdk → mixpeek}/_qs.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{mixpeek_sdk → mixpeek}/py.typed
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|