|
37 | 37 | "UpsertResponse": ("pinecone.db_data.models", "UpsertResponse"),
|
38 | 38 | "UpdateRequest": ("pinecone.db_data.models", "UpdateRequest"),
|
39 | 39 | "SparseValues": ("pinecone.db_data.models", "SparseValues"),
|
| 40 | + "ImportErrorMode": ("pinecone.core.openapi.db_data.model", "ImportErrorMode"), |
| 41 | + "VectorDictionaryMissingKeysError": ( |
| 42 | + "pinecone.db_data.errors", |
| 43 | + "VectorDictionaryMissingKeysError", |
| 44 | + ), |
| 45 | + "VectorDictionaryExcessKeysError": ( |
| 46 | + "pinecone.db_data.errors", |
| 47 | + "VectorDictionaryExcessKeysError", |
| 48 | + ), |
| 49 | + "VectorTupleLengthError": ("pinecone.db_data.errors", "VectorTupleLengthError"), |
| 50 | + "SparseValuesTypeError": ("pinecone.db_data.errors", "SparseValuesTypeError"), |
| 51 | + "SparseValuesMissingKeysError": ("pinecone.db_data.errors", "SparseValuesMissingKeysError"), |
| 52 | + "SparseValuesDictionaryExpectedError": ( |
| 53 | + "pinecone.db_data.errors", |
| 54 | + "SparseValuesDictionaryExpectedError", |
| 55 | + ), |
40 | 56 | }
|
41 | 57 |
|
42 | 58 | _db_control_lazy_imports = {
|
|
105 | 121 | "Config",
|
106 | 122 | "ConfigBuilder",
|
107 | 123 | "PineconeConfig",
|
108 |
| - # DB control classes |
| 124 | + # OpenAPI classes |
109 | 125 | "CloudProvider",
|
110 | 126 | "AwsRegion",
|
111 | 127 | "GcpRegion",
|
|
119 | 135 | "IndexList",
|
120 | 136 | "IndexModel",
|
121 | 137 | "IndexEmbed",
|
| 138 | + "ImportErrorMode", |
122 | 139 | "ServerlessSpec",
|
123 | 140 | "ServerlessSpecDefinition",
|
124 | 141 | "PodSpec",
|
|
158 | 175 | "ForbiddenException",
|
159 | 176 | "ServiceException",
|
160 | 177 | "ListConversionException",
|
| 178 | + "VectorDictionaryMissingKeysError", |
| 179 | + "VectorDictionaryExcessKeysError", |
| 180 | + "VectorTupleLengthError", |
| 181 | + "SparseValuesTypeError", |
| 182 | + "SparseValuesMissingKeysError", |
| 183 | + "SparseValuesDictionaryExpectedError", |
161 | 184 | ]
|
0 commit comments