lambdadb 0.2.0__py3-none-any.whl → 0.2.1__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.
Potentially problematic release.
This version of lambdadb might be problematic. Click here for more details.
- lambdadb/_version.py +2 -2
- lambdadb/collections.py +0 -6
- lambdadb/models/querycollectionop.py +0 -5
- {lambdadb-0.2.0.dist-info → lambdadb-0.2.1.dist-info}/METADATA +1 -1
- {lambdadb-0.2.0.dist-info → lambdadb-0.2.1.dist-info}/RECORD +7 -7
- {lambdadb-0.2.0.dist-info → lambdadb-0.2.1.dist-info}/LICENSE +0 -0
- {lambdadb-0.2.0.dist-info → lambdadb-0.2.1.dist-info}/WHEEL +0 -0
lambdadb/_version.py
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
import importlib.metadata
|
|
4
4
|
|
|
5
5
|
__title__: str = "lambdadb"
|
|
6
|
-
__version__: str = "0.2.
|
|
6
|
+
__version__: str = "0.2.1"
|
|
7
7
|
__openapi_doc_version__: str = "1.1.0"
|
|
8
8
|
__gen_version__: str = "2.628.0"
|
|
9
|
-
__user_agent__: str = "speakeasy-sdk/python 0.2.
|
|
9
|
+
__user_agent__: str = "speakeasy-sdk/python 0.2.1 2.628.0 1.1.0 lambdadb"
|
|
10
10
|
|
|
11
11
|
try:
|
|
12
12
|
if __package__ is not None:
|
lambdadb/collections.py
CHANGED
|
@@ -1342,7 +1342,6 @@ class Collections(BaseSDK):
|
|
|
1342
1342
|
include_vectors: Optional[bool] = False,
|
|
1343
1343
|
sort: Optional[Union[List[models.Sort], List[models.SortTypedDict]]] = None,
|
|
1344
1344
|
fields: Optional[List[str]] = None,
|
|
1345
|
-
track_scores: Optional[bool] = False,
|
|
1346
1345
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
1347
1346
|
server_url: Optional[str] = None,
|
|
1348
1347
|
timeout_ms: Optional[int] = None,
|
|
@@ -1358,7 +1357,6 @@ class Collections(BaseSDK):
|
|
|
1358
1357
|
:param include_vectors: If your application need to include vector values in the response, set includeVectors to true.
|
|
1359
1358
|
:param sort: List of field name, sort direction pairs.
|
|
1360
1359
|
:param fields: List of field name to include in results
|
|
1361
|
-
:param track_scores: If your application needs to track scores with sorting, set trackScores to true.
|
|
1362
1360
|
:param retries: Override the default retry configuration for this method
|
|
1363
1361
|
:param server_url: Override the default server URL for this method
|
|
1364
1362
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1384,7 +1382,6 @@ class Collections(BaseSDK):
|
|
|
1384
1382
|
include_vectors=include_vectors,
|
|
1385
1383
|
sort=utils.get_pydantic_model(sort, Optional[List[models.Sort]]),
|
|
1386
1384
|
fields=fields,
|
|
1387
|
-
track_scores=track_scores,
|
|
1388
1385
|
),
|
|
1389
1386
|
)
|
|
1390
1387
|
|
|
@@ -1497,7 +1494,6 @@ class Collections(BaseSDK):
|
|
|
1497
1494
|
include_vectors: Optional[bool] = False,
|
|
1498
1495
|
sort: Optional[Union[List[models.Sort], List[models.SortTypedDict]]] = None,
|
|
1499
1496
|
fields: Optional[List[str]] = None,
|
|
1500
|
-
track_scores: Optional[bool] = False,
|
|
1501
1497
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
1502
1498
|
server_url: Optional[str] = None,
|
|
1503
1499
|
timeout_ms: Optional[int] = None,
|
|
@@ -1513,7 +1509,6 @@ class Collections(BaseSDK):
|
|
|
1513
1509
|
:param include_vectors: If your application need to include vector values in the response, set includeVectors to true.
|
|
1514
1510
|
:param sort: List of field name, sort direction pairs.
|
|
1515
1511
|
:param fields: List of field name to include in results
|
|
1516
|
-
:param track_scores: If your application needs to track scores with sorting, set trackScores to true.
|
|
1517
1512
|
:param retries: Override the default retry configuration for this method
|
|
1518
1513
|
:param server_url: Override the default server URL for this method
|
|
1519
1514
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
@@ -1539,7 +1534,6 @@ class Collections(BaseSDK):
|
|
|
1539
1534
|
include_vectors=include_vectors,
|
|
1540
1535
|
sort=utils.get_pydantic_model(sort, Optional[List[models.Sort]]),
|
|
1541
1536
|
fields=fields,
|
|
1542
|
-
track_scores=track_scores,
|
|
1543
1537
|
),
|
|
1544
1538
|
)
|
|
1545
1539
|
|
|
@@ -37,8 +37,6 @@ class QueryCollectionRequestBodyTypedDict(TypedDict):
|
|
|
37
37
|
r"""List of field name, sort direction pairs."""
|
|
38
38
|
fields: NotRequired[List[str]]
|
|
39
39
|
r"""List of field name to include in results"""
|
|
40
|
-
track_scores: NotRequired[bool]
|
|
41
|
-
r"""If your application needs to track scores with sorting, set trackScores to true."""
|
|
42
40
|
|
|
43
41
|
|
|
44
42
|
class QueryCollectionRequestBody(BaseModel):
|
|
@@ -64,9 +62,6 @@ class QueryCollectionRequestBody(BaseModel):
|
|
|
64
62
|
fields: Optional[List[str]] = None
|
|
65
63
|
r"""List of field name to include in results"""
|
|
66
64
|
|
|
67
|
-
track_scores: Annotated[Optional[bool], pydantic.Field(alias="trackScores")] = False
|
|
68
|
-
r"""If your application needs to track scores with sorting, set trackScores to true."""
|
|
69
|
-
|
|
70
65
|
|
|
71
66
|
class QueryCollectionRequestTypedDict(TypedDict):
|
|
72
67
|
project_name: str
|
|
@@ -3,9 +3,9 @@ lambdadb/_hooks/__init__.py,sha256=p5J13DeYuISQyQWirjJAObHIf2VtIlOtFqnIpvjjVwk,1
|
|
|
3
3
|
lambdadb/_hooks/registration.py,sha256=1QZB41w6If7I9dXiOSQx6dhSc6BPWrnI5Q5bMOr4iVA,624
|
|
4
4
|
lambdadb/_hooks/sdkhooks.py,sha256=KGhPvIuUjurDBQOT6t-aWgiu1YDRXpn-OMz6_PkUdFk,2463
|
|
5
5
|
lambdadb/_hooks/types.py,sha256=09dUW5q4HN9aVFAhskDLQqjxLPBfDD97uuucmdcBa6Q,2987
|
|
6
|
-
lambdadb/_version.py,sha256=
|
|
6
|
+
lambdadb/_version.py,sha256=PvN6nJn8YeJhMQtzbXZAULG154_eR-_Ol9BmMZcbGA4,458
|
|
7
7
|
lambdadb/basesdk.py,sha256=Uo8ZEdXVHmS_j1F9on47XeJD6sj9plIrna_6Oo_1I-I,11853
|
|
8
|
-
lambdadb/collections.py,sha256=
|
|
8
|
+
lambdadb/collections.py,sha256=ridtbk8Ft0O1lIcpX7-_-5zDV8B0bOcttoxlv5eMeZ0,69015
|
|
9
9
|
lambdadb/docs.py,sha256=jtrogN__GPuavf2bySAjklPLvtm0JMDezkY2qSlc83k,57368
|
|
10
10
|
lambdadb/errors/__init__.py,sha256=V406LU9TLJQ0eocD79_PpsCjOmH6DAUnBTKd0Ra23uQ,2637
|
|
11
11
|
lambdadb/errors/apierror.py,sha256=9mTyJSyvUAOnSfW_1HWt9dGl8IDlpQ68DebwYsDNdug,528
|
|
@@ -27,7 +27,7 @@ lambdadb/models/getbulkupsertdocsop.py,sha256=oUkcvIkrM_wIxrCoB_X-jBL9QqA_qpo7ol
|
|
|
27
27
|
lambdadb/models/getcollectionop.py,sha256=9X_4fW9sYfXVe_gPqCbnKBEr0z7ss_wNrhRdSXhNSRU,865
|
|
28
28
|
lambdadb/models/indexconfigs_union.py,sha256=fAq_wlTU1p_mdbq_ZuCFIb_DldfvL__Tphc36ocUl0w,2020
|
|
29
29
|
lambdadb/models/listcollectionsop.py,sha256=Q7OM34dUCRQhft3vg4FLlnRIXWhUAhxG4rX_nIrL9_8,1081
|
|
30
|
-
lambdadb/models/querycollectionop.py,sha256=
|
|
30
|
+
lambdadb/models/querycollectionop.py,sha256=lFvTMo8twoEE7DflLuBItGpYllTNxSjfeSm6tfCP0rc,4487
|
|
31
31
|
lambdadb/models/security.py,sha256=nP-VTWFY6O-UPNPsWcsg38JcXr2zSy_m7qieDix6SxA,698
|
|
32
32
|
lambdadb/models/status.py,sha256=pl66KcDT9ao6yLXXXOBqerh_StjpNiJb34Yf7VoijEI,250
|
|
33
33
|
lambdadb/models/updatecollectionop.py,sha256=AH-xDQYtywu6rn5clKKXIuamXk3iYdwSfN5kCi5Ygtk,1470
|
|
@@ -54,7 +54,7 @@ lambdadb/utils/security.py,sha256=Dq3M6Ee_x_uWRPZ7vvM4XQNxjCMSlphrRn6qVs1pljU,60
|
|
|
54
54
|
lambdadb/utils/serializers.py,sha256=hiHBXM1AY8_N2Z_rvFfNSYwvLBkSQlPGFp8poasdU4s,5986
|
|
55
55
|
lambdadb/utils/url.py,sha256=BgGPgcTA6MRK4bF8fjP2dUopN3NzEzxWMXPBVg8NQUA,5254
|
|
56
56
|
lambdadb/utils/values.py,sha256=CcaCXEa3xHhkUDROyXZocN8f0bdITftv9Y0P9lTf0YM,3517
|
|
57
|
-
lambdadb-0.2.
|
|
58
|
-
lambdadb-0.2.
|
|
59
|
-
lambdadb-0.2.
|
|
60
|
-
lambdadb-0.2.
|
|
57
|
+
lambdadb-0.2.1.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
58
|
+
lambdadb-0.2.1.dist-info/METADATA,sha256=UAAyHBjVWJHVSqsvjAS2_mHTsZpyx5M_4W69CWaNZEg,18666
|
|
59
|
+
lambdadb-0.2.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
60
|
+
lambdadb-0.2.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|