vectocore4 1.0.4 → 1.0.6
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/Readme.md +2 -2
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/Readme.md
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
### 현대퓨처넷
|
|
1
|
+
### 현대퓨처넷 Vectocore4 npm 라이브러리
|
|
2
2
|
|
|
3
|
-
https://
|
|
3
|
+
https://v4.vectocore.com
|
package/dist/index.d.ts
CHANGED
|
@@ -28,7 +28,7 @@ export interface DeleteIndexParams {
|
|
|
28
28
|
*/
|
|
29
29
|
indexName: string;
|
|
30
30
|
}
|
|
31
|
-
export type XFinderDocType = "text" | "image";
|
|
31
|
+
export type XFinderDocType = "text" | "image" | "video";
|
|
32
32
|
export interface PutExtremeDataParams {
|
|
33
33
|
/**
|
|
34
34
|
* 지식을 추가할 인덱스의 이름입니다.
|
|
@@ -154,7 +154,7 @@ export type LensFileType = {
|
|
|
154
154
|
url: string;
|
|
155
155
|
ext_img_urls?: string[];
|
|
156
156
|
};
|
|
157
|
-
export type LensModelType = "5.1chat" | "5chat" | "4o" | "mini";
|
|
157
|
+
export type LensModelType = "5.3chat" | "5.1chat" | "5chat" | "4o" | "mini";
|
|
158
158
|
export interface LensChatParams {
|
|
159
159
|
/** 사용자 질문 (필수) */
|
|
160
160
|
question: string;
|
|
@@ -162,7 +162,7 @@ export interface LensChatParams {
|
|
|
162
162
|
stream?: boolean;
|
|
163
163
|
/**
|
|
164
164
|
* 모델 선택 (선택) 기본값 : 5.1chat ({@link LensModelType})
|
|
165
|
-
* - 5.1chat, 5chat, 4o, mini, Default : 5.1chat
|
|
165
|
+
* - 5.3chat, 5.1chat, 5chat, 4o, mini, Default : 5.1chat
|
|
166
166
|
* - ‼️ 단, chat 모델의 경우 만료될 수 있음.
|
|
167
167
|
* - ‼️ mini 모델은 멀티모달을 사용할 수 없음.
|
|
168
168
|
* */
|