@alicloud/aimiaobi20230801 1.35.0 → 1.35.1
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/client.js +6 -0
- package/dist/client.js.map +1 -1
- package/dist/models/ListSearchTaskDialogueDatasResponseBody.d.ts +23 -0
- package/dist/models/ListSearchTaskDialogueDatasResponseBody.js +27 -1
- package/dist/models/ListSearchTaskDialogueDatasResponseBody.js.map +1 -1
- package/dist/models/RunSearchGenerationRequest.d.ts +5 -0
- package/dist/models/RunSearchGenerationRequest.js +2 -0
- package/dist/models/RunSearchGenerationRequest.js.map +1 -1
- package/dist/models/RunSearchGenerationResponseBody.d.ts +405 -0
- package/dist/models/RunSearchGenerationResponseBody.js +407 -2
- package/dist/models/RunSearchGenerationResponseBody.js.map +1 -1
- package/dist/models/RunSearchGenerationShrinkRequest.d.ts +5 -0
- package/dist/models/RunSearchGenerationShrinkRequest.js +2 -0
- package/dist/models/RunSearchGenerationShrinkRequest.js.map +1 -1
- package/dist/models/model.d.ts +15 -0
- package/dist/models/model.js +121 -91
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +8 -0
- package/src/models/ListSearchTaskDialogueDatasResponseBody.ts +40 -0
- package/src/models/RunSearchGenerationRequest.ts +7 -0
- package/src/models/RunSearchGenerationResponseBody.ts +684 -0
- package/src/models/RunSearchGenerationShrinkRequest.ts +7 -0
- package/src/models/model.ts +15 -0
package/dist/client.js
CHANGED
|
@@ -8917,6 +8917,9 @@ class Client extends openapi_core_1.default {
|
|
|
8917
8917
|
if (!$dara.isNull(request.chatConfigShrink)) {
|
|
8918
8918
|
body["ChatConfig"] = request.chatConfigShrink;
|
|
8919
8919
|
}
|
|
8920
|
+
if (!$dara.isNull(request.fileUrl)) {
|
|
8921
|
+
body["FileUrl"] = request.fileUrl;
|
|
8922
|
+
}
|
|
8920
8923
|
if (!$dara.isNull(request.modelId)) {
|
|
8921
8924
|
body["ModelId"] = request.modelId;
|
|
8922
8925
|
}
|
|
@@ -8993,6 +8996,9 @@ class Client extends openapi_core_1.default {
|
|
|
8993
8996
|
if (!$dara.isNull(request.chatConfigShrink)) {
|
|
8994
8997
|
body["ChatConfig"] = request.chatConfigShrink;
|
|
8995
8998
|
}
|
|
8999
|
+
if (!$dara.isNull(request.fileUrl)) {
|
|
9000
|
+
body["FileUrl"] = request.fileUrl;
|
|
9001
|
+
}
|
|
8996
9002
|
if (!$dara.isNull(request.modelId)) {
|
|
8997
9003
|
body["ModelId"] = request.modelId;
|
|
8998
9004
|
}
|