@alicloud/aimiaobi20230801 1.22.1 → 1.22.3
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/models/GetPropertiesResponseBodyDataIntelligentSearchConfig.d.ts +2 -0
- package/dist/models/GetPropertiesResponseBodyDataIntelligentSearchConfig.js +6 -0
- package/dist/models/GetPropertiesResponseBodyDataIntelligentSearchConfig.js.map +1 -1
- package/dist/models/GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.d.ts +28 -0
- package/dist/models/GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.js +62 -0
- package/dist/models/GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.js.map +1 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyData.d.ts +2 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyData.js +6 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyData.js.map +1 -1
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfig.d.ts +32 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfig.js +75 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfig.js.map +1 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.d.ts +18 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.js +71 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.js.map +1 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.d.ts +28 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.js +62 -0
- package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.js.map +1 -0
- package/dist/models/model.d.ts +4 -0
- package/dist/models/model.js +26 -18
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/models/GetPropertiesResponseBodyDataIntelligentSearchConfig.ts +7 -0
- package/src/models/GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.ts +45 -0
- package/src/models/ListSearchTaskDialoguesResponseBodyData.ts +7 -0
- package/src/models/ListSearchTaskDialoguesResponseBodyDataChatConfig.ts +61 -0
- package/src/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.ts +43 -0
- package/src/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.ts +45 -0
- package/src/models/model.ts +4 -0
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources } from "./GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources";
|
|
2
3
|
import { GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples } from "./GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples";
|
|
3
4
|
import { GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources } from "./GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources";
|
|
4
5
|
export declare class GetPropertiesResponseBodyDataIntelligentSearchConfig extends $dara.Model {
|
|
6
|
+
copilotPreciseSearchSources?: GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources[];
|
|
5
7
|
/**
|
|
6
8
|
* @example
|
|
7
9
|
* xxx
|
|
@@ -36,11 +36,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
36
36
|
exports.GetPropertiesResponseBodyDataIntelligentSearchConfig = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources_1 = require("./GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources");
|
|
39
40
|
const GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples_1 = require("./GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples");
|
|
40
41
|
const GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources_1 = require("./GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources");
|
|
41
42
|
class GetPropertiesResponseBodyDataIntelligentSearchConfig extends $dara.Model {
|
|
42
43
|
static names() {
|
|
43
44
|
return {
|
|
45
|
+
copilotPreciseSearchSources: 'CopilotPreciseSearchSources',
|
|
44
46
|
productDescription: 'ProductDescription',
|
|
45
47
|
searchSamples: 'SearchSamples',
|
|
46
48
|
searchSources: 'SearchSources',
|
|
@@ -48,12 +50,16 @@ class GetPropertiesResponseBodyDataIntelligentSearchConfig extends $dara.Model {
|
|
|
48
50
|
}
|
|
49
51
|
static types() {
|
|
50
52
|
return {
|
|
53
|
+
copilotPreciseSearchSources: { 'type': 'array', 'itemType': GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources_1.GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources },
|
|
51
54
|
productDescription: 'string',
|
|
52
55
|
searchSamples: { 'type': 'array', 'itemType': GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples_1.GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples },
|
|
53
56
|
searchSources: { 'type': 'array', 'itemType': GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources_1.GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources },
|
|
54
57
|
};
|
|
55
58
|
}
|
|
56
59
|
validate() {
|
|
60
|
+
if (Array.isArray(this.copilotPreciseSearchSources)) {
|
|
61
|
+
$dara.Model.validateArray(this.copilotPreciseSearchSources);
|
|
62
|
+
}
|
|
57
63
|
if (Array.isArray(this.searchSamples)) {
|
|
58
64
|
$dara.Model.validateArray(this.searchSamples);
|
|
59
65
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"GetPropertiesResponseBodyDataIntelligentSearchConfig.js","sourceRoot":"","sources":["../../src/models/GetPropertiesResponseBodyDataIntelligentSearchConfig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,2JAAwJ;AACxJ,2JAAwJ;AAGxJ,MAAa,oDAAqD,SAAQ,KAAK,CAAC,KAAK;
|
|
1
|
+
{"version":3,"file":"GetPropertiesResponseBodyDataIntelligentSearchConfig.js","sourceRoot":"","sources":["../../src/models/GetPropertiesResponseBodyDataIntelligentSearchConfig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,uLAAoL;AACpL,2JAAwJ;AACxJ,2JAAwJ;AAGxJ,MAAa,oDAAqD,SAAQ,KAAK,CAAC,KAAK;IASnF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,2BAA2B,EAAE,6BAA6B;YAC1D,kBAAkB,EAAE,oBAAoB;YACxC,aAAa,EAAE,eAAe;YAC9B,aAAa,EAAE,eAAe;SAC/B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,2BAA2B,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,iKAA+E,EAAE;YAC7I,kBAAkB,EAAE,QAAQ;YAC5B,aAAa,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,qIAAiE,EAAE;YACjH,aAAa,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,qIAAiE,EAAE;SAClH,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,2BAA2B,CAAC,EAAE,CAAC;YACnD,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC;QAC9D,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC;YACrC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAChD,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC;YACrC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAChD,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AA3CD,oHA2CC"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* x
|
|
6
|
+
*/
|
|
7
|
+
code?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* x
|
|
11
|
+
*/
|
|
12
|
+
datasetName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* x
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
static names(): {
|
|
19
|
+
[key: string]: string;
|
|
20
|
+
};
|
|
21
|
+
static types(): {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
};
|
|
24
|
+
validate(): void;
|
|
25
|
+
constructor(map?: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
});
|
|
28
|
+
}
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
code: 'Code',
|
|
43
|
+
datasetName: 'DatasetName',
|
|
44
|
+
name: 'Name',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
code: 'string',
|
|
50
|
+
datasetName: 'string',
|
|
51
|
+
name: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources = GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources;
|
|
62
|
+
//# sourceMappingURL=GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.js","sourceRoot":"","sources":["../../src/models/GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,+EAAgF,SAAQ,KAAK,CAAC,KAAK;IAgB9G,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,aAAa;YAC1B,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,QAAQ;YACrB,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,0KAuCC"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { ListSearchTaskDialoguesResponseBodyDataChatConfig } from "./ListSearchTaskDialoguesResponseBodyDataChatConfig";
|
|
2
3
|
export declare class ListSearchTaskDialoguesResponseBodyData extends $dara.Model {
|
|
4
|
+
chatConfig?: ListSearchTaskDialoguesResponseBodyDataChatConfig;
|
|
3
5
|
/**
|
|
4
6
|
* @example
|
|
5
7
|
* 2024-11-25 13:33:01
|
|
@@ -36,9 +36,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
36
36
|
exports.ListSearchTaskDialoguesResponseBodyData = void 0;
|
|
37
37
|
// This file is auto-generated, don't edit it
|
|
38
38
|
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const ListSearchTaskDialoguesResponseBodyDataChatConfig_1 = require("./ListSearchTaskDialoguesResponseBodyDataChatConfig");
|
|
39
40
|
class ListSearchTaskDialoguesResponseBodyData extends $dara.Model {
|
|
40
41
|
static names() {
|
|
41
42
|
return {
|
|
43
|
+
chatConfig: 'ChatConfig',
|
|
42
44
|
createTime: 'CreateTime',
|
|
43
45
|
dialogueType: 'DialogueType',
|
|
44
46
|
goodText: 'GoodText',
|
|
@@ -54,6 +56,7 @@ class ListSearchTaskDialoguesResponseBodyData extends $dara.Model {
|
|
|
54
56
|
}
|
|
55
57
|
static types() {
|
|
56
58
|
return {
|
|
59
|
+
chatConfig: ListSearchTaskDialoguesResponseBodyDataChatConfig_1.ListSearchTaskDialoguesResponseBodyDataChatConfig,
|
|
57
60
|
createTime: 'string',
|
|
58
61
|
dialogueType: 'number',
|
|
59
62
|
goodText: 'string',
|
|
@@ -68,6 +71,9 @@ class ListSearchTaskDialoguesResponseBodyData extends $dara.Model {
|
|
|
68
71
|
};
|
|
69
72
|
}
|
|
70
73
|
validate() {
|
|
74
|
+
if (this.chatConfig && typeof this.chatConfig.validate === 'function') {
|
|
75
|
+
this.chatConfig.validate();
|
|
76
|
+
}
|
|
71
77
|
if (Array.isArray(this.tags)) {
|
|
72
78
|
$dara.Model.validateArray(this.tags);
|
|
73
79
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListSearchTaskDialoguesResponseBodyData.js","sourceRoot":"","sources":["../../src/models/ListSearchTaskDialoguesResponseBodyData.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;
|
|
1
|
+
{"version":3,"file":"ListSearchTaskDialoguesResponseBodyData.js","sourceRoot":"","sources":["../../src/models/ListSearchTaskDialoguesResponseBodyData.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,2HAAwH;AAGxH,MAAa,uCAAwC,SAAQ,KAAK,CAAC,KAAK;IAqDtE,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,YAAY;YACxB,UAAU,EAAE,YAAY;YACxB,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;YACpB,eAAe,EAAE,iBAAiB;YAClC,MAAM,EAAE,QAAQ;YAChB,MAAM,EAAE,QAAQ;YAChB,eAAe,EAAE,iBAAiB;YAClC,SAAS,EAAE,WAAW;YACtB,IAAI,EAAE,MAAM;YACZ,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,UAAU,EAAE,qGAAiD;YAC7D,UAAU,EAAE,QAAQ;YACpB,YAAY,EAAE,QAAQ;YACtB,QAAQ,EAAE,QAAQ;YAClB,eAAe,EAAE,QAAQ;YACzB,MAAM,EAAE,QAAQ;YAChB,MAAM,EAAE,QAAQ;YAChB,eAAe,EAAE,QAAQ;YACzB,SAAS,EAAE,QAAQ;YACnB,IAAI,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YAC/C,MAAM,EAAE,QAAQ;YAChB,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,IAAI,CAAC,UAAU,IAAI,OAAQ,IAAI,CAAC,UAAkB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YAC7E,IAAI,CAAC,UAAkB,CAAC,QAAQ,EAAE,CAAC;QACtC,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,EAAE,CAAC;YAC5B,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACvC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApGD,0FAoGC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam } from "./ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam";
|
|
3
|
+
export declare class ListSearchTaskDialoguesResponseBodyDataChatConfig extends $dara.Model {
|
|
4
|
+
/**
|
|
5
|
+
* @example
|
|
6
|
+
* 24
|
|
7
|
+
*/
|
|
8
|
+
dialogueType?: number;
|
|
9
|
+
endToEnd?: boolean;
|
|
10
|
+
/**
|
|
11
|
+
* @example
|
|
12
|
+
* concise
|
|
13
|
+
*/
|
|
14
|
+
generateLevel?: string;
|
|
15
|
+
/**
|
|
16
|
+
* @example
|
|
17
|
+
* copilotReference
|
|
18
|
+
*/
|
|
19
|
+
generateTechnology?: string;
|
|
20
|
+
searchModels?: string[];
|
|
21
|
+
searchParam?: ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam;
|
|
22
|
+
static names(): {
|
|
23
|
+
[key: string]: string;
|
|
24
|
+
};
|
|
25
|
+
static types(): {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
};
|
|
28
|
+
validate(): void;
|
|
29
|
+
constructor(map?: {
|
|
30
|
+
[key: string]: any;
|
|
31
|
+
});
|
|
32
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ListSearchTaskDialoguesResponseBodyDataChatConfig = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam_1 = require("./ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam");
|
|
40
|
+
class ListSearchTaskDialoguesResponseBodyDataChatConfig extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
dialogueType: 'DialogueType',
|
|
44
|
+
endToEnd: 'EndToEnd',
|
|
45
|
+
generateLevel: 'GenerateLevel',
|
|
46
|
+
generateTechnology: 'GenerateTechnology',
|
|
47
|
+
searchModels: 'SearchModels',
|
|
48
|
+
searchParam: 'SearchParam',
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
static types() {
|
|
52
|
+
return {
|
|
53
|
+
dialogueType: 'number',
|
|
54
|
+
endToEnd: 'boolean',
|
|
55
|
+
generateLevel: 'string',
|
|
56
|
+
generateTechnology: 'string',
|
|
57
|
+
searchModels: { 'type': 'array', 'itemType': 'string' },
|
|
58
|
+
searchParam: ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam_1.ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
validate() {
|
|
62
|
+
if (Array.isArray(this.searchModels)) {
|
|
63
|
+
$dara.Model.validateArray(this.searchModels);
|
|
64
|
+
}
|
|
65
|
+
if (this.searchParam && typeof this.searchParam.validate === 'function') {
|
|
66
|
+
this.searchParam.validate();
|
|
67
|
+
}
|
|
68
|
+
super.validate();
|
|
69
|
+
}
|
|
70
|
+
constructor(map) {
|
|
71
|
+
super(map);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
exports.ListSearchTaskDialoguesResponseBodyDataChatConfig = ListSearchTaskDialoguesResponseBodyDataChatConfig;
|
|
75
|
+
//# sourceMappingURL=ListSearchTaskDialoguesResponseBodyDataChatConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListSearchTaskDialoguesResponseBodyDataChatConfig.js","sourceRoot":"","sources":["../../src/models/ListSearchTaskDialoguesResponseBodyDataChatConfig.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,iJAA8I;AAG9I,MAAa,iDAAkD,SAAQ,KAAK,CAAC,KAAK;IAmBhF,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,cAAc;YAC5B,QAAQ,EAAE,UAAU;YACpB,aAAa,EAAE,eAAe;YAC9B,kBAAkB,EAAE,oBAAoB;YACxC,YAAY,EAAE,cAAc;YAC5B,WAAW,EAAE,aAAa;SAC3B,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,YAAY,EAAE,QAAQ;YACtB,QAAQ,EAAE,SAAS;YACnB,aAAa,EAAE,QAAQ;YACvB,kBAAkB,EAAE,QAAQ;YAC5B,YAAY,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YACvD,WAAW,EAAE,2HAA4D;SAC1E,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,YAAY,CAAC,EAAE,CAAC;YACpC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;QAC/C,CAAC;QACD,IAAG,IAAI,CAAC,WAAW,IAAI,OAAQ,IAAI,CAAC,WAAmB,CAAC,QAAQ,KAAK,UAAU,EAAE,CAAC;YAC/E,IAAI,CAAC,WAAmB,CAAC,QAAQ,EAAE,CAAC;QACvC,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAtDD,8GAsDC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
import { ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources } from "./ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources";
|
|
3
|
+
export declare class ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam extends $dara.Model {
|
|
4
|
+
endTime?: string;
|
|
5
|
+
multimodalSearchTypes?: string[];
|
|
6
|
+
searchSources?: ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources[];
|
|
7
|
+
startTime?: string;
|
|
8
|
+
static names(): {
|
|
9
|
+
[key: string]: string;
|
|
10
|
+
};
|
|
11
|
+
static types(): {
|
|
12
|
+
[key: string]: any;
|
|
13
|
+
};
|
|
14
|
+
validate(): void;
|
|
15
|
+
constructor(map?: {
|
|
16
|
+
[key: string]: any;
|
|
17
|
+
});
|
|
18
|
+
}
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
const ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources_1 = require("./ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources");
|
|
40
|
+
class ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam extends $dara.Model {
|
|
41
|
+
static names() {
|
|
42
|
+
return {
|
|
43
|
+
endTime: 'EndTime',
|
|
44
|
+
multimodalSearchTypes: 'MultimodalSearchTypes',
|
|
45
|
+
searchSources: 'SearchSources',
|
|
46
|
+
startTime: 'StartTime',
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
static types() {
|
|
50
|
+
return {
|
|
51
|
+
endTime: 'string',
|
|
52
|
+
multimodalSearchTypes: { 'type': 'array', 'itemType': 'string' },
|
|
53
|
+
searchSources: { 'type': 'array', 'itemType': ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources_1.ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources },
|
|
54
|
+
startTime: 'string',
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
validate() {
|
|
58
|
+
if (Array.isArray(this.multimodalSearchTypes)) {
|
|
59
|
+
$dara.Model.validateArray(this.multimodalSearchTypes);
|
|
60
|
+
}
|
|
61
|
+
if (Array.isArray(this.searchSources)) {
|
|
62
|
+
$dara.Model.validateArray(this.searchSources);
|
|
63
|
+
}
|
|
64
|
+
super.validate();
|
|
65
|
+
}
|
|
66
|
+
constructor(map) {
|
|
67
|
+
super(map);
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
exports.ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam = ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam;
|
|
71
|
+
//# sourceMappingURL=ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.js","sourceRoot":"","sources":["../../src/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAC/C,2KAAwK;AAGxK,MAAa,4DAA6D,SAAQ,KAAK,CAAC,KAAK;IAK3F,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,SAAS;YAClB,qBAAqB,EAAE,uBAAuB;YAC9C,aAAa,EAAE,eAAe;YAC9B,SAAS,EAAE,WAAW;SACvB,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,OAAO,EAAE,QAAQ;YACjB,qBAAqB,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE;YAChE,aAAa,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,UAAU,EAAE,qJAAyE,EAAE;YACzH,SAAS,EAAE,QAAQ;SACpB,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,qBAAqB,CAAC,EAAE,CAAC;YAC7C,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC;QACxD,CAAC;QACD,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,aAAa,CAAC,EAAE,CAAC;YACrC,KAAK,CAAC,KAAK,CAAC,aAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC;QAChD,CAAC;QACD,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AApCD,oIAoCC"}
|
package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.d.ts
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import * as $dara from '@darabonba/typescript';
|
|
2
|
+
export declare class ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources extends $dara.Model {
|
|
3
|
+
/**
|
|
4
|
+
* @example
|
|
5
|
+
* x\"x
|
|
6
|
+
*/
|
|
7
|
+
code?: string;
|
|
8
|
+
/**
|
|
9
|
+
* @example
|
|
10
|
+
* xx
|
|
11
|
+
*/
|
|
12
|
+
datasetName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* @example
|
|
15
|
+
* x
|
|
16
|
+
*/
|
|
17
|
+
name?: string;
|
|
18
|
+
static names(): {
|
|
19
|
+
[key: string]: string;
|
|
20
|
+
};
|
|
21
|
+
static types(): {
|
|
22
|
+
[key: string]: any;
|
|
23
|
+
};
|
|
24
|
+
validate(): void;
|
|
25
|
+
constructor(map?: {
|
|
26
|
+
[key: string]: any;
|
|
27
|
+
});
|
|
28
|
+
}
|
package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
exports.ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources = void 0;
|
|
37
|
+
// This file is auto-generated, don't edit it
|
|
38
|
+
const $dara = __importStar(require("@darabonba/typescript"));
|
|
39
|
+
class ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources extends $dara.Model {
|
|
40
|
+
static names() {
|
|
41
|
+
return {
|
|
42
|
+
code: 'Code',
|
|
43
|
+
datasetName: 'DatasetName',
|
|
44
|
+
name: 'Name',
|
|
45
|
+
};
|
|
46
|
+
}
|
|
47
|
+
static types() {
|
|
48
|
+
return {
|
|
49
|
+
code: 'string',
|
|
50
|
+
datasetName: 'string',
|
|
51
|
+
name: 'string',
|
|
52
|
+
};
|
|
53
|
+
}
|
|
54
|
+
validate() {
|
|
55
|
+
super.validate();
|
|
56
|
+
}
|
|
57
|
+
constructor(map) {
|
|
58
|
+
super(map);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
exports.ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources = ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources;
|
|
62
|
+
//# sourceMappingURL=ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.js.map
|
package/dist/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.js","sourceRoot":"","sources":["../../src/models/ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,6CAA6C;AAC7C,6DAA+C;AAG/C,MAAa,yEAA0E,SAAQ,KAAK,CAAC,KAAK;IAgBxG,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,MAAM;YACZ,WAAW,EAAE,aAAa;YAC1B,IAAI,EAAE,MAAM;SACb,CAAC;IACJ,CAAC;IAED,MAAM,CAAC,KAAK;QACV,OAAO;YACL,IAAI,EAAE,QAAQ;YACd,WAAW,EAAE,QAAQ;YACrB,IAAI,EAAE,QAAQ;SACf,CAAC;IACJ,CAAC;IAED,QAAQ;QACN,KAAK,CAAC,QAAQ,EAAE,CAAC;IACnB,CAAC;IAED,YAAY,GAA4B;QACtC,KAAK,CAAC,GAAG,CAAC,CAAC;IACb,CAAC;CACF;AAvCD,8JAuCC"}
|
package/dist/models/model.d.ts
CHANGED
|
@@ -82,6 +82,7 @@ export { GetInterveneRuleDetailResponseBodyData } from './GetInterveneRuleDetail
|
|
|
82
82
|
export { GetInterveneTemplateFileUrlResponseBodyData } from './GetInterveneTemplateFileUrlResponseBodyData';
|
|
83
83
|
export { GetMaterialByIdResponseBodyData } from './GetMaterialByIdResponseBodyData';
|
|
84
84
|
export { GetPropertiesResponseBodyDataConsoleConfig } from './GetPropertiesResponseBodyDataConsoleConfig';
|
|
85
|
+
export { GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources } from './GetPropertiesResponseBodyDataIntelligentSearchConfigCopilotPreciseSearchSources';
|
|
85
86
|
export { GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamplesArticles } from './GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamplesArticles';
|
|
86
87
|
export { GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples } from './GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSamples';
|
|
87
88
|
export { GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources } from './GetPropertiesResponseBodyDataIntelligentSearchConfigSearchSources';
|
|
@@ -170,6 +171,9 @@ export { ListSearchTaskDialogueDatasResponseBodyArticlesMultimodalMedias } from
|
|
|
170
171
|
export { ListSearchTaskDialogueDatasResponseBodyArticles } from './ListSearchTaskDialogueDatasResponseBodyArticles';
|
|
171
172
|
export { ListSearchTaskDialogueDatasResponseBodyImages } from './ListSearchTaskDialogueDatasResponseBodyImages';
|
|
172
173
|
export { ListSearchTaskDialogueDatasResponseBodyVideos } from './ListSearchTaskDialogueDatasResponseBodyVideos';
|
|
174
|
+
export { ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources } from './ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParamSearchSources';
|
|
175
|
+
export { ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam } from './ListSearchTaskDialoguesResponseBodyDataChatConfigSearchParam';
|
|
176
|
+
export { ListSearchTaskDialoguesResponseBodyDataChatConfig } from './ListSearchTaskDialoguesResponseBodyDataChatConfig';
|
|
173
177
|
export { ListSearchTaskDialoguesResponseBodyData } from './ListSearchTaskDialoguesResponseBodyData';
|
|
174
178
|
export { ListSearchTasksResponseBodyData } from './ListSearchTasksResponseBodyData';
|
|
175
179
|
export { ListStyleLearningResultResponseBodyData } from './ListStyleLearningResultResponseBodyData';
|