@or-sdk/lookup 1.24.1-beta.4095.0 → 1.24.1-beta.4097.0
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.
- package/dist/types/Lookup.d.ts +202 -0
- package/dist/types/Lookup.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/types/Lookup.d.ts
CHANGED
|
@@ -7,38 +7,240 @@ export declare class Lookup extends Base {
|
|
|
7
7
|
constructor(params: LookupConfig);
|
|
8
8
|
private makeRequest;
|
|
9
9
|
parseError(err: unknown): Error;
|
|
10
|
+
/**
|
|
11
|
+
* Retrieves the AI providers.
|
|
12
|
+
* @returns {Promise<ProvidersList>} A promise that resolves with the AI providers.
|
|
13
|
+
*/
|
|
10
14
|
getAiProviders(): Promise<ProvidersList>;
|
|
15
|
+
/**
|
|
16
|
+
* Load the document into collection.
|
|
17
|
+
* @param collectionId - The ID of the collection the document belongs to.
|
|
18
|
+
* @param params - The document loading parameters.
|
|
19
|
+
* @param [options] - The API call options.
|
|
20
|
+
* @returns The created document.
|
|
21
|
+
*/
|
|
11
22
|
loadDocument(collectionId: string, params: LoadDocument, options?: CallOptions): Promise<Document>;
|
|
23
|
+
/**
|
|
24
|
+
* @param collectionId - The ID of the collection the document belongs to.
|
|
25
|
+
* @param params - The document crawling parameters.
|
|
26
|
+
* @param [options] - The API call options.
|
|
27
|
+
*/
|
|
12
28
|
loadCrawlerDocument(collectionId: string, params: CrawlDocuments, options?: CallOptions): Promise<void>;
|
|
29
|
+
/**
|
|
30
|
+
* Create a new collection.
|
|
31
|
+
* @param params - The collection creation parameters.
|
|
32
|
+
* @param [options={}] - The API call options.
|
|
33
|
+
* @returns The created collection.
|
|
34
|
+
*/
|
|
13
35
|
createCollection(params: CreateCollection, options?: CallOptions): Promise<Collection>;
|
|
36
|
+
/**
|
|
37
|
+
* Create a new passage within the collection.
|
|
38
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
39
|
+
* @param passage - The passage creation parameters.
|
|
40
|
+
* @param [options={}] - The API call options.
|
|
41
|
+
* @returns The created passage.
|
|
42
|
+
*/
|
|
14
43
|
createPassage<T extends Record<string, unknown>>(collectionId: string, passage: CreatePassage<T>, options?: CallOptions): Promise<Passage<T>>;
|
|
44
|
+
/**
|
|
45
|
+
* Create batch of passages within the collection.
|
|
46
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
47
|
+
* @param passages - The passages to create.
|
|
48
|
+
* @param [options={}] - The API call options.
|
|
49
|
+
*/
|
|
15
50
|
createManyPassages<T extends Record<string, unknown>>(collectionId: string, passages: CreatePassage<T>[], options?: CallOptions): Promise<void>;
|
|
51
|
+
/**
|
|
52
|
+
* Delete a collection by ID.
|
|
53
|
+
* @param collectionId - The ID of the collection to delete.
|
|
54
|
+
* @param [options={}] - The API call options.
|
|
55
|
+
* @returns The deleted collection.
|
|
56
|
+
*/
|
|
16
57
|
deleteCollection(collectionId: string, options?: CallOptions): Promise<Collection>;
|
|
58
|
+
/**
|
|
59
|
+
* Delete a passage from a collection.
|
|
60
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
61
|
+
* @param documentId - The ID of the passage to delete.
|
|
62
|
+
* @param ids - The IDs of the passages to delete.
|
|
63
|
+
* @param [options={}] - The API call options.
|
|
64
|
+
* @returns The deleted passage.
|
|
65
|
+
*/
|
|
17
66
|
deleteManyPassages(collectionId: string, documentId: string, ids: string[], options?: CallOptions): Promise<RemoveManyPassagesResult>;
|
|
67
|
+
/**
|
|
68
|
+
* Delete a passage from a collection.
|
|
69
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
70
|
+
* @param passageId - The ID of the passage to delete.
|
|
71
|
+
* @param [options={}] - The API call options.
|
|
72
|
+
* @returns The deleted passage.
|
|
73
|
+
*/
|
|
18
74
|
deletePassage(collectionId: string, passageId: string, options?: CallOptions): Promise<DeletedPassage>;
|
|
75
|
+
/**
|
|
76
|
+
* Search for documents in a collection.
|
|
77
|
+
* @param collectionId - The ID of the collection to search in.
|
|
78
|
+
* @param params - The search parameters.
|
|
79
|
+
* @param [options={}] - The API call options.
|
|
80
|
+
* @returns An array of search results.
|
|
81
|
+
*/
|
|
19
82
|
search(collectionId: string, params: Search, options?: CallOptions): Promise<SearchResult[]>;
|
|
83
|
+
/**
|
|
84
|
+
* Ask a question and generate an answer based on the documents in a collection.
|
|
85
|
+
* @param collectionId - The ID of the collection to use for generating the answer.
|
|
86
|
+
* @param params - The ask question parameters.
|
|
87
|
+
* @param [options={}] - The API call options.
|
|
88
|
+
* @returns The generated answer and search result.
|
|
89
|
+
*/
|
|
20
90
|
ask(collectionId: string, params: Ask, options?: CallOptions): Promise<AskResults>;
|
|
91
|
+
/**
|
|
92
|
+
* Update a document's description.
|
|
93
|
+
* @param collectionId - The ID of the collection the document belongs to.
|
|
94
|
+
* @param documentId - The ID of the document to update.
|
|
95
|
+
* @param params - The update document parameters.
|
|
96
|
+
* @param [options={}] - The API call options.
|
|
97
|
+
* @returns The updated document.
|
|
98
|
+
*/
|
|
21
99
|
updateDocument(collectionId: string, documentId: string, params: UpdateDocument, options?: CallOptions): Promise<Document>;
|
|
100
|
+
/**
|
|
101
|
+
* Update a passage in a collection.
|
|
102
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
103
|
+
* @param passageId - The ID of the passage to update.
|
|
104
|
+
* @param params - The update passage parameters.
|
|
105
|
+
* @param [options={}] - The API call options.
|
|
106
|
+
* @returns The updated passage.
|
|
107
|
+
*/
|
|
22
108
|
updatePassage<T extends Record<string, unknown>>(collectionId: string, passageId: string, params: UpdatePassage<T>, options?: CallOptions): Promise<Passage<T>>;
|
|
109
|
+
/**
|
|
110
|
+
* Update a passage in a collection.
|
|
111
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
112
|
+
* @param documentId - The ID of the document.
|
|
113
|
+
* @param ids - The IDs of the document passages to update.
|
|
114
|
+
* @param params - The update passage parameters.
|
|
115
|
+
* @param [options={}] - The API call options.
|
|
116
|
+
* @returns The updated passage.
|
|
117
|
+
*/
|
|
23
118
|
updateManyPassages<T extends Record<string, unknown>>(collectionId: string, documentId: string, ids: string[], params: Record<string, unknown>, options?: CallOptions): Promise<Passage<T>[]>;
|
|
119
|
+
/**
|
|
120
|
+
* Update a collection's description.
|
|
121
|
+
* @param collectionId - The ID of the collection to update.
|
|
122
|
+
* @param params - The update collection parameters.
|
|
123
|
+
* @param [options={}] - The API call options.
|
|
124
|
+
* @returns The updated collection.
|
|
125
|
+
*/
|
|
24
126
|
updateCollection(collectionId: string, params: UpdateCollection, options?: CallOptions): Promise<Collection>;
|
|
127
|
+
/**
|
|
128
|
+
* Get a document by its ID.
|
|
129
|
+
* @param collectionId - The ID of the collection the document belongs to.
|
|
130
|
+
* @param documentId - The ID of the document to retrieve.
|
|
131
|
+
* @param [options={}] - The API call options.
|
|
132
|
+
* @returns The retrieved document.
|
|
133
|
+
*/
|
|
25
134
|
getDocument(collectionId: string, documentId: string, options?: CallOptions): Promise<Document>;
|
|
135
|
+
/**
|
|
136
|
+
* Get a collection by its ID.
|
|
137
|
+
* @param collectionId - The ID of the collection to retrieve.
|
|
138
|
+
* @param [options={}] - The API call options.
|
|
139
|
+
* @returns The retrieved collection.
|
|
140
|
+
*/
|
|
26
141
|
getCollection(collectionId: string, options?: CallOptions): Promise<Collection>;
|
|
142
|
+
/**
|
|
143
|
+
* Get a single passage from a collection.
|
|
144
|
+
* @param collectionId - The ID of the collection the passage belongs to.
|
|
145
|
+
* @param passageId - The ID of the passage to retrieve.
|
|
146
|
+
* @param [options={}] - The API call options.
|
|
147
|
+
* @returns The retrieved passage.
|
|
148
|
+
*/
|
|
27
149
|
getPassage<T extends Record<string, unknown>>(collectionId: string, passageId: string, options?: CallOptions & {
|
|
28
150
|
params?: {
|
|
29
151
|
vector: boolean;
|
|
30
152
|
};
|
|
31
153
|
}): Promise<Passage<T>>;
|
|
154
|
+
/**
|
|
155
|
+
* Add a custom property to an existing collection.
|
|
156
|
+
* Custom properties can be used to store additional metadata about the collection or its passages.
|
|
157
|
+
* The available data types for properties can be found https://weaviate.io/developers/weaviate/config-refs/datatypes.
|
|
158
|
+
* Note that there are reserved property names:
|
|
159
|
+
* ['accountId', 'collection', 'document', 'content', 'loaderMetadata', 'sourceUrl']
|
|
160
|
+
* @param collectionId - The ID of the collection to add the property to.
|
|
161
|
+
* @param property - The property to add to the collection.
|
|
162
|
+
* @param [options={}] - The API call options.
|
|
163
|
+
* @returns A promise that resolves when the property has been added.
|
|
164
|
+
*/
|
|
32
165
|
addProperty(collectionId: string, property: Property, options?: CallOptions): Promise<void>;
|
|
166
|
+
/**
|
|
167
|
+
* List all documents in a collection with optional pagination and query.
|
|
168
|
+
* @param collectionId - The ID of the collection to retrieve documents from.
|
|
169
|
+
* @param find - Optional find parameters.
|
|
170
|
+
* @param [options={}] - The API call options.
|
|
171
|
+
* @returns An array of documents.
|
|
172
|
+
*/
|
|
33
173
|
listDocuments(collectionId: string, params?: Find, options?: CallOptions): Promise<List<Document>>;
|
|
174
|
+
/**
|
|
175
|
+
* List collections with optional pagination and query.
|
|
176
|
+
* @param params - Optional find parameters.
|
|
177
|
+
* @param [options={}] - The API call options.
|
|
178
|
+
* @returns An array of collections.
|
|
179
|
+
*/
|
|
34
180
|
listCollections(params?: Find, options?: CallOptions): Promise<List<Collection>>;
|
|
181
|
+
/**
|
|
182
|
+
* List all passages in a collection with optional pagination and query.
|
|
183
|
+
* @param collectionId - The ID of the collection to retrieve passages from.
|
|
184
|
+
* @param params - Optional find parameters.
|
|
185
|
+
* @param [options={}] - The API call options.
|
|
186
|
+
* @returns An array of passages.
|
|
187
|
+
*/
|
|
35
188
|
listPassages<T extends Record<string, unknown>>(collectionId: string, params?: FindPassages, options?: CallOptions): Promise<List<Passage<T>>>;
|
|
189
|
+
/**
|
|
190
|
+
* List all passages in a document with optional pagination, query, and ordering.
|
|
191
|
+
* @param collectionId - The ID of the collection containing the document.
|
|
192
|
+
* @param documentId - The ID of the document to retrieve passages from.
|
|
193
|
+
* @param find - Optional find parameters.
|
|
194
|
+
* @param [options={}] - The API call options.
|
|
195
|
+
* @returns An array of passages with pagination info.
|
|
196
|
+
*/
|
|
36
197
|
listPassagesInDocument<T extends Record<string, unknown>>(collectionId: string, documentId: string, find?: FindPassages, options?: CallOptions): Promise<List<Passage<T>>>;
|
|
198
|
+
/**
|
|
199
|
+
* Delete a document from a collection.
|
|
200
|
+
* @param collectionId - The ID of the collection to delete the document from.
|
|
201
|
+
* @param documentId - The ID of the document to delete.
|
|
202
|
+
* @param [options={}] - The API call options.
|
|
203
|
+
* @returns The deleted document.
|
|
204
|
+
*/
|
|
37
205
|
deleteDocument(collectionId: string, documentId: string, options?: CallOptions): Promise<Document>;
|
|
206
|
+
/**
|
|
207
|
+
* Delete multiple documents from a collection.
|
|
208
|
+
@param collectionId - The ID of the collection to delete the document from.
|
|
209
|
+
* @param ids - The ID of the collection to delete the document from.
|
|
210
|
+
* @param [options={}] - The API call options.
|
|
211
|
+
* @returns IDs of deleted documents and passages.
|
|
212
|
+
*/
|
|
38
213
|
deleteManyDocuments(collectionId: string, ids: string[], options?: CallOptions): Promise<RemoveManyDocumentsResult>;
|
|
214
|
+
/**
|
|
215
|
+
* Backup a collection.
|
|
216
|
+
* @param collectionId - The ID of the collection to backup.
|
|
217
|
+
* @param params - The backup parameters.
|
|
218
|
+
* @param [options={}] - The API call options.
|
|
219
|
+
* @returns A response indicating the success of the operation.
|
|
220
|
+
*/
|
|
39
221
|
backupCollection(collectionId: string, params: Backup, options?: CallOptions): Promise<void>;
|
|
222
|
+
/**
|
|
223
|
+
* Restore a collection.
|
|
224
|
+
* @param params - The restoration parameters.
|
|
225
|
+
* @param [options={}] - The API call options.
|
|
226
|
+
* @returns The restored collection information.
|
|
227
|
+
*/
|
|
40
228
|
restoreCollection(params: Restore, options?: CallOptions): Promise<void>;
|
|
229
|
+
/**
|
|
230
|
+
* Split a long text into smaller chunks
|
|
231
|
+
* @param dataToSplit - data to split
|
|
232
|
+
* @param dataToSplit.text - text content that will be divided
|
|
233
|
+
* @param dataToSplit.chunkSize - configure the size of each chunk
|
|
234
|
+
* @param dataToSplit.chunkOverlap - configure chunks overlap value
|
|
235
|
+
* @param [options={}] - The API call options.
|
|
236
|
+
* @returns The array of text chunks
|
|
237
|
+
*/
|
|
41
238
|
splitText(dataToSplit: TextSplitterRequest, options?: CallOptions): Promise<TextSplitterResult>;
|
|
239
|
+
/**
|
|
240
|
+
* Set the session ID.
|
|
241
|
+
* @param sessionId - The session ID to set.
|
|
242
|
+
* @returns The session ID.
|
|
243
|
+
*/
|
|
42
244
|
setSessionId(sessionId: string): string;
|
|
43
245
|
}
|
|
44
246
|
//# sourceMappingURL=Lookup.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Lookup.d.ts","sourceRoot":"","sources":["../../src/Lookup.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAgB,IAAI,EAAY,MAAM,cAAc,CAAC;AAIlE,OAAO,EACL,GAAG,EACH,UAAU,EACV,MAAM,EACN,WAAW,EACX,UAAU,EACV,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,cAAc,EACd,QAAQ,EACR,IAAI,EACJ,YAAY,EACZ,YAAY,EACZ,YAAY,EACZ,OAAO,EACP,QAAQ,EACR,aAAa,EACb,yBAAyB,EACzB,wBAAwB,EACxB,OAAO,EACP,MAAM,EACN,YAAY,EACZ,gBAAgB,EAChB,cAAc,EACd,aAAa,EAEb,mBAAmB,EACnB,kBAAkB,EACnB,MAAM,SAAS,CAAC;AAIjB,qBAAa,MAAO,SAAQ,IAAI;IAC9B,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAgB;IACzC,OAAO,CAAC,UAAU,CAAC,CAAS;IAC5B,OAAO,CAAC,mBAAmB,CAAC,CAAS;gBAEzB,MAAM,EAAE,YAAY;YAqBlB,WAAW;IAmBzB,UAAU,CAAC,GAAG,EAAE,OAAO;
|
|
1
|
+
{"version":3,"file":"Lookup.d.ts","sourceRoot":"","sources":["../../src/Lookup.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@or-sdk/lookup",
|
|
3
|
-
"version": "1.24.1-beta.
|
|
3
|
+
"version": "1.24.1-beta.4097.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"main": "dist/cjs/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"test:watch": "vitest --watch"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@or-sdk/base": "^0.44.1-beta.
|
|
24
|
+
"@or-sdk/base": "^0.44.1-beta.4097.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"concurrently": "9.0.1",
|