worqhat 3.9.0__py3-none-any.whl → 3.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.
worqhat/types/__init__.py CHANGED
@@ -2,22 +2,34 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ from .db_cluster_params import DBClusterParams as DBClusterParams
6
+ from .db_cluster_response import DBClusterResponse as DBClusterResponse
7
+ from .db_recommend_params import DBRecommendParams as DBRecommendParams
8
+ from .db_recommend_response import DBRecommendResponse as DBRecommendResponse
5
9
  from .health_check_response import HealthCheckResponse as HealthCheckResponse
10
+ from .db_find_similar_params import DBFindSimilarParams as DBFindSimilarParams
6
11
  from .db_execute_batch_params import DBExecuteBatchParams as DBExecuteBatchParams
7
12
  from .db_execute_query_params import DBExecuteQueryParams as DBExecuteQueryParams
13
+ from .db_hybrid_search_params import DBHybridSearchParams as DBHybridSearchParams
8
14
  from .db_insert_record_params import DBInsertRecordParams as DBInsertRecordParams
9
15
  from .flow_get_metrics_params import FlowGetMetricsParams as FlowGetMetricsParams
10
16
  from .db_delete_records_params import DBDeleteRecordsParams as DBDeleteRecordsParams
17
+ from .db_find_similar_response import DBFindSimilarResponse as DBFindSimilarResponse
11
18
  from .db_update_records_params import DBUpdateRecordsParams as DBUpdateRecordsParams
12
19
  from .get_server_info_response import GetServerInfoResponse as GetServerInfoResponse
13
20
  from .db_execute_batch_response import DBExecuteBatchResponse as DBExecuteBatchResponse
14
21
  from .db_execute_query_response import DBExecuteQueryResponse as DBExecuteQueryResponse
22
+ from .db_hybrid_search_response import DBHybridSearchResponse as DBHybridSearchResponse
15
23
  from .db_insert_record_response import DBInsertRecordResponse as DBInsertRecordResponse
24
+ from .db_semantic_search_params import DBSemanticSearchParams as DBSemanticSearchParams
16
25
  from .flow_get_metrics_response import FlowGetMetricsResponse as FlowGetMetricsResponse
17
26
  from .db_delete_records_response import DBDeleteRecordsResponse as DBDeleteRecordsResponse
27
+ from .db_detect_anomalies_params import DBDetectAnomaliesParams as DBDetectAnomaliesParams
18
28
  from .db_process_nl_query_params import DBProcessNlQueryParams as DBProcessNlQueryParams
19
29
  from .db_update_records_response import DBUpdateRecordsResponse as DBUpdateRecordsResponse
20
30
  from .storage_upload_file_params import StorageUploadFileParams as StorageUploadFileParams
31
+ from .db_semantic_search_response import DBSemanticSearchResponse as DBSemanticSearchResponse
32
+ from .db_detect_anomalies_response import DBDetectAnomaliesResponse as DBDetectAnomaliesResponse
21
33
  from .db_process_nl_query_response import DBProcessNlQueryResponse as DBProcessNlQueryResponse
22
34
  from .storage_upload_file_response import StorageUploadFileResponse as StorageUploadFileResponse
23
35
  from .flow_trigger_with_file_params import FlowTriggerWithFileParams as FlowTriggerWithFileParams
@@ -0,0 +1,27 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, TypedDict
6
+
7
+ __all__ = ["DBClusterParams"]
8
+
9
+
10
+ class DBClusterParams(TypedDict, total=False):
11
+ table: Required[str]
12
+ """Table to cluster"""
13
+
14
+ environment: Literal["development", "staging", "production"]
15
+ """Environment to cluster (development, staging, production)"""
16
+
17
+ generate_labels: bool
18
+ """Whether to generate AI labels for clusters"""
19
+
20
+ max_clusters: float
21
+ """Maximum clusters for auto-detection"""
22
+
23
+ min_clusters: float
24
+ """Minimum clusters for auto-detection"""
25
+
26
+ num_clusters: float
27
+ """Number of clusters (auto-detected if not provided)"""
@@ -0,0 +1,44 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["DBClusterResponse", "Cluster"]
10
+
11
+
12
+ class Cluster(BaseModel):
13
+ id: Optional[float] = None
14
+ """Cluster ID"""
15
+
16
+ centroid: Optional[List[float]] = None
17
+ """Cluster center embedding (first 10 dimensions)"""
18
+
19
+ label: Optional[str] = None
20
+ """AI-generated cluster description"""
21
+
22
+ sample_records: Optional[List[Dict[str, object]]] = None
23
+ """3-5 representative records from cluster"""
24
+
25
+ size: Optional[float] = None
26
+ """Number of records in cluster"""
27
+
28
+
29
+ class DBClusterResponse(BaseModel):
30
+ clusters: Optional[List[Cluster]] = None
31
+
32
+ execution_time: Optional[float] = FieldInfo(alias="executionTime", default=None)
33
+ """Clustering execution time in milliseconds"""
34
+
35
+ iterations: Optional[float] = None
36
+ """Number of K-means iterations performed"""
37
+
38
+ optimal_k: Optional[float] = None
39
+ """Determined optimal cluster count"""
40
+
41
+ silhouette_score: Optional[float] = None
42
+ """Clustering quality metric (0-1)"""
43
+
44
+ success: Optional[bool] = None
@@ -0,0 +1,24 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, TypedDict
6
+
7
+ __all__ = ["DBDetectAnomaliesParams"]
8
+
9
+
10
+ class DBDetectAnomaliesParams(TypedDict, total=False):
11
+ table: Required[str]
12
+ """Table to analyze for anomalies"""
13
+
14
+ environment: Literal["development", "staging", "production"]
15
+ """Environment to analyze (development, staging, production)"""
16
+
17
+ k: float
18
+ """Number of nearest neighbors to consider"""
19
+
20
+ limit: float
21
+ """Maximum number of anomalies to return"""
22
+
23
+ threshold: float
24
+ """Minimum anomaly score threshold"""
@@ -0,0 +1,50 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["DBDetectAnomaliesResponse", "Anomaly", "AnomalyNearestNeighbor", "Parameters"]
10
+
11
+
12
+ class AnomalyNearestNeighbor(BaseModel):
13
+ distance: Optional[float] = None
14
+
15
+ record: Optional[Dict[str, object]] = None
16
+
17
+
18
+ class Anomaly(BaseModel):
19
+ anomaly_score: Optional[float] = None
20
+ """Anomaly score (0-1, higher = more unusual)"""
21
+
22
+ avg_distance: Optional[float] = None
23
+ """Average distance to K nearest neighbors"""
24
+
25
+ nearest_neighbors: Optional[List[AnomalyNearestNeighbor]] = None
26
+
27
+ record: Optional[Dict[str, object]] = None
28
+
29
+
30
+ class Parameters(BaseModel):
31
+ k: Optional[float] = None
32
+
33
+ threshold: Optional[float] = None
34
+
35
+
36
+ class DBDetectAnomaliesResponse(BaseModel):
37
+ anomalies: Optional[List[Anomaly]] = None
38
+
39
+ anomaly_count: Optional[float] = None
40
+ """Number of anomalies detected"""
41
+
42
+ execution_time: Optional[float] = FieldInfo(alias="executionTime", default=None)
43
+ """Analysis execution time in milliseconds"""
44
+
45
+ parameters: Optional[Parameters] = None
46
+
47
+ success: Optional[bool] = None
48
+
49
+ total_records: Optional[float] = None
50
+ """Total number of records analyzed"""
@@ -0,0 +1,31 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Union
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ __all__ = ["DBFindSimilarParams"]
9
+
10
+
11
+ class DBFindSimilarParams(TypedDict, total=False):
12
+ record_id: Required[Union[str, float]]
13
+ """ID of the source record"""
14
+
15
+ table: Required[str]
16
+ """Table containing the source record"""
17
+
18
+ environment: Literal["development", "staging", "production"]
19
+ """Environment to search in (development, staging, production)"""
20
+
21
+ exclude_self: bool
22
+ """Whether to exclude the source record from results"""
23
+
24
+ limit: float
25
+ """Maximum number of similar records to return"""
26
+
27
+ target_table: str
28
+ """Different table to search in (optional)"""
29
+
30
+ threshold: float
31
+ """Minimum similarity score threshold"""
@@ -0,0 +1,30 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["DBFindSimilarResponse", "SimilarRecord"]
10
+
11
+
12
+ class SimilarRecord(BaseModel):
13
+ record: Optional[Dict[str, object]] = None
14
+
15
+ similarity: Optional[float] = None
16
+ """Similarity score (0-1)"""
17
+
18
+ table: Optional[str] = None
19
+
20
+
21
+ class DBFindSimilarResponse(BaseModel):
22
+ execution_time: Optional[float] = FieldInfo(alias="executionTime", default=None)
23
+ """Search execution time in milliseconds"""
24
+
25
+ similar_records: Optional[List[SimilarRecord]] = None
26
+
27
+ source_record: Optional[Dict[str, object]] = None
28
+ """The original record used for similarity search"""
29
+
30
+ success: Optional[bool] = None
@@ -0,0 +1,32 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing_extensions import Literal, Required, TypedDict
6
+
7
+ from .._types import SequenceNotStr
8
+
9
+ __all__ = ["DBHybridSearchParams"]
10
+
11
+
12
+ class DBHybridSearchParams(TypedDict, total=False):
13
+ query: Required[str]
14
+ """Search query combining natural language and keywords"""
15
+
16
+ table: Required[str]
17
+ """Table to search in"""
18
+
19
+ environment: Literal["development", "staging", "production"]
20
+ """Environment to search in (development, staging, production)"""
21
+
22
+ keyword_weight: float
23
+ """Weight for keyword matching score"""
24
+
25
+ limit: float
26
+ """Maximum number of results to return"""
27
+
28
+ semantic_weight: float
29
+ """Weight for semantic similarity score"""
30
+
31
+ text_columns: SequenceNotStr[str]
32
+ """Columns to include in keyword search"""
@@ -0,0 +1,48 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["DBHybridSearchResponse", "Result", "Result_Meta", "Result_MetaWeights"]
10
+
11
+
12
+ class Result_MetaWeights(BaseModel):
13
+ keyword: Optional[float] = None
14
+
15
+ semantic: Optional[float] = None
16
+
17
+
18
+ class Result_Meta(BaseModel):
19
+ search_type: Optional[str] = None
20
+
21
+ weights: Optional[Result_MetaWeights] = None
22
+
23
+
24
+ class Result(BaseModel):
25
+ api_meta: Optional[Result_Meta] = FieldInfo(alias="_meta", default=None)
26
+
27
+ combined_score: Optional[float] = None
28
+ """Combined semantic + keyword score"""
29
+
30
+ keyword_score: Optional[float] = None
31
+ """Keyword matching score"""
32
+
33
+ record: Optional[Dict[str, object]] = None
34
+
35
+ semantic_score: Optional[float] = None
36
+ """Semantic similarity score"""
37
+
38
+
39
+ class DBHybridSearchResponse(BaseModel):
40
+ execution_time: Optional[float] = FieldInfo(alias="executionTime", default=None)
41
+ """Search execution time in milliseconds"""
42
+
43
+ query_embedding_preview: Optional[List[float]] = None
44
+ """First 5 dimensions of the query embedding"""
45
+
46
+ results: Optional[List[Result]] = None
47
+
48
+ success: Optional[bool] = None
@@ -0,0 +1,33 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Union
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ from .._types import SequenceNotStr
9
+
10
+ __all__ = ["DBRecommendParams"]
11
+
12
+
13
+ class DBRecommendParams(TypedDict, total=False):
14
+ table: Required[str]
15
+ """Table to generate recommendations from"""
16
+
17
+ environment: Literal["development", "staging", "production"]
18
+ """Environment to search in (development, staging, production)"""
19
+
20
+ exclude_ids: SequenceNotStr[str]
21
+ """Record IDs to exclude from recommendations"""
22
+
23
+ limit: float
24
+ """Maximum number of recommendations to return"""
25
+
26
+ record_id: Union[str, float]
27
+ """Source item ID for item-to-item recommendations"""
28
+
29
+ strategy: Literal["similar", "diverse", "popular"]
30
+ """Recommendation strategy to use"""
31
+
32
+ user_history: SequenceNotStr[str]
33
+ """Array of record IDs the user has interacted with"""
@@ -0,0 +1,36 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["DBRecommendResponse", "Recommendation", "Recommendation_Meta"]
10
+
11
+
12
+ class Recommendation_Meta(BaseModel):
13
+ source: Optional[str] = None
14
+
15
+ strategy: Optional[str] = None
16
+
17
+
18
+ class Recommendation(BaseModel):
19
+ api_meta: Optional[Recommendation_Meta] = FieldInfo(alias="_meta", default=None)
20
+
21
+ record: Optional[Dict[str, object]] = None
22
+
23
+ similarity: Optional[float] = None
24
+ """Similarity score (0-1)"""
25
+
26
+
27
+ class DBRecommendResponse(BaseModel):
28
+ execution_time: Optional[float] = FieldInfo(alias="executionTime", default=None)
29
+ """Recommendation generation time in milliseconds"""
30
+
31
+ recommendations: Optional[List[Recommendation]] = None
32
+
33
+ strategy: Optional[str] = None
34
+ """Strategy used for recommendations"""
35
+
36
+ success: Optional[bool] = None
@@ -0,0 +1,33 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Dict
6
+ from typing_extensions import Literal, Required, TypedDict
7
+
8
+ from .._types import SequenceNotStr
9
+
10
+ __all__ = ["DBSemanticSearchParams"]
11
+
12
+
13
+ class DBSemanticSearchParams(TypedDict, total=False):
14
+ query: Required[str]
15
+ """Natural language search query"""
16
+
17
+ environment: Literal["development", "staging", "production"]
18
+ """Environment to search in (development, staging, production)"""
19
+
20
+ filters: Dict[str, object]
21
+ """Additional WHERE conditions to apply"""
22
+
23
+ limit: float
24
+ """Maximum number of results to return"""
25
+
26
+ table: str
27
+ """Single table to search in (optional if tables is provided)"""
28
+
29
+ tables: SequenceNotStr[str]
30
+ """Multiple tables to search across (optional if table is provided)"""
31
+
32
+ threshold: float
33
+ """Minimum similarity score threshold"""
@@ -0,0 +1,36 @@
1
+ # File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
2
+
3
+ from typing import Dict, List, Optional
4
+
5
+ from pydantic import Field as FieldInfo
6
+
7
+ from .._models import BaseModel
8
+
9
+ __all__ = ["DBSemanticSearchResponse", "Result", "Result_Meta"]
10
+
11
+
12
+ class Result_Meta(BaseModel):
13
+ matched_fields: Optional[List[str]] = None
14
+
15
+
16
+ class Result(BaseModel):
17
+ api_meta: Optional[Result_Meta] = FieldInfo(alias="_meta", default=None)
18
+
19
+ record: Optional[Dict[str, object]] = None
20
+
21
+ similarity: Optional[float] = None
22
+ """Similarity score (0-1)"""
23
+
24
+ table: Optional[str] = None
25
+
26
+
27
+ class DBSemanticSearchResponse(BaseModel):
28
+ execution_time: Optional[float] = FieldInfo(alias="executionTime", default=None)
29
+ """Search execution time in milliseconds"""
30
+
31
+ query_embedding_preview: Optional[List[float]] = None
32
+ """First 5 dimensions of the query embedding"""
33
+
34
+ results: Optional[List[Result]] = None
35
+
36
+ success: Optional[bool] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: worqhat
3
- Version: 3.9.0
3
+ Version: 3.10.0
4
4
  Summary: The official Python library for the worqhat API
5
5
  Project-URL: Homepage, https://github.com/WorqHat/worqhat-python-sdk
6
6
  Project-URL: Repository, https://github.com/WorqHat/worqhat-python-sdk
@@ -11,7 +11,7 @@ worqhat/_resource.py,sha256=2r0Ilj0AtogNG1TdsG6biEPWD5Ihgf1hOE51PwMEpyQ,1106
11
11
  worqhat/_response.py,sha256=NBeCvMH3I_Zr6-Gp_8aE-S7TtNphvnw_gTlK53-lew0,28794
12
12
  worqhat/_streaming.py,sha256=h3n2sOPN_iuD2DUno9BKZt0wT_F7GRZHcotRI5yuI0s,10104
13
13
  worqhat/_types.py,sha256=l1lNsjBVeSVoY_E2oIAbky9t1SU9P81OAbrR8kRQ3o0,7237
14
- worqhat/_version.py,sha256=3PBcC5j8Ar2FDX2AWsNOjSEhWzs_NeJkEZA0AKd3edc,159
14
+ worqhat/_version.py,sha256=ZDzp7bzWimDDcW_tyV4AbLWLr0_H7i4a2zwiPQJP7d0,160
15
15
  worqhat/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  worqhat/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
17
17
  worqhat/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
@@ -31,19 +31,31 @@ worqhat/resources/flows.py,sha256=JNyKSZBRtXrl_ucxPROUuXrmvf-NrlTIf5rL_2R94JU,17
31
31
  worqhat/resources/health.py,sha256=SVF65ZTfJgUcpDH8UG5rGcwBUe8EkW8NddiNk0mlDkk,5127
32
32
  worqhat/resources/storage.py,sha256=N-0MuCBHB-jPNZ58u0Te3xkX2w4dkwShpapvnBViTfI,18196
33
33
  worqhat/resources/db/__init__.py,sha256=FdA8sX7Z6SK0k4-VLZmagXnmjdqpcwcGQ5RU6K4jWeg,950
34
- worqhat/resources/db/db.py,sha256=TrXlcX6me9taukw90tBO2TJ8p64xFx9N7yf6MVs3VNs,30279
34
+ worqhat/resources/db/db.py,sha256=Pllu8fDyQYTvNhxvkbKleE9gkO8_BnUS-vO3lvM4wIM,63555
35
35
  worqhat/resources/db/tables.py,sha256=F_vhzvifWc5nwe08m4S3dZ6qFs5sygRoBS1a0IYZMwk,14997
36
- worqhat/types/__init__.py,sha256=-y6f4Do-NrRU5pS8RXu5idaP9n3q53HvH__LlJDqY6Y,2589
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
37
39
  worqhat/types/db_delete_records_params.py,sha256=OtHU2hQJEZAxOna4KXj3Vq94T67WRLOsqnFpPWVr87o,564
38
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
39
43
  worqhat/types/db_execute_batch_params.py,sha256=GHsi0VKn9nwgvn_vE56hWuTbkhAWEFOgD5ywKMyQPiQ,1038
40
44
  worqhat/types/db_execute_batch_response.py,sha256=ma2G7awwCs79vAEmAd0qsZ4mm7qtmrP85-gLyr0FXT8,678
41
45
  worqhat/types/db_execute_query_params.py,sha256=F63dxBG2bq7d4akpDYyvJZyxipO2b7sA-w42jyuk1c4,753
42
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
43
51
  worqhat/types/db_insert_record_params.py,sha256=v3R20cbxZebwDE6Nn5dU_3l2KKItp75Zl1BqcNS1jkE,559
44
52
  worqhat/types/db_insert_record_response.py,sha256=X3_9MhXkf3XHrJisAd7bFy1qF3jnvwcLtt6t8QPl6Fo,351
45
53
  worqhat/types/db_process_nl_query_params.py,sha256=giDIFmqMuD-7H9Qj4PU7772_2choWB-3q95tG-dx_PA,569
46
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
47
59
  worqhat/types/db_update_records_params.py,sha256=AdnLX5UncobxEuTWZPJ_s_NZiykNwVie3TjC9FyNOCU,621
48
60
  worqhat/types/db_update_records_response.py,sha256=2nJr_NHr7eMi8cJNi1GHTCbmcNlJxO3EiysxBfZVxzo,434
49
61
  worqhat/types/flow_get_metrics_params.py,sha256=x4SgBnhjUDIabDVd3f3_wVGldHSLelUSSM_AoxpglTs,768
@@ -67,7 +79,7 @@ worqhat/types/db/table_list_params.py,sha256=aiq4uIj9lNsnoN3-FgNn_mSfwUzX5XchPvl
67
79
  worqhat/types/db/table_list_response.py,sha256=gbktGz4ilObaMkbA9_t0UussYuSBPEN9cuhh6_IXnNw,578
68
80
  worqhat/types/db/table_retrieve_schema_params.py,sha256=DFQaflB9weCc8JjqXkaAK-TLfy1IXTev7-vh4O0RYFk,368
69
81
  worqhat/types/db/table_retrieve_schema_response.py,sha256=-OHPvWJSGJzEScrRPilQVsuU_60U7qIJ3_ZleVwJ1j0,655
70
- worqhat-3.9.0.dist-info/METADATA,sha256=QdgIDu3qQkE2nAx7shTlRErudkqEcehxjQbWO4W2szQ,14313
71
- worqhat-3.9.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
72
- worqhat-3.9.0.dist-info/licenses/LICENSE,sha256=UwMftLIOitTJWtJ9bowByxdt9ZSFqmmb43oQosW5xiU,11337
73
- worqhat-3.9.0.dist-info/RECORD,,
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,,