@alicloud/aimiaobi20230801 1.14.0 → 1.16.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/client.d.ts +870 -48
- package/dist/client.js +941 -66
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +1565 -205
package/dist/client.d.ts
CHANGED
|
@@ -1518,6 +1518,119 @@ export declare class DocumentExtractionResponse extends $tea.Model {
|
|
|
1518
1518
|
[key: string]: any;
|
|
1519
1519
|
});
|
|
1520
1520
|
}
|
|
1521
|
+
export declare class ExportAnalysisTagDetailByTaskIdRequest extends $tea.Model {
|
|
1522
|
+
categories?: string[];
|
|
1523
|
+
/**
|
|
1524
|
+
* @remarks
|
|
1525
|
+
* This parameter is required.
|
|
1526
|
+
*
|
|
1527
|
+
* @example
|
|
1528
|
+
* xxx
|
|
1529
|
+
*/
|
|
1530
|
+
taskId?: string;
|
|
1531
|
+
/**
|
|
1532
|
+
* @remarks
|
|
1533
|
+
* This parameter is required.
|
|
1534
|
+
*
|
|
1535
|
+
* @example
|
|
1536
|
+
* xxxx
|
|
1537
|
+
*/
|
|
1538
|
+
workspaceId?: string;
|
|
1539
|
+
static names(): {
|
|
1540
|
+
[key: string]: string;
|
|
1541
|
+
};
|
|
1542
|
+
static types(): {
|
|
1543
|
+
[key: string]: any;
|
|
1544
|
+
};
|
|
1545
|
+
constructor(map?: {
|
|
1546
|
+
[key: string]: any;
|
|
1547
|
+
});
|
|
1548
|
+
}
|
|
1549
|
+
export declare class ExportAnalysisTagDetailByTaskIdShrinkRequest extends $tea.Model {
|
|
1550
|
+
categoriesShrink?: string;
|
|
1551
|
+
/**
|
|
1552
|
+
* @remarks
|
|
1553
|
+
* This parameter is required.
|
|
1554
|
+
*
|
|
1555
|
+
* @example
|
|
1556
|
+
* xxx
|
|
1557
|
+
*/
|
|
1558
|
+
taskId?: string;
|
|
1559
|
+
/**
|
|
1560
|
+
* @remarks
|
|
1561
|
+
* This parameter is required.
|
|
1562
|
+
*
|
|
1563
|
+
* @example
|
|
1564
|
+
* xxxx
|
|
1565
|
+
*/
|
|
1566
|
+
workspaceId?: string;
|
|
1567
|
+
static names(): {
|
|
1568
|
+
[key: string]: string;
|
|
1569
|
+
};
|
|
1570
|
+
static types(): {
|
|
1571
|
+
[key: string]: any;
|
|
1572
|
+
};
|
|
1573
|
+
constructor(map?: {
|
|
1574
|
+
[key: string]: any;
|
|
1575
|
+
});
|
|
1576
|
+
}
|
|
1577
|
+
export declare class ExportAnalysisTagDetailByTaskIdResponseBody extends $tea.Model {
|
|
1578
|
+
/**
|
|
1579
|
+
* @example
|
|
1580
|
+
* NoData
|
|
1581
|
+
*/
|
|
1582
|
+
code?: string;
|
|
1583
|
+
/**
|
|
1584
|
+
* @example
|
|
1585
|
+
* http://www.example.com/xxx.xlsx
|
|
1586
|
+
*/
|
|
1587
|
+
data?: string;
|
|
1588
|
+
/**
|
|
1589
|
+
* @example
|
|
1590
|
+
* 200
|
|
1591
|
+
*/
|
|
1592
|
+
httpStatusCode?: number;
|
|
1593
|
+
/**
|
|
1594
|
+
* @example
|
|
1595
|
+
* success
|
|
1596
|
+
*/
|
|
1597
|
+
message?: string;
|
|
1598
|
+
/**
|
|
1599
|
+
* @example
|
|
1600
|
+
* 1813ceee-7fe5-41b4-87e5-982a4d18cca5
|
|
1601
|
+
*/
|
|
1602
|
+
requestId?: string;
|
|
1603
|
+
/**
|
|
1604
|
+
* @example
|
|
1605
|
+
* true
|
|
1606
|
+
*/
|
|
1607
|
+
success?: boolean;
|
|
1608
|
+
static names(): {
|
|
1609
|
+
[key: string]: string;
|
|
1610
|
+
};
|
|
1611
|
+
static types(): {
|
|
1612
|
+
[key: string]: any;
|
|
1613
|
+
};
|
|
1614
|
+
constructor(map?: {
|
|
1615
|
+
[key: string]: any;
|
|
1616
|
+
});
|
|
1617
|
+
}
|
|
1618
|
+
export declare class ExportAnalysisTagDetailByTaskIdResponse extends $tea.Model {
|
|
1619
|
+
headers?: {
|
|
1620
|
+
[key: string]: string;
|
|
1621
|
+
};
|
|
1622
|
+
statusCode?: number;
|
|
1623
|
+
body?: ExportAnalysisTagDetailByTaskIdResponseBody;
|
|
1624
|
+
static names(): {
|
|
1625
|
+
[key: string]: string;
|
|
1626
|
+
};
|
|
1627
|
+
static types(): {
|
|
1628
|
+
[key: string]: any;
|
|
1629
|
+
};
|
|
1630
|
+
constructor(map?: {
|
|
1631
|
+
[key: string]: any;
|
|
1632
|
+
});
|
|
1633
|
+
}
|
|
1521
1634
|
export declare class ExportGeneratedContentRequest extends $tea.Model {
|
|
1522
1635
|
/**
|
|
1523
1636
|
* @remarks
|
|
@@ -8428,6 +8541,150 @@ export declare class RunAbbreviationContentResponse extends $tea.Model {
|
|
|
8428
8541
|
[key: string]: any;
|
|
8429
8542
|
});
|
|
8430
8543
|
}
|
|
8544
|
+
export declare class RunBookIntroductionRequest extends $tea.Model {
|
|
8545
|
+
/**
|
|
8546
|
+
* @remarks
|
|
8547
|
+
* This parameter is required.
|
|
8548
|
+
*
|
|
8549
|
+
* @example
|
|
8550
|
+
* 3YQRatoe8phnpIsIE6z7DTPknhG8Fj
|
|
8551
|
+
*/
|
|
8552
|
+
docId?: string;
|
|
8553
|
+
/**
|
|
8554
|
+
* @remarks
|
|
8555
|
+
* This parameter is required.
|
|
8556
|
+
*
|
|
8557
|
+
* @example
|
|
8558
|
+
* 0f56f98a-f2d8-47ec-98e9-1cbdcffa9539
|
|
8559
|
+
*/
|
|
8560
|
+
sessionId?: string;
|
|
8561
|
+
/**
|
|
8562
|
+
* @remarks
|
|
8563
|
+
* This parameter is required.
|
|
8564
|
+
*
|
|
8565
|
+
* @example
|
|
8566
|
+
* llm-vtmox6g2bhq2qv5c
|
|
8567
|
+
*/
|
|
8568
|
+
workspaceId?: string;
|
|
8569
|
+
static names(): {
|
|
8570
|
+
[key: string]: string;
|
|
8571
|
+
};
|
|
8572
|
+
static types(): {
|
|
8573
|
+
[key: string]: any;
|
|
8574
|
+
};
|
|
8575
|
+
constructor(map?: {
|
|
8576
|
+
[key: string]: any;
|
|
8577
|
+
});
|
|
8578
|
+
}
|
|
8579
|
+
export declare class RunBookIntroductionResponseBody extends $tea.Model {
|
|
8580
|
+
header?: RunBookIntroductionResponseBodyHeader;
|
|
8581
|
+
payload?: RunBookIntroductionResponseBodyPayload;
|
|
8582
|
+
/**
|
|
8583
|
+
* @remarks
|
|
8584
|
+
* Id of the request
|
|
8585
|
+
*
|
|
8586
|
+
* @example
|
|
8587
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
8588
|
+
*/
|
|
8589
|
+
requestId?: string;
|
|
8590
|
+
static names(): {
|
|
8591
|
+
[key: string]: string;
|
|
8592
|
+
};
|
|
8593
|
+
static types(): {
|
|
8594
|
+
[key: string]: any;
|
|
8595
|
+
};
|
|
8596
|
+
constructor(map?: {
|
|
8597
|
+
[key: string]: any;
|
|
8598
|
+
});
|
|
8599
|
+
}
|
|
8600
|
+
export declare class RunBookIntroductionResponse extends $tea.Model {
|
|
8601
|
+
headers?: {
|
|
8602
|
+
[key: string]: string;
|
|
8603
|
+
};
|
|
8604
|
+
statusCode?: number;
|
|
8605
|
+
body?: RunBookIntroductionResponseBody;
|
|
8606
|
+
static names(): {
|
|
8607
|
+
[key: string]: string;
|
|
8608
|
+
};
|
|
8609
|
+
static types(): {
|
|
8610
|
+
[key: string]: any;
|
|
8611
|
+
};
|
|
8612
|
+
constructor(map?: {
|
|
8613
|
+
[key: string]: any;
|
|
8614
|
+
});
|
|
8615
|
+
}
|
|
8616
|
+
export declare class RunBookSmartCardRequest extends $tea.Model {
|
|
8617
|
+
/**
|
|
8618
|
+
* @remarks
|
|
8619
|
+
* This parameter is required.
|
|
8620
|
+
*
|
|
8621
|
+
* @example
|
|
8622
|
+
* 84ufBYEeLMZOjRFo84HJ7ySL3Efr55
|
|
8623
|
+
*/
|
|
8624
|
+
docId?: string;
|
|
8625
|
+
/**
|
|
8626
|
+
* @remarks
|
|
8627
|
+
* This parameter is required.
|
|
8628
|
+
*
|
|
8629
|
+
* @example
|
|
8630
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
8631
|
+
*/
|
|
8632
|
+
sessionId?: string;
|
|
8633
|
+
/**
|
|
8634
|
+
* @remarks
|
|
8635
|
+
* This parameter is required.
|
|
8636
|
+
*
|
|
8637
|
+
* @example
|
|
8638
|
+
* llm-xxx
|
|
8639
|
+
*/
|
|
8640
|
+
workspaceId?: string;
|
|
8641
|
+
static names(): {
|
|
8642
|
+
[key: string]: string;
|
|
8643
|
+
};
|
|
8644
|
+
static types(): {
|
|
8645
|
+
[key: string]: any;
|
|
8646
|
+
};
|
|
8647
|
+
constructor(map?: {
|
|
8648
|
+
[key: string]: any;
|
|
8649
|
+
});
|
|
8650
|
+
}
|
|
8651
|
+
export declare class RunBookSmartCardResponseBody extends $tea.Model {
|
|
8652
|
+
header?: RunBookSmartCardResponseBodyHeader;
|
|
8653
|
+
payload?: RunBookSmartCardResponseBodyPayload;
|
|
8654
|
+
/**
|
|
8655
|
+
* @remarks
|
|
8656
|
+
* Id of the request
|
|
8657
|
+
*
|
|
8658
|
+
* @example
|
|
8659
|
+
* 1813ceee-7fe5-41b4-87e5-982a4d18cca5
|
|
8660
|
+
*/
|
|
8661
|
+
requestId?: string;
|
|
8662
|
+
static names(): {
|
|
8663
|
+
[key: string]: string;
|
|
8664
|
+
};
|
|
8665
|
+
static types(): {
|
|
8666
|
+
[key: string]: any;
|
|
8667
|
+
};
|
|
8668
|
+
constructor(map?: {
|
|
8669
|
+
[key: string]: any;
|
|
8670
|
+
});
|
|
8671
|
+
}
|
|
8672
|
+
export declare class RunBookSmartCardResponse extends $tea.Model {
|
|
8673
|
+
headers?: {
|
|
8674
|
+
[key: string]: string;
|
|
8675
|
+
};
|
|
8676
|
+
statusCode?: number;
|
|
8677
|
+
body?: RunBookSmartCardResponseBody;
|
|
8678
|
+
static names(): {
|
|
8679
|
+
[key: string]: string;
|
|
8680
|
+
};
|
|
8681
|
+
static types(): {
|
|
8682
|
+
[key: string]: any;
|
|
8683
|
+
};
|
|
8684
|
+
constructor(map?: {
|
|
8685
|
+
[key: string]: any;
|
|
8686
|
+
});
|
|
8687
|
+
}
|
|
8431
8688
|
export declare class RunContinueContentRequest extends $tea.Model {
|
|
8432
8689
|
/**
|
|
8433
8690
|
* @remarks
|
|
@@ -8890,7 +9147,76 @@ export declare class RunDocQaShrinkRequest extends $tea.Model {
|
|
|
8890
9147
|
* This parameter is required.
|
|
8891
9148
|
*
|
|
8892
9149
|
* @example
|
|
8893
|
-
* llm-dswd4003ny4gh9rw
|
|
9150
|
+
* llm-dswd4003ny4gh9rw
|
|
9151
|
+
*/
|
|
9152
|
+
workspaceId?: string;
|
|
9153
|
+
static names(): {
|
|
9154
|
+
[key: string]: string;
|
|
9155
|
+
};
|
|
9156
|
+
static types(): {
|
|
9157
|
+
[key: string]: any;
|
|
9158
|
+
};
|
|
9159
|
+
constructor(map?: {
|
|
9160
|
+
[key: string]: any;
|
|
9161
|
+
});
|
|
9162
|
+
}
|
|
9163
|
+
export declare class RunDocQaResponseBody extends $tea.Model {
|
|
9164
|
+
header?: RunDocQaResponseBodyHeader;
|
|
9165
|
+
payload?: RunDocQaResponseBodyPayload;
|
|
9166
|
+
/**
|
|
9167
|
+
* @example
|
|
9168
|
+
* 1813ceee-7fe5-41b4-87e5-982a4d18cca5
|
|
9169
|
+
*/
|
|
9170
|
+
requestId?: string;
|
|
9171
|
+
static names(): {
|
|
9172
|
+
[key: string]: string;
|
|
9173
|
+
};
|
|
9174
|
+
static types(): {
|
|
9175
|
+
[key: string]: any;
|
|
9176
|
+
};
|
|
9177
|
+
constructor(map?: {
|
|
9178
|
+
[key: string]: any;
|
|
9179
|
+
});
|
|
9180
|
+
}
|
|
9181
|
+
export declare class RunDocQaResponse extends $tea.Model {
|
|
9182
|
+
headers?: {
|
|
9183
|
+
[key: string]: string;
|
|
9184
|
+
};
|
|
9185
|
+
statusCode?: number;
|
|
9186
|
+
body?: RunDocQaResponseBody;
|
|
9187
|
+
static names(): {
|
|
9188
|
+
[key: string]: string;
|
|
9189
|
+
};
|
|
9190
|
+
static types(): {
|
|
9191
|
+
[key: string]: any;
|
|
9192
|
+
};
|
|
9193
|
+
constructor(map?: {
|
|
9194
|
+
[key: string]: any;
|
|
9195
|
+
});
|
|
9196
|
+
}
|
|
9197
|
+
export declare class RunDocSmartCardRequest extends $tea.Model {
|
|
9198
|
+
/**
|
|
9199
|
+
* @remarks
|
|
9200
|
+
* This parameter is required.
|
|
9201
|
+
*
|
|
9202
|
+
* @example
|
|
9203
|
+
* 84ufBYEeLMZOjRFo84HJ7ySL3Efr55
|
|
9204
|
+
*/
|
|
9205
|
+
docId?: string;
|
|
9206
|
+
/**
|
|
9207
|
+
* @remarks
|
|
9208
|
+
* This parameter is required.
|
|
9209
|
+
*
|
|
9210
|
+
* @example
|
|
9211
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
9212
|
+
*/
|
|
9213
|
+
sessionId?: string;
|
|
9214
|
+
/**
|
|
9215
|
+
* @remarks
|
|
9216
|
+
* This parameter is required.
|
|
9217
|
+
*
|
|
9218
|
+
* @example
|
|
9219
|
+
* llm-2setzb9x4ewsd
|
|
8894
9220
|
*/
|
|
8895
9221
|
workspaceId?: string;
|
|
8896
9222
|
static names(): {
|
|
@@ -8903,10 +9229,13 @@ export declare class RunDocQaShrinkRequest extends $tea.Model {
|
|
|
8903
9229
|
[key: string]: any;
|
|
8904
9230
|
});
|
|
8905
9231
|
}
|
|
8906
|
-
export declare class
|
|
8907
|
-
header?:
|
|
8908
|
-
payload?:
|
|
9232
|
+
export declare class RunDocSmartCardResponseBody extends $tea.Model {
|
|
9233
|
+
header?: RunDocSmartCardResponseBodyHeader;
|
|
9234
|
+
payload?: RunDocSmartCardResponseBodyPayload;
|
|
8909
9235
|
/**
|
|
9236
|
+
* @remarks
|
|
9237
|
+
* Id of the request
|
|
9238
|
+
*
|
|
8910
9239
|
* @example
|
|
8911
9240
|
* 1813ceee-7fe5-41b4-87e5-982a4d18cca5
|
|
8912
9241
|
*/
|
|
@@ -8921,12 +9250,12 @@ export declare class RunDocQaResponseBody extends $tea.Model {
|
|
|
8921
9250
|
[key: string]: any;
|
|
8922
9251
|
});
|
|
8923
9252
|
}
|
|
8924
|
-
export declare class
|
|
9253
|
+
export declare class RunDocSmartCardResponse extends $tea.Model {
|
|
8925
9254
|
headers?: {
|
|
8926
9255
|
[key: string]: string;
|
|
8927
9256
|
};
|
|
8928
9257
|
statusCode?: number;
|
|
8929
|
-
body?:
|
|
9258
|
+
body?: RunDocSmartCardResponseBody;
|
|
8930
9259
|
static names(): {
|
|
8931
9260
|
[key: string]: string;
|
|
8932
9261
|
};
|
|
@@ -12274,6 +12603,112 @@ export declare class UpdateMaterialDocumentResponse extends $tea.Model {
|
|
|
12274
12603
|
[key: string]: any;
|
|
12275
12604
|
});
|
|
12276
12605
|
}
|
|
12606
|
+
export declare class UploadBookRequest extends $tea.Model {
|
|
12607
|
+
categoryId?: string;
|
|
12608
|
+
/**
|
|
12609
|
+
* @remarks
|
|
12610
|
+
* This parameter is required.
|
|
12611
|
+
*/
|
|
12612
|
+
docs?: UploadBookRequestDocs[];
|
|
12613
|
+
/**
|
|
12614
|
+
* @remarks
|
|
12615
|
+
* This parameter is required.
|
|
12616
|
+
*
|
|
12617
|
+
* @example
|
|
12618
|
+
* llm-ipe7d81yq4sl5jmk
|
|
12619
|
+
*/
|
|
12620
|
+
workspaceId?: string;
|
|
12621
|
+
static names(): {
|
|
12622
|
+
[key: string]: string;
|
|
12623
|
+
};
|
|
12624
|
+
static types(): {
|
|
12625
|
+
[key: string]: any;
|
|
12626
|
+
};
|
|
12627
|
+
constructor(map?: {
|
|
12628
|
+
[key: string]: any;
|
|
12629
|
+
});
|
|
12630
|
+
}
|
|
12631
|
+
export declare class UploadBookShrinkRequest extends $tea.Model {
|
|
12632
|
+
categoryId?: string;
|
|
12633
|
+
/**
|
|
12634
|
+
* @remarks
|
|
12635
|
+
* This parameter is required.
|
|
12636
|
+
*/
|
|
12637
|
+
docsShrink?: string;
|
|
12638
|
+
/**
|
|
12639
|
+
* @remarks
|
|
12640
|
+
* This parameter is required.
|
|
12641
|
+
*
|
|
12642
|
+
* @example
|
|
12643
|
+
* llm-ipe7d81yq4sl5jmk
|
|
12644
|
+
*/
|
|
12645
|
+
workspaceId?: string;
|
|
12646
|
+
static names(): {
|
|
12647
|
+
[key: string]: string;
|
|
12648
|
+
};
|
|
12649
|
+
static types(): {
|
|
12650
|
+
[key: string]: any;
|
|
12651
|
+
};
|
|
12652
|
+
constructor(map?: {
|
|
12653
|
+
[key: string]: any;
|
|
12654
|
+
});
|
|
12655
|
+
}
|
|
12656
|
+
export declare class UploadBookResponseBody extends $tea.Model {
|
|
12657
|
+
/**
|
|
12658
|
+
* @example
|
|
12659
|
+
* successful
|
|
12660
|
+
*/
|
|
12661
|
+
code?: string;
|
|
12662
|
+
data?: UploadBookResponseBodyData;
|
|
12663
|
+
/**
|
|
12664
|
+
* @example
|
|
12665
|
+
* 200
|
|
12666
|
+
*/
|
|
12667
|
+
httpStatusCode?: number;
|
|
12668
|
+
/**
|
|
12669
|
+
* @example
|
|
12670
|
+
* success
|
|
12671
|
+
*/
|
|
12672
|
+
message?: string;
|
|
12673
|
+
/**
|
|
12674
|
+
* @remarks
|
|
12675
|
+
* Id of the request
|
|
12676
|
+
*
|
|
12677
|
+
* @example
|
|
12678
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
12679
|
+
*/
|
|
12680
|
+
requestId?: string;
|
|
12681
|
+
/**
|
|
12682
|
+
* @example
|
|
12683
|
+
* true
|
|
12684
|
+
*/
|
|
12685
|
+
success?: boolean;
|
|
12686
|
+
static names(): {
|
|
12687
|
+
[key: string]: string;
|
|
12688
|
+
};
|
|
12689
|
+
static types(): {
|
|
12690
|
+
[key: string]: any;
|
|
12691
|
+
};
|
|
12692
|
+
constructor(map?: {
|
|
12693
|
+
[key: string]: any;
|
|
12694
|
+
});
|
|
12695
|
+
}
|
|
12696
|
+
export declare class UploadBookResponse extends $tea.Model {
|
|
12697
|
+
headers?: {
|
|
12698
|
+
[key: string]: string;
|
|
12699
|
+
};
|
|
12700
|
+
statusCode?: number;
|
|
12701
|
+
body?: UploadBookResponseBody;
|
|
12702
|
+
static names(): {
|
|
12703
|
+
[key: string]: string;
|
|
12704
|
+
};
|
|
12705
|
+
static types(): {
|
|
12706
|
+
[key: string]: any;
|
|
12707
|
+
};
|
|
12708
|
+
constructor(map?: {
|
|
12709
|
+
[key: string]: any;
|
|
12710
|
+
});
|
|
12711
|
+
}
|
|
12277
12712
|
export declare class UploadDocRequest extends $tea.Model {
|
|
12278
12713
|
/**
|
|
12279
12714
|
* @example
|
|
@@ -17771,50 +18206,232 @@ export declare class QueryAsyncTaskResponseBodyData extends $tea.Model {
|
|
|
17771
18206
|
taskErrorMessage?: string;
|
|
17772
18207
|
/**
|
|
17773
18208
|
* @example
|
|
17774
|
-
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
18209
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
18210
|
+
*/
|
|
18211
|
+
taskId?: string;
|
|
18212
|
+
/**
|
|
18213
|
+
* @example
|
|
18214
|
+
* {}
|
|
18215
|
+
*/
|
|
18216
|
+
taskIntermediateResult?: string;
|
|
18217
|
+
taskName?: string;
|
|
18218
|
+
/**
|
|
18219
|
+
* @example
|
|
18220
|
+
* {"fileKey":"oss://default/xxxx/xxxx/xxx","fileName":"xxxxx.doc"}
|
|
18221
|
+
*/
|
|
18222
|
+
taskParam?: string;
|
|
18223
|
+
/**
|
|
18224
|
+
* @example
|
|
18225
|
+
* {}
|
|
18226
|
+
*/
|
|
18227
|
+
taskProgressMessage?: string;
|
|
18228
|
+
/**
|
|
18229
|
+
* @example
|
|
18230
|
+
* {}
|
|
18231
|
+
*/
|
|
18232
|
+
taskResult?: string;
|
|
18233
|
+
/**
|
|
18234
|
+
* @example
|
|
18235
|
+
* 3
|
|
18236
|
+
*/
|
|
18237
|
+
taskRetryCount?: string;
|
|
18238
|
+
/**
|
|
18239
|
+
* @example
|
|
18240
|
+
* 1
|
|
18241
|
+
*/
|
|
18242
|
+
taskStatus?: number;
|
|
18243
|
+
/**
|
|
18244
|
+
* @example
|
|
18245
|
+
* 2023-04-27 18:07:43
|
|
18246
|
+
*/
|
|
18247
|
+
updateTime?: string;
|
|
18248
|
+
/**
|
|
18249
|
+
* @example
|
|
18250
|
+
* 12121
|
|
18251
|
+
*/
|
|
18252
|
+
updateUser?: string;
|
|
18253
|
+
static names(): {
|
|
18254
|
+
[key: string]: string;
|
|
18255
|
+
};
|
|
18256
|
+
static types(): {
|
|
18257
|
+
[key: string]: any;
|
|
18258
|
+
};
|
|
18259
|
+
constructor(map?: {
|
|
18260
|
+
[key: string]: any;
|
|
18261
|
+
});
|
|
18262
|
+
}
|
|
18263
|
+
export declare class RunAbbreviationContentResponseBodyHeader extends $tea.Model {
|
|
18264
|
+
/**
|
|
18265
|
+
* @example
|
|
18266
|
+
* 403
|
|
18267
|
+
*/
|
|
18268
|
+
errorCode?: string;
|
|
18269
|
+
/**
|
|
18270
|
+
* @example
|
|
18271
|
+
* Pop sign mismatch, please check.
|
|
18272
|
+
*/
|
|
18273
|
+
errorMessage?: string;
|
|
18274
|
+
/**
|
|
18275
|
+
* @example
|
|
18276
|
+
* result-generated
|
|
18277
|
+
*/
|
|
18278
|
+
event?: string;
|
|
18279
|
+
/**
|
|
18280
|
+
* @example
|
|
18281
|
+
* 模型生成事件
|
|
18282
|
+
*/
|
|
18283
|
+
eventInfo?: string;
|
|
18284
|
+
/**
|
|
18285
|
+
* @example
|
|
18286
|
+
* 3cd10828-0e42-471c-8f1a-931cde20b035
|
|
18287
|
+
*/
|
|
18288
|
+
sessionId?: string;
|
|
18289
|
+
/**
|
|
18290
|
+
* @example
|
|
18291
|
+
* d3be9981-ca2d-4e17-bf31-1c0a628e9f99
|
|
18292
|
+
*/
|
|
18293
|
+
taskId?: string;
|
|
18294
|
+
/**
|
|
18295
|
+
* @example
|
|
18296
|
+
* 2150451a17191950923411783e2927
|
|
18297
|
+
*/
|
|
18298
|
+
traceId?: string;
|
|
18299
|
+
static names(): {
|
|
18300
|
+
[key: string]: string;
|
|
18301
|
+
};
|
|
18302
|
+
static types(): {
|
|
18303
|
+
[key: string]: any;
|
|
18304
|
+
};
|
|
18305
|
+
constructor(map?: {
|
|
18306
|
+
[key: string]: any;
|
|
18307
|
+
});
|
|
18308
|
+
}
|
|
18309
|
+
export declare class RunAbbreviationContentResponseBodyPayloadOutput extends $tea.Model {
|
|
18310
|
+
/**
|
|
18311
|
+
* @example
|
|
18312
|
+
* 这是测试输出
|
|
18313
|
+
*/
|
|
18314
|
+
text?: string;
|
|
18315
|
+
static names(): {
|
|
18316
|
+
[key: string]: string;
|
|
18317
|
+
};
|
|
18318
|
+
static types(): {
|
|
18319
|
+
[key: string]: any;
|
|
18320
|
+
};
|
|
18321
|
+
constructor(map?: {
|
|
18322
|
+
[key: string]: any;
|
|
18323
|
+
});
|
|
18324
|
+
}
|
|
18325
|
+
export declare class RunAbbreviationContentResponseBodyPayloadUsage extends $tea.Model {
|
|
18326
|
+
/**
|
|
18327
|
+
* @example
|
|
18328
|
+
* 100
|
|
18329
|
+
*/
|
|
18330
|
+
inputTokens?: number;
|
|
18331
|
+
/**
|
|
18332
|
+
* @example
|
|
18333
|
+
* 100
|
|
18334
|
+
*/
|
|
18335
|
+
outputTokens?: number;
|
|
18336
|
+
/**
|
|
18337
|
+
* @example
|
|
18338
|
+
* 200
|
|
18339
|
+
*/
|
|
18340
|
+
totalTokens?: number;
|
|
18341
|
+
static names(): {
|
|
18342
|
+
[key: string]: string;
|
|
18343
|
+
};
|
|
18344
|
+
static types(): {
|
|
18345
|
+
[key: string]: any;
|
|
18346
|
+
};
|
|
18347
|
+
constructor(map?: {
|
|
18348
|
+
[key: string]: any;
|
|
18349
|
+
});
|
|
18350
|
+
}
|
|
18351
|
+
export declare class RunAbbreviationContentResponseBodyPayload extends $tea.Model {
|
|
18352
|
+
output?: RunAbbreviationContentResponseBodyPayloadOutput;
|
|
18353
|
+
usage?: RunAbbreviationContentResponseBodyPayloadUsage;
|
|
18354
|
+
static names(): {
|
|
18355
|
+
[key: string]: string;
|
|
18356
|
+
};
|
|
18357
|
+
static types(): {
|
|
18358
|
+
[key: string]: any;
|
|
18359
|
+
};
|
|
18360
|
+
constructor(map?: {
|
|
18361
|
+
[key: string]: any;
|
|
18362
|
+
});
|
|
18363
|
+
}
|
|
18364
|
+
export declare class RunBookIntroductionResponseBodyHeader extends $tea.Model {
|
|
18365
|
+
/**
|
|
18366
|
+
* @example
|
|
18367
|
+
* success
|
|
17775
18368
|
*/
|
|
17776
|
-
|
|
18369
|
+
errorCode?: string;
|
|
17777
18370
|
/**
|
|
17778
18371
|
* @example
|
|
17779
|
-
*
|
|
18372
|
+
* success
|
|
17780
18373
|
*/
|
|
17781
|
-
|
|
17782
|
-
taskName?: string;
|
|
18374
|
+
errorMessage?: string;
|
|
17783
18375
|
/**
|
|
17784
18376
|
* @example
|
|
17785
|
-
*
|
|
18377
|
+
* finished
|
|
17786
18378
|
*/
|
|
17787
|
-
|
|
18379
|
+
event?: string;
|
|
18380
|
+
eventInfo?: string;
|
|
17788
18381
|
/**
|
|
17789
18382
|
* @example
|
|
17790
|
-
*
|
|
18383
|
+
* 411c4dfa-2168-4379-a902-675d67f453f8
|
|
17791
18384
|
*/
|
|
17792
|
-
|
|
18385
|
+
sessionId?: string;
|
|
17793
18386
|
/**
|
|
17794
18387
|
* @example
|
|
17795
|
-
*
|
|
18388
|
+
* d3be9981-ca2d-4e17-bf31-1c0a628e9f99
|
|
17796
18389
|
*/
|
|
17797
|
-
|
|
18390
|
+
taskId?: string;
|
|
17798
18391
|
/**
|
|
17799
18392
|
* @example
|
|
17800
|
-
*
|
|
18393
|
+
* 46e5c2b5-0877-4f09-bd91-ab0cf314e48b
|
|
17801
18394
|
*/
|
|
17802
|
-
|
|
18395
|
+
traceId?: string;
|
|
18396
|
+
static names(): {
|
|
18397
|
+
[key: string]: string;
|
|
18398
|
+
};
|
|
18399
|
+
static types(): {
|
|
18400
|
+
[key: string]: any;
|
|
18401
|
+
};
|
|
18402
|
+
constructor(map?: {
|
|
18403
|
+
[key: string]: any;
|
|
18404
|
+
});
|
|
18405
|
+
}
|
|
18406
|
+
export declare class RunBookIntroductionResponseBodyPayloadOutput extends $tea.Model {
|
|
18407
|
+
keyPoint?: string;
|
|
18408
|
+
summary?: string;
|
|
18409
|
+
static names(): {
|
|
18410
|
+
[key: string]: string;
|
|
18411
|
+
};
|
|
18412
|
+
static types(): {
|
|
18413
|
+
[key: string]: any;
|
|
18414
|
+
};
|
|
18415
|
+
constructor(map?: {
|
|
18416
|
+
[key: string]: any;
|
|
18417
|
+
});
|
|
18418
|
+
}
|
|
18419
|
+
export declare class RunBookIntroductionResponseBodyPayloadUsage extends $tea.Model {
|
|
17803
18420
|
/**
|
|
17804
18421
|
* @example
|
|
17805
|
-
*
|
|
18422
|
+
* 100
|
|
17806
18423
|
*/
|
|
17807
|
-
|
|
18424
|
+
inputTokens?: number;
|
|
17808
18425
|
/**
|
|
17809
18426
|
* @example
|
|
17810
|
-
*
|
|
18427
|
+
* 100
|
|
17811
18428
|
*/
|
|
17812
|
-
|
|
18429
|
+
outputTokens?: number;
|
|
17813
18430
|
/**
|
|
17814
18431
|
* @example
|
|
17815
|
-
*
|
|
18432
|
+
* 200
|
|
17816
18433
|
*/
|
|
17817
|
-
|
|
18434
|
+
totalTokens?: number;
|
|
17818
18435
|
static names(): {
|
|
17819
18436
|
[key: string]: string;
|
|
17820
18437
|
};
|
|
@@ -17825,40 +18442,49 @@ export declare class QueryAsyncTaskResponseBodyData extends $tea.Model {
|
|
|
17825
18442
|
[key: string]: any;
|
|
17826
18443
|
});
|
|
17827
18444
|
}
|
|
17828
|
-
export declare class
|
|
18445
|
+
export declare class RunBookIntroductionResponseBodyPayload extends $tea.Model {
|
|
18446
|
+
output?: RunBookIntroductionResponseBodyPayloadOutput;
|
|
18447
|
+
usage?: RunBookIntroductionResponseBodyPayloadUsage;
|
|
18448
|
+
static names(): {
|
|
18449
|
+
[key: string]: string;
|
|
18450
|
+
};
|
|
18451
|
+
static types(): {
|
|
18452
|
+
[key: string]: any;
|
|
18453
|
+
};
|
|
18454
|
+
constructor(map?: {
|
|
18455
|
+
[key: string]: any;
|
|
18456
|
+
});
|
|
18457
|
+
}
|
|
18458
|
+
export declare class RunBookSmartCardResponseBodyHeader extends $tea.Model {
|
|
17829
18459
|
/**
|
|
17830
18460
|
* @example
|
|
17831
|
-
*
|
|
18461
|
+
* success
|
|
17832
18462
|
*/
|
|
17833
18463
|
errorCode?: string;
|
|
17834
18464
|
/**
|
|
17835
18465
|
* @example
|
|
17836
|
-
*
|
|
18466
|
+
* success
|
|
17837
18467
|
*/
|
|
17838
18468
|
errorMessage?: string;
|
|
17839
18469
|
/**
|
|
17840
18470
|
* @example
|
|
17841
|
-
*
|
|
18471
|
+
* finished
|
|
17842
18472
|
*/
|
|
17843
18473
|
event?: string;
|
|
17844
|
-
/**
|
|
17845
|
-
* @example
|
|
17846
|
-
* 模型生成事件
|
|
17847
|
-
*/
|
|
17848
18474
|
eventInfo?: string;
|
|
17849
18475
|
/**
|
|
17850
18476
|
* @example
|
|
17851
|
-
*
|
|
18477
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
17852
18478
|
*/
|
|
17853
18479
|
sessionId?: string;
|
|
17854
18480
|
/**
|
|
17855
18481
|
* @example
|
|
17856
|
-
*
|
|
18482
|
+
* 3f7045e099474ba28ceca1b4eb6d6e21
|
|
17857
18483
|
*/
|
|
17858
18484
|
taskId?: string;
|
|
17859
18485
|
/**
|
|
17860
18486
|
* @example
|
|
17861
|
-
*
|
|
18487
|
+
* 1a0e898717105546647125853d4f54
|
|
17862
18488
|
*/
|
|
17863
18489
|
traceId?: string;
|
|
17864
18490
|
static names(): {
|
|
@@ -17871,12 +18497,9 @@ export declare class RunAbbreviationContentResponseBodyHeader extends $tea.Model
|
|
|
17871
18497
|
[key: string]: any;
|
|
17872
18498
|
});
|
|
17873
18499
|
}
|
|
17874
|
-
export declare class
|
|
17875
|
-
|
|
17876
|
-
|
|
17877
|
-
* 这是测试输出
|
|
17878
|
-
*/
|
|
17879
|
-
text?: string;
|
|
18500
|
+
export declare class RunBookSmartCardResponseBodyPayloadOutput extends $tea.Model {
|
|
18501
|
+
content?: string;
|
|
18502
|
+
tags?: string[];
|
|
17880
18503
|
static names(): {
|
|
17881
18504
|
[key: string]: string;
|
|
17882
18505
|
};
|
|
@@ -17887,10 +18510,10 @@ export declare class RunAbbreviationContentResponseBodyPayloadOutput extends $te
|
|
|
17887
18510
|
[key: string]: any;
|
|
17888
18511
|
});
|
|
17889
18512
|
}
|
|
17890
|
-
export declare class
|
|
18513
|
+
export declare class RunBookSmartCardResponseBodyPayloadUsage extends $tea.Model {
|
|
17891
18514
|
/**
|
|
17892
18515
|
* @example
|
|
17893
|
-
*
|
|
18516
|
+
* 1
|
|
17894
18517
|
*/
|
|
17895
18518
|
inputTokens?: number;
|
|
17896
18519
|
/**
|
|
@@ -17900,7 +18523,7 @@ export declare class RunAbbreviationContentResponseBodyPayloadUsage extends $tea
|
|
|
17900
18523
|
outputTokens?: number;
|
|
17901
18524
|
/**
|
|
17902
18525
|
* @example
|
|
17903
|
-
*
|
|
18526
|
+
* 101
|
|
17904
18527
|
*/
|
|
17905
18528
|
totalTokens?: number;
|
|
17906
18529
|
static names(): {
|
|
@@ -17913,9 +18536,9 @@ export declare class RunAbbreviationContentResponseBodyPayloadUsage extends $tea
|
|
|
17913
18536
|
[key: string]: any;
|
|
17914
18537
|
});
|
|
17915
18538
|
}
|
|
17916
|
-
export declare class
|
|
17917
|
-
output?:
|
|
17918
|
-
usage?:
|
|
18539
|
+
export declare class RunBookSmartCardResponseBodyPayload extends $tea.Model {
|
|
18540
|
+
output?: RunBookSmartCardResponseBodyPayloadOutput;
|
|
18541
|
+
usage?: RunBookSmartCardResponseBodyPayloadUsage;
|
|
17919
18542
|
static names(): {
|
|
17920
18543
|
[key: string]: string;
|
|
17921
18544
|
};
|
|
@@ -18793,6 +19416,100 @@ export declare class RunDocQaResponseBodyPayload extends $tea.Model {
|
|
|
18793
19416
|
[key: string]: any;
|
|
18794
19417
|
});
|
|
18795
19418
|
}
|
|
19419
|
+
export declare class RunDocSmartCardResponseBodyHeader extends $tea.Model {
|
|
19420
|
+
/**
|
|
19421
|
+
* @example
|
|
19422
|
+
* success
|
|
19423
|
+
*/
|
|
19424
|
+
errorCode?: string;
|
|
19425
|
+
/**
|
|
19426
|
+
* @example
|
|
19427
|
+
* success
|
|
19428
|
+
*/
|
|
19429
|
+
errorMessage?: string;
|
|
19430
|
+
/**
|
|
19431
|
+
* @example
|
|
19432
|
+
* finished
|
|
19433
|
+
*/
|
|
19434
|
+
event?: string;
|
|
19435
|
+
eventInfo?: string;
|
|
19436
|
+
/**
|
|
19437
|
+
* @example
|
|
19438
|
+
* 07181f55-2311-48af-8048-132a77dee020
|
|
19439
|
+
*/
|
|
19440
|
+
sessionId?: string;
|
|
19441
|
+
/**
|
|
19442
|
+
* @example
|
|
19443
|
+
* 8d55b429d7c6d321fcff54823e8d317b
|
|
19444
|
+
*/
|
|
19445
|
+
taskId?: string;
|
|
19446
|
+
/**
|
|
19447
|
+
* @example
|
|
19448
|
+
* 0abb781c17337107444473701ed7c3
|
|
19449
|
+
*/
|
|
19450
|
+
traceId?: string;
|
|
19451
|
+
static names(): {
|
|
19452
|
+
[key: string]: string;
|
|
19453
|
+
};
|
|
19454
|
+
static types(): {
|
|
19455
|
+
[key: string]: any;
|
|
19456
|
+
};
|
|
19457
|
+
constructor(map?: {
|
|
19458
|
+
[key: string]: any;
|
|
19459
|
+
});
|
|
19460
|
+
}
|
|
19461
|
+
export declare class RunDocSmartCardResponseBodyPayloadOutput extends $tea.Model {
|
|
19462
|
+
content?: string;
|
|
19463
|
+
tags?: string[];
|
|
19464
|
+
static names(): {
|
|
19465
|
+
[key: string]: string;
|
|
19466
|
+
};
|
|
19467
|
+
static types(): {
|
|
19468
|
+
[key: string]: any;
|
|
19469
|
+
};
|
|
19470
|
+
constructor(map?: {
|
|
19471
|
+
[key: string]: any;
|
|
19472
|
+
});
|
|
19473
|
+
}
|
|
19474
|
+
export declare class RunDocSmartCardResponseBodyPayloadUsage extends $tea.Model {
|
|
19475
|
+
/**
|
|
19476
|
+
* @example
|
|
19477
|
+
* 1
|
|
19478
|
+
*/
|
|
19479
|
+
inputTokens?: number;
|
|
19480
|
+
/**
|
|
19481
|
+
* @example
|
|
19482
|
+
* 100
|
|
19483
|
+
*/
|
|
19484
|
+
outputTokens?: number;
|
|
19485
|
+
/**
|
|
19486
|
+
* @example
|
|
19487
|
+
* 101
|
|
19488
|
+
*/
|
|
19489
|
+
totalTokens?: number;
|
|
19490
|
+
static names(): {
|
|
19491
|
+
[key: string]: string;
|
|
19492
|
+
};
|
|
19493
|
+
static types(): {
|
|
19494
|
+
[key: string]: any;
|
|
19495
|
+
};
|
|
19496
|
+
constructor(map?: {
|
|
19497
|
+
[key: string]: any;
|
|
19498
|
+
});
|
|
19499
|
+
}
|
|
19500
|
+
export declare class RunDocSmartCardResponseBodyPayload extends $tea.Model {
|
|
19501
|
+
output?: RunDocSmartCardResponseBodyPayloadOutput;
|
|
19502
|
+
usage?: RunDocSmartCardResponseBodyPayloadUsage;
|
|
19503
|
+
static names(): {
|
|
19504
|
+
[key: string]: string;
|
|
19505
|
+
};
|
|
19506
|
+
static types(): {
|
|
19507
|
+
[key: string]: any;
|
|
19508
|
+
};
|
|
19509
|
+
constructor(map?: {
|
|
19510
|
+
[key: string]: any;
|
|
19511
|
+
});
|
|
19512
|
+
}
|
|
18796
19513
|
export declare class RunDocSummaryResponseBodyHeader extends $tea.Model {
|
|
18797
19514
|
/**
|
|
18798
19515
|
* @example
|
|
@@ -23963,6 +24680,36 @@ export declare class UpdateDatasetDocumentResponseBodyData extends $tea.Model {
|
|
|
23963
24680
|
[key: string]: any;
|
|
23964
24681
|
});
|
|
23965
24682
|
}
|
|
24683
|
+
export declare class UploadBookRequestDocs extends $tea.Model {
|
|
24684
|
+
docName?: string;
|
|
24685
|
+
/**
|
|
24686
|
+
* @example
|
|
24687
|
+
* http://xxx/ccc.pdf
|
|
24688
|
+
*/
|
|
24689
|
+
fileUrl?: string;
|
|
24690
|
+
static names(): {
|
|
24691
|
+
[key: string]: string;
|
|
24692
|
+
};
|
|
24693
|
+
static types(): {
|
|
24694
|
+
[key: string]: any;
|
|
24695
|
+
};
|
|
24696
|
+
constructor(map?: {
|
|
24697
|
+
[key: string]: any;
|
|
24698
|
+
});
|
|
24699
|
+
}
|
|
24700
|
+
export declare class UploadBookResponseBodyData extends $tea.Model {
|
|
24701
|
+
docIds?: string[];
|
|
24702
|
+
existedIds?: string[];
|
|
24703
|
+
static names(): {
|
|
24704
|
+
[key: string]: string;
|
|
24705
|
+
};
|
|
24706
|
+
static types(): {
|
|
24707
|
+
[key: string]: any;
|
|
24708
|
+
};
|
|
24709
|
+
constructor(map?: {
|
|
24710
|
+
[key: string]: any;
|
|
24711
|
+
});
|
|
24712
|
+
}
|
|
23966
24713
|
export declare class UploadDocRequestDocs extends $tea.Model {
|
|
23967
24714
|
/**
|
|
23968
24715
|
* @remarks
|
|
@@ -24271,6 +25018,21 @@ export default class Client extends OpenApi {
|
|
|
24271
25018
|
* @returns DocumentExtractionResponse
|
|
24272
25019
|
*/
|
|
24273
25020
|
documentExtraction(request: DocumentExtractionRequest): Promise<DocumentExtractionResponse>;
|
|
25021
|
+
/**
|
|
25022
|
+
* 导出企业VOC分析任务明细列表
|
|
25023
|
+
*
|
|
25024
|
+
* @param tmpReq - ExportAnalysisTagDetailByTaskIdRequest
|
|
25025
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
25026
|
+
* @returns ExportAnalysisTagDetailByTaskIdResponse
|
|
25027
|
+
*/
|
|
25028
|
+
exportAnalysisTagDetailByTaskIdWithOptions(tmpReq: ExportAnalysisTagDetailByTaskIdRequest, runtime: $Util.RuntimeOptions): Promise<ExportAnalysisTagDetailByTaskIdResponse>;
|
|
25029
|
+
/**
|
|
25030
|
+
* 导出企业VOC分析任务明细列表
|
|
25031
|
+
*
|
|
25032
|
+
* @param request - ExportAnalysisTagDetailByTaskIdRequest
|
|
25033
|
+
* @returns ExportAnalysisTagDetailByTaskIdResponse
|
|
25034
|
+
*/
|
|
25035
|
+
exportAnalysisTagDetailByTaskId(request: ExportAnalysisTagDetailByTaskIdRequest): Promise<ExportAnalysisTagDetailByTaskIdResponse>;
|
|
24274
25036
|
/**
|
|
24275
25037
|
* 文档管理-导出。
|
|
24276
25038
|
*
|
|
@@ -25246,6 +26008,36 @@ export default class Client extends OpenApi {
|
|
|
25246
26008
|
* @returns RunAbbreviationContentResponse
|
|
25247
26009
|
*/
|
|
25248
26010
|
runAbbreviationContent(request: RunAbbreviationContentRequest): Promise<RunAbbreviationContentResponse>;
|
|
26011
|
+
/**
|
|
26012
|
+
* 书籍导读接口
|
|
26013
|
+
*
|
|
26014
|
+
* @param request - RunBookIntroductionRequest
|
|
26015
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26016
|
+
* @returns RunBookIntroductionResponse
|
|
26017
|
+
*/
|
|
26018
|
+
runBookIntroductionWithOptions(request: RunBookIntroductionRequest, runtime: $Util.RuntimeOptions): Promise<RunBookIntroductionResponse>;
|
|
26019
|
+
/**
|
|
26020
|
+
* 书籍导读接口
|
|
26021
|
+
*
|
|
26022
|
+
* @param request - RunBookIntroductionRequest
|
|
26023
|
+
* @returns RunBookIntroductionResponse
|
|
26024
|
+
*/
|
|
26025
|
+
runBookIntroduction(request: RunBookIntroductionRequest): Promise<RunBookIntroductionResponse>;
|
|
26026
|
+
/**
|
|
26027
|
+
* 书籍智能卡片接口
|
|
26028
|
+
*
|
|
26029
|
+
* @param request - RunBookSmartCardRequest
|
|
26030
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26031
|
+
* @returns RunBookSmartCardResponse
|
|
26032
|
+
*/
|
|
26033
|
+
runBookSmartCardWithOptions(request: RunBookSmartCardRequest, runtime: $Util.RuntimeOptions): Promise<RunBookSmartCardResponse>;
|
|
26034
|
+
/**
|
|
26035
|
+
* 书籍智能卡片接口
|
|
26036
|
+
*
|
|
26037
|
+
* @param request - RunBookSmartCardRequest
|
|
26038
|
+
* @returns RunBookSmartCardResponse
|
|
26039
|
+
*/
|
|
26040
|
+
runBookSmartCard(request: RunBookSmartCardRequest): Promise<RunBookSmartCardResponse>;
|
|
25249
26041
|
/**
|
|
25250
26042
|
* 内容续写
|
|
25251
26043
|
*
|
|
@@ -25336,6 +26128,21 @@ export default class Client extends OpenApi {
|
|
|
25336
26128
|
* @returns RunDocQaResponse
|
|
25337
26129
|
*/
|
|
25338
26130
|
runDocQa(request: RunDocQaRequest): Promise<RunDocQaResponse>;
|
|
26131
|
+
/**
|
|
26132
|
+
* 文档智能卡片接口
|
|
26133
|
+
*
|
|
26134
|
+
* @param request - RunDocSmartCardRequest
|
|
26135
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26136
|
+
* @returns RunDocSmartCardResponse
|
|
26137
|
+
*/
|
|
26138
|
+
runDocSmartCardWithOptions(request: RunDocSmartCardRequest, runtime: $Util.RuntimeOptions): Promise<RunDocSmartCardResponse>;
|
|
26139
|
+
/**
|
|
26140
|
+
* 文档智能卡片接口
|
|
26141
|
+
*
|
|
26142
|
+
* @param request - RunDocSmartCardRequest
|
|
26143
|
+
* @returns RunDocSmartCardResponse
|
|
26144
|
+
*/
|
|
26145
|
+
runDocSmartCard(request: RunDocSmartCardRequest): Promise<RunDocSmartCardResponse>;
|
|
25339
26146
|
/**
|
|
25340
26147
|
* 妙读文档总结摘要接口
|
|
25341
26148
|
*
|
|
@@ -25786,6 +26593,21 @@ export default class Client extends OpenApi {
|
|
|
25786
26593
|
* @returns UpdateMaterialDocumentResponse
|
|
25787
26594
|
*/
|
|
25788
26595
|
updateMaterialDocument(request: UpdateMaterialDocumentRequest): Promise<UpdateMaterialDocumentResponse>;
|
|
26596
|
+
/**
|
|
26597
|
+
* 妙读上传书籍
|
|
26598
|
+
*
|
|
26599
|
+
* @param tmpReq - UploadBookRequest
|
|
26600
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
26601
|
+
* @returns UploadBookResponse
|
|
26602
|
+
*/
|
|
26603
|
+
uploadBookWithOptions(tmpReq: UploadBookRequest, runtime: $Util.RuntimeOptions): Promise<UploadBookResponse>;
|
|
26604
|
+
/**
|
|
26605
|
+
* 妙读上传书籍
|
|
26606
|
+
*
|
|
26607
|
+
* @param request - UploadBookRequest
|
|
26608
|
+
* @returns UploadBookResponse
|
|
26609
|
+
*/
|
|
26610
|
+
uploadBook(request: UploadBookRequest): Promise<UploadBookResponse>;
|
|
25789
26611
|
/**
|
|
25790
26612
|
* 妙读上传文档接口
|
|
25791
26613
|
*
|