vectocore4 0.0.7 → 0.0.9
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/cjs/index.js +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/mjs/index.js +5 -0
- package/package.json +1 -1
package/dist/cjs/index.js
CHANGED
|
@@ -130,6 +130,11 @@ class Vectocore {
|
|
|
130
130
|
return response;
|
|
131
131
|
});
|
|
132
132
|
}
|
|
133
|
+
/**
|
|
134
|
+
* 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
|
|
135
|
+
* * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
|
|
136
|
+
* @returns 인덱스 목록
|
|
137
|
+
*/
|
|
133
138
|
listAllExtremeData(_a) {
|
|
134
139
|
return __awaiter(this, arguments, void 0, function* ({ indexName, withVectorValue }) {
|
|
135
140
|
const requestParam = {
|
package/dist/index.d.ts
CHANGED
|
@@ -173,6 +173,11 @@ export declare class Vectocore {
|
|
|
173
173
|
putExtremeData({ indexName, docBody }: PutExtremeDataParams): Promise<any>;
|
|
174
174
|
getExtremeData({ indexName, documentId }: GetExtremeDataParams): Promise<any>;
|
|
175
175
|
listExtremeData({ indexName, lastKey, withVectorValue }: ListExtremeDataParams): Promise<any>;
|
|
176
|
+
/**
|
|
177
|
+
* 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
|
|
178
|
+
* * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
|
|
179
|
+
* @returns 인덱스 목록
|
|
180
|
+
*/
|
|
176
181
|
listAllExtremeData({ indexName, withVectorValue }: ListAllExtremeDataParams): Promise<any>;
|
|
177
182
|
deleteExtremeData({ indexName, documentId }: DeleteExtremeDataParams): Promise<any>;
|
|
178
183
|
extremeSearch({ mode, indexNames, question, top, rerank }: ExtremeSearchParams): Promise<any>;
|
package/dist/mjs/index.js
CHANGED
|
@@ -102,6 +102,11 @@ export class Vectocore {
|
|
|
102
102
|
const response = await this.requestPost(requestParam);
|
|
103
103
|
return response;
|
|
104
104
|
}
|
|
105
|
+
/**
|
|
106
|
+
* 특정 인덱스에 저장된 모든 지식 데이터를 조회합니다.
|
|
107
|
+
* * @param params - 조회에 필요한 매개변수 객체 ({@link ListAllExtremeDataParams})
|
|
108
|
+
* @returns 인덱스 목록
|
|
109
|
+
*/
|
|
105
110
|
async listAllExtremeData({ indexName, withVectorValue }) {
|
|
106
111
|
const requestParam = {
|
|
107
112
|
command: "list_all_extreme_data",
|