@alicloud/aimiaobi20230801 1.32.2 → 1.33.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 +297 -4
- package/dist/client.js +2382 -6
- package/dist/client.js.map +1 -1
- package/dist/models/AddAuditTermsRequest.d.ts +1 -0
- package/dist/models/AddAuditTermsRequest.js +5 -0
- package/dist/models/AddAuditTermsRequest.js.map +1 -1
- package/dist/models/AddAuditTermsShrinkRequest.d.ts +37 -0
- package/dist/models/AddAuditTermsShrinkRequest.js +66 -0
- package/dist/models/AddAuditTermsShrinkRequest.js.map +1 -0
- package/dist/models/DeleteFactAuditUrlRequest.d.ts +29 -0
- package/dist/models/DeleteFactAuditUrlRequest.js +60 -0
- package/dist/models/DeleteFactAuditUrlRequest.js.map +1 -0
- package/dist/models/DeleteFactAuditUrlResponse.d.ts +19 -0
- package/dist/models/DeleteFactAuditUrlResponse.js +69 -0
- package/dist/models/DeleteFactAuditUrlResponse.js.map +1 -0
- package/dist/models/DeleteFactAuditUrlResponseBody.d.ts +46 -0
- package/dist/models/DeleteFactAuditUrlResponseBody.js +68 -0
- package/dist/models/DeleteFactAuditUrlResponseBody.js.map +1 -0
- package/dist/models/EditAuditTermsRequest.d.ts +1 -0
- package/dist/models/EditAuditTermsRequest.js +5 -0
- package/dist/models/EditAuditTermsRequest.js.map +1 -1
- package/dist/models/EditAuditTermsShrinkRequest.d.ts +42 -0
- package/dist/models/EditAuditTermsShrinkRequest.js +68 -0
- package/dist/models/EditAuditTermsShrinkRequest.js.map +1 -0
- package/dist/models/GetFactAuditUrlRequest.d.ts +21 -0
- package/dist/models/GetFactAuditUrlRequest.js +58 -0
- package/dist/models/GetFactAuditUrlRequest.js.map +1 -0
- package/dist/models/GetFactAuditUrlResponse.d.ts +19 -0
- package/dist/models/GetFactAuditUrlResponse.js +69 -0
- package/dist/models/GetFactAuditUrlResponse.js.map +1 -0
- package/dist/models/GetFactAuditUrlResponseBody.d.ts +46 -0
- package/dist/models/GetFactAuditUrlResponseBody.js +71 -0
- package/dist/models/GetFactAuditUrlResponseBody.js.map +1 -0
- package/dist/models/ListAuditTermsResponseBody.d.ts +1 -0
- package/dist/models/ListAuditTermsResponseBody.js +5 -0
- package/dist/models/ListAuditTermsResponseBody.js.map +1 -1
- package/dist/models/SubmitFactAuditUrlRequest.d.ts +29 -0
- package/dist/models/SubmitFactAuditUrlRequest.js +60 -0
- package/dist/models/SubmitFactAuditUrlRequest.js.map +1 -0
- package/dist/models/SubmitFactAuditUrlResponse.d.ts +19 -0
- package/dist/models/SubmitFactAuditUrlResponse.js +69 -0
- package/dist/models/SubmitFactAuditUrlResponse.js.map +1 -0
- package/dist/models/SubmitFactAuditUrlResponseBody.d.ts +46 -0
- package/dist/models/SubmitFactAuditUrlResponseBody.js +68 -0
- package/dist/models/SubmitFactAuditUrlResponseBody.js.map +1 -0
- package/dist/models/model.d.ts +11 -0
- package/dist/models/model.js +35 -13
- package/dist/models/model.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +2859 -543
- package/src/models/AddAuditTermsRequest.ts +6 -0
- package/src/models/AddAuditTermsShrinkRequest.ts +58 -0
- package/src/models/DeleteFactAuditUrlRequest.ts +44 -0
- package/src/models/DeleteFactAuditUrlResponse.ts +40 -0
- package/src/models/DeleteFactAuditUrlResponseBody.ts +69 -0
- package/src/models/EditAuditTermsRequest.ts +6 -0
- package/src/models/EditAuditTermsShrinkRequest.ts +65 -0
- package/src/models/GetFactAuditUrlRequest.ts +34 -0
- package/src/models/GetFactAuditUrlResponse.ts +40 -0
- package/src/models/GetFactAuditUrlResponseBody.ts +72 -0
- package/src/models/ListAuditTermsResponseBody.ts +6 -0
- package/src/models/SubmitFactAuditUrlRequest.ts +44 -0
- package/src/models/SubmitFactAuditUrlResponse.ts +40 -0
- package/src/models/SubmitFactAuditUrlResponseBody.ts +69 -0
- package/src/models/model.ts +11 -0
package/dist/client.d.ts
CHANGED
|
@@ -11,11 +11,11 @@ export default class Client extends OpenApi {
|
|
|
11
11
|
/**
|
|
12
12
|
* 添加审核自定义词库记录
|
|
13
13
|
*
|
|
14
|
-
* @param
|
|
14
|
+
* @param tmpReq - AddAuditTermsRequest
|
|
15
15
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
16
16
|
* @returns AddAuditTermsResponse
|
|
17
17
|
*/
|
|
18
|
-
addAuditTermsWithOptions(
|
|
18
|
+
addAuditTermsWithOptions(tmpReq: $_model.AddAuditTermsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.AddAuditTermsResponse>;
|
|
19
19
|
/**
|
|
20
20
|
* 添加审核自定义词库记录
|
|
21
21
|
*
|
|
@@ -323,6 +323,21 @@ export default class Client extends OpenApi {
|
|
|
323
323
|
* @returns DeleteDocsResponse
|
|
324
324
|
*/
|
|
325
325
|
deleteDocs(request: $_model.DeleteDocsRequest): Promise<$_model.DeleteDocsResponse>;
|
|
326
|
+
/**
|
|
327
|
+
* 删除指定的用于事实性审核的 URL。
|
|
328
|
+
*
|
|
329
|
+
* @param request - DeleteFactAuditUrlRequest
|
|
330
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
331
|
+
* @returns DeleteFactAuditUrlResponse
|
|
332
|
+
*/
|
|
333
|
+
deleteFactAuditUrlWithOptions(request: $_model.DeleteFactAuditUrlRequest, runtime: $dara.RuntimeOptions): Promise<$_model.DeleteFactAuditUrlResponse>;
|
|
334
|
+
/**
|
|
335
|
+
* 删除指定的用于事实性审核的 URL。
|
|
336
|
+
*
|
|
337
|
+
* @param request - DeleteFactAuditUrlRequest
|
|
338
|
+
* @returns DeleteFactAuditUrlResponse
|
|
339
|
+
*/
|
|
340
|
+
deleteFactAuditUrl(request: $_model.DeleteFactAuditUrlRequest): Promise<$_model.DeleteFactAuditUrlResponse>;
|
|
326
341
|
/**
|
|
327
342
|
* 文档管理-删除。
|
|
328
343
|
*
|
|
@@ -416,11 +431,11 @@ export default class Client extends OpenApi {
|
|
|
416
431
|
/**
|
|
417
432
|
* 编辑审核自定义词库记录
|
|
418
433
|
*
|
|
419
|
-
* @param
|
|
434
|
+
* @param tmpReq - EditAuditTermsRequest
|
|
420
435
|
* @param runtime - runtime options for this request RuntimeOptions
|
|
421
436
|
* @returns EditAuditTermsResponse
|
|
422
437
|
*/
|
|
423
|
-
editAuditTermsWithOptions(
|
|
438
|
+
editAuditTermsWithOptions(tmpReq: $_model.EditAuditTermsRequest, runtime: $dara.RuntimeOptions): Promise<$_model.EditAuditTermsResponse>;
|
|
424
439
|
/**
|
|
425
440
|
* 编辑审核自定义词库记录
|
|
426
441
|
*
|
|
@@ -893,6 +908,21 @@ export default class Client extends OpenApi {
|
|
|
893
908
|
* @returns GetEnterpriseVocAnalysisTaskResponse
|
|
894
909
|
*/
|
|
895
910
|
getEnterpriseVocAnalysisTask(request: $_model.GetEnterpriseVocAnalysisTaskRequest): Promise<$_model.GetEnterpriseVocAnalysisTaskResponse>;
|
|
911
|
+
/**
|
|
912
|
+
* 获取当前正用于事实性审核的信源 URL。
|
|
913
|
+
*
|
|
914
|
+
* @param request - GetFactAuditUrlRequest
|
|
915
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
916
|
+
* @returns GetFactAuditUrlResponse
|
|
917
|
+
*/
|
|
918
|
+
getFactAuditUrlWithOptions(request: $_model.GetFactAuditUrlRequest, runtime: $dara.RuntimeOptions): Promise<$_model.GetFactAuditUrlResponse>;
|
|
919
|
+
/**
|
|
920
|
+
* 获取当前正用于事实性审核的信源 URL。
|
|
921
|
+
*
|
|
922
|
+
* @param request - GetFactAuditUrlRequest
|
|
923
|
+
* @returns GetFactAuditUrlResponse
|
|
924
|
+
*/
|
|
925
|
+
getFactAuditUrl(request: $_model.GetFactAuditUrlRequest): Promise<$_model.GetFactAuditUrlResponse>;
|
|
896
926
|
/**
|
|
897
927
|
* 妙读获得文档字数
|
|
898
928
|
*
|
|
@@ -1688,6 +1718,14 @@ export default class Client extends OpenApi {
|
|
|
1688
1718
|
* @returns QueryAuditTaskResponse
|
|
1689
1719
|
*/
|
|
1690
1720
|
queryAuditTask(request: $_model.QueryAuditTaskRequest): Promise<$_model.QueryAuditTaskResponse>;
|
|
1721
|
+
/**
|
|
1722
|
+
* 内容缩写
|
|
1723
|
+
*
|
|
1724
|
+
* @param request - RunAbbreviationContentRequest
|
|
1725
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1726
|
+
* @returns RunAbbreviationContentResponse
|
|
1727
|
+
*/
|
|
1728
|
+
runAbbreviationContentWithSSE(request: $_model.RunAbbreviationContentRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunAbbreviationContentResponse, any, unknown>;
|
|
1691
1729
|
/**
|
|
1692
1730
|
* 内容缩写
|
|
1693
1731
|
*
|
|
@@ -1703,6 +1741,14 @@ export default class Client extends OpenApi {
|
|
|
1703
1741
|
* @returns RunAbbreviationContentResponse
|
|
1704
1742
|
*/
|
|
1705
1743
|
runAbbreviationContent(request: $_model.RunAbbreviationContentRequest): Promise<$_model.RunAbbreviationContentResponse>;
|
|
1744
|
+
/**
|
|
1745
|
+
* 妙读生成书籍脑图
|
|
1746
|
+
*
|
|
1747
|
+
* @param request - RunBookBrainmapRequest
|
|
1748
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1749
|
+
* @returns RunBookBrainmapResponse
|
|
1750
|
+
*/
|
|
1751
|
+
runBookBrainmapWithSSE(request: $_model.RunBookBrainmapRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunBookBrainmapResponse, any, unknown>;
|
|
1706
1752
|
/**
|
|
1707
1753
|
* 妙读生成书籍脑图
|
|
1708
1754
|
*
|
|
@@ -1718,6 +1764,14 @@ export default class Client extends OpenApi {
|
|
|
1718
1764
|
* @returns RunBookBrainmapResponse
|
|
1719
1765
|
*/
|
|
1720
1766
|
runBookBrainmap(request: $_model.RunBookBrainmapRequest): Promise<$_model.RunBookBrainmapResponse>;
|
|
1767
|
+
/**
|
|
1768
|
+
* 书籍导读接口
|
|
1769
|
+
*
|
|
1770
|
+
* @param request - RunBookIntroductionRequest
|
|
1771
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1772
|
+
* @returns RunBookIntroductionResponse
|
|
1773
|
+
*/
|
|
1774
|
+
runBookIntroductionWithSSE(request: $_model.RunBookIntroductionRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunBookIntroductionResponse, any, unknown>;
|
|
1721
1775
|
/**
|
|
1722
1776
|
* 书籍导读接口
|
|
1723
1777
|
*
|
|
@@ -1733,6 +1787,14 @@ export default class Client extends OpenApi {
|
|
|
1733
1787
|
* @returns RunBookIntroductionResponse
|
|
1734
1788
|
*/
|
|
1735
1789
|
runBookIntroduction(request: $_model.RunBookIntroductionRequest): Promise<$_model.RunBookIntroductionResponse>;
|
|
1790
|
+
/**
|
|
1791
|
+
* 书籍智能卡片接口
|
|
1792
|
+
*
|
|
1793
|
+
* @param request - RunBookSmartCardRequest
|
|
1794
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1795
|
+
* @returns RunBookSmartCardResponse
|
|
1796
|
+
*/
|
|
1797
|
+
runBookSmartCardWithSSE(request: $_model.RunBookSmartCardRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunBookSmartCardResponse, any, unknown>;
|
|
1736
1798
|
/**
|
|
1737
1799
|
* 书籍智能卡片接口
|
|
1738
1800
|
*
|
|
@@ -1748,6 +1810,14 @@ export default class Client extends OpenApi {
|
|
|
1748
1810
|
* @returns RunBookSmartCardResponse
|
|
1749
1811
|
*/
|
|
1750
1812
|
runBookSmartCard(request: $_model.RunBookSmartCardRequest): Promise<$_model.RunBookSmartCardResponse>;
|
|
1813
|
+
/**
|
|
1814
|
+
* 客户之声预测
|
|
1815
|
+
*
|
|
1816
|
+
* @param tmpReq - RunCommentGenerationRequest
|
|
1817
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1818
|
+
* @returns RunCommentGenerationResponse
|
|
1819
|
+
*/
|
|
1820
|
+
runCommentGenerationWithSSE(tmpReq: $_model.RunCommentGenerationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunCommentGenerationResponse, any, unknown>;
|
|
1751
1821
|
/**
|
|
1752
1822
|
* 客户之声预测
|
|
1753
1823
|
*
|
|
@@ -1763,6 +1833,14 @@ export default class Client extends OpenApi {
|
|
|
1763
1833
|
* @returns RunCommentGenerationResponse
|
|
1764
1834
|
*/
|
|
1765
1835
|
runCommentGeneration(request: $_model.RunCommentGenerationRequest): Promise<$_model.RunCommentGenerationResponse>;
|
|
1836
|
+
/**
|
|
1837
|
+
* 内容续写
|
|
1838
|
+
*
|
|
1839
|
+
* @param request - RunContinueContentRequest
|
|
1840
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1841
|
+
* @returns RunContinueContentResponse
|
|
1842
|
+
*/
|
|
1843
|
+
runContinueContentWithSSE(request: $_model.RunContinueContentRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunContinueContentResponse, any, unknown>;
|
|
1766
1844
|
/**
|
|
1767
1845
|
* 内容续写
|
|
1768
1846
|
*
|
|
@@ -1778,6 +1856,14 @@ export default class Client extends OpenApi {
|
|
|
1778
1856
|
* @returns RunContinueContentResponse
|
|
1779
1857
|
*/
|
|
1780
1858
|
runContinueContent(request: $_model.RunContinueContentRequest): Promise<$_model.RunContinueContentResponse>;
|
|
1859
|
+
/**
|
|
1860
|
+
* 自定义热点话题分析
|
|
1861
|
+
*
|
|
1862
|
+
* @param request - RunCustomHotTopicAnalysisRequest
|
|
1863
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1864
|
+
* @returns RunCustomHotTopicAnalysisResponse
|
|
1865
|
+
*/
|
|
1866
|
+
runCustomHotTopicAnalysisWithSSE(request: $_model.RunCustomHotTopicAnalysisRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunCustomHotTopicAnalysisResponse, any, unknown>;
|
|
1781
1867
|
/**
|
|
1782
1868
|
* 自定义热点话题分析
|
|
1783
1869
|
*
|
|
@@ -1793,6 +1879,14 @@ export default class Client extends OpenApi {
|
|
|
1793
1879
|
* @returns RunCustomHotTopicAnalysisResponse
|
|
1794
1880
|
*/
|
|
1795
1881
|
runCustomHotTopicAnalysis(request: $_model.RunCustomHotTopicAnalysisRequest): Promise<$_model.RunCustomHotTopicAnalysisResponse>;
|
|
1882
|
+
/**
|
|
1883
|
+
* 自定义选题视角分析
|
|
1884
|
+
*
|
|
1885
|
+
* @param request - RunCustomHotTopicViewPointAnalysisRequest
|
|
1886
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1887
|
+
* @returns RunCustomHotTopicViewPointAnalysisResponse
|
|
1888
|
+
*/
|
|
1889
|
+
runCustomHotTopicViewPointAnalysisWithSSE(request: $_model.RunCustomHotTopicViewPointAnalysisRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunCustomHotTopicViewPointAnalysisResponse, any, unknown>;
|
|
1796
1890
|
/**
|
|
1797
1891
|
* 自定义选题视角分析
|
|
1798
1892
|
*
|
|
@@ -1808,6 +1902,14 @@ export default class Client extends OpenApi {
|
|
|
1808
1902
|
* @returns RunCustomHotTopicViewPointAnalysisResponse
|
|
1809
1903
|
*/
|
|
1810
1904
|
runCustomHotTopicViewPointAnalysis(request: $_model.RunCustomHotTopicViewPointAnalysisRequest): Promise<$_model.RunCustomHotTopicViewPointAnalysisResponse>;
|
|
1905
|
+
/**
|
|
1906
|
+
* 妙读脑图生成接口
|
|
1907
|
+
*
|
|
1908
|
+
* @param request - RunDocBrainmapRequest
|
|
1909
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1910
|
+
* @returns RunDocBrainmapResponse
|
|
1911
|
+
*/
|
|
1912
|
+
runDocBrainmapWithSSE(request: $_model.RunDocBrainmapRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocBrainmapResponse, any, unknown>;
|
|
1811
1913
|
/**
|
|
1812
1914
|
* 妙读脑图生成接口
|
|
1813
1915
|
*
|
|
@@ -1823,6 +1925,14 @@ export default class Client extends OpenApi {
|
|
|
1823
1925
|
* @returns RunDocBrainmapResponse
|
|
1824
1926
|
*/
|
|
1825
1927
|
runDocBrainmap(request: $_model.RunDocBrainmapRequest): Promise<$_model.RunDocBrainmapResponse>;
|
|
1928
|
+
/**
|
|
1929
|
+
* 妙读文档导读接口
|
|
1930
|
+
*
|
|
1931
|
+
* @param request - RunDocIntroductionRequest
|
|
1932
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1933
|
+
* @returns RunDocIntroductionResponse
|
|
1934
|
+
*/
|
|
1935
|
+
runDocIntroductionWithSSE(request: $_model.RunDocIntroductionRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocIntroductionResponse, any, unknown>;
|
|
1826
1936
|
/**
|
|
1827
1937
|
* 妙读文档导读接口
|
|
1828
1938
|
*
|
|
@@ -1838,6 +1948,14 @@ export default class Client extends OpenApi {
|
|
|
1838
1948
|
* @returns RunDocIntroductionResponse
|
|
1839
1949
|
*/
|
|
1840
1950
|
runDocIntroduction(request: $_model.RunDocIntroductionRequest): Promise<$_model.RunDocIntroductionResponse>;
|
|
1951
|
+
/**
|
|
1952
|
+
* 妙读问答接口
|
|
1953
|
+
*
|
|
1954
|
+
* @param tmpReq - RunDocQaRequest
|
|
1955
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1956
|
+
* @returns RunDocQaResponse
|
|
1957
|
+
*/
|
|
1958
|
+
runDocQaWithSSE(tmpReq: $_model.RunDocQaRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocQaResponse, any, unknown>;
|
|
1841
1959
|
/**
|
|
1842
1960
|
* 妙读问答接口
|
|
1843
1961
|
*
|
|
@@ -1853,6 +1971,14 @@ export default class Client extends OpenApi {
|
|
|
1853
1971
|
* @returns RunDocQaResponse
|
|
1854
1972
|
*/
|
|
1855
1973
|
runDocQa(request: $_model.RunDocQaRequest): Promise<$_model.RunDocQaResponse>;
|
|
1974
|
+
/**
|
|
1975
|
+
* 文档智能卡片接口
|
|
1976
|
+
*
|
|
1977
|
+
* @param request - RunDocSmartCardRequest
|
|
1978
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
1979
|
+
* @returns RunDocSmartCardResponse
|
|
1980
|
+
*/
|
|
1981
|
+
runDocSmartCardWithSSE(request: $_model.RunDocSmartCardRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocSmartCardResponse, any, unknown>;
|
|
1856
1982
|
/**
|
|
1857
1983
|
* 文档智能卡片接口
|
|
1858
1984
|
*
|
|
@@ -1868,6 +1994,14 @@ export default class Client extends OpenApi {
|
|
|
1868
1994
|
* @returns RunDocSmartCardResponse
|
|
1869
1995
|
*/
|
|
1870
1996
|
runDocSmartCard(request: $_model.RunDocSmartCardRequest): Promise<$_model.RunDocSmartCardResponse>;
|
|
1997
|
+
/**
|
|
1998
|
+
* 妙读文档总结摘要接口
|
|
1999
|
+
*
|
|
2000
|
+
* @param request - RunDocSummaryRequest
|
|
2001
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2002
|
+
* @returns RunDocSummaryResponse
|
|
2003
|
+
*/
|
|
2004
|
+
runDocSummaryWithSSE(request: $_model.RunDocSummaryRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocSummaryResponse, any, unknown>;
|
|
1871
2005
|
/**
|
|
1872
2006
|
* 妙读文档总结摘要接口
|
|
1873
2007
|
*
|
|
@@ -1883,6 +2017,14 @@ export default class Client extends OpenApi {
|
|
|
1883
2017
|
* @returns RunDocSummaryResponse
|
|
1884
2018
|
*/
|
|
1885
2019
|
runDocSummary(request: $_model.RunDocSummaryRequest): Promise<$_model.RunDocSummaryResponse>;
|
|
2020
|
+
/**
|
|
2021
|
+
* 妙读文档翻译接口
|
|
2022
|
+
*
|
|
2023
|
+
* @param request - RunDocTranslationRequest
|
|
2024
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2025
|
+
* @returns RunDocTranslationResponse
|
|
2026
|
+
*/
|
|
2027
|
+
runDocTranslationWithSSE(request: $_model.RunDocTranslationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocTranslationResponse, any, unknown>;
|
|
1886
2028
|
/**
|
|
1887
2029
|
* 妙读文档翻译接口
|
|
1888
2030
|
*
|
|
@@ -1898,6 +2040,14 @@ export default class Client extends OpenApi {
|
|
|
1898
2040
|
* @returns RunDocTranslationResponse
|
|
1899
2041
|
*/
|
|
1900
2042
|
runDocTranslation(request: $_model.RunDocTranslationRequest): Promise<$_model.RunDocTranslationResponse>;
|
|
2043
|
+
/**
|
|
2044
|
+
* 文档改写
|
|
2045
|
+
*
|
|
2046
|
+
* @param request - RunDocWashingRequest
|
|
2047
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2048
|
+
* @returns RunDocWashingResponse
|
|
2049
|
+
*/
|
|
2050
|
+
runDocWashingWithSSE(request: $_model.RunDocWashingRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunDocWashingResponse, any, unknown>;
|
|
1901
2051
|
/**
|
|
1902
2052
|
* 文档改写
|
|
1903
2053
|
*
|
|
@@ -1913,6 +2063,14 @@ export default class Client extends OpenApi {
|
|
|
1913
2063
|
* @returns RunDocWashingResponse
|
|
1914
2064
|
*/
|
|
1915
2065
|
runDocWashing(request: $_model.RunDocWashingRequest): Promise<$_model.RunDocWashingResponse>;
|
|
2066
|
+
/**
|
|
2067
|
+
* 内容扩写
|
|
2068
|
+
*
|
|
2069
|
+
* @param request - RunExpandContentRequest
|
|
2070
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2071
|
+
* @returns RunExpandContentResponse
|
|
2072
|
+
*/
|
|
2073
|
+
runExpandContentWithSSE(request: $_model.RunExpandContentRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunExpandContentResponse, any, unknown>;
|
|
1916
2074
|
/**
|
|
1917
2075
|
* 内容扩写
|
|
1918
2076
|
*
|
|
@@ -1928,6 +2086,14 @@ export default class Client extends OpenApi {
|
|
|
1928
2086
|
* @returns RunExpandContentResponse
|
|
1929
2087
|
*/
|
|
1930
2088
|
runExpandContent(request: $_model.RunExpandContentRequest): Promise<$_model.RunExpandContentResponse>;
|
|
2089
|
+
/**
|
|
2090
|
+
* 妙读猜你想问接口
|
|
2091
|
+
*
|
|
2092
|
+
* @param request - RunGenerateQuestionsRequest
|
|
2093
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2094
|
+
* @returns RunGenerateQuestionsResponse
|
|
2095
|
+
*/
|
|
2096
|
+
runGenerateQuestionsWithSSE(request: $_model.RunGenerateQuestionsRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunGenerateQuestionsResponse, any, unknown>;
|
|
1931
2097
|
/**
|
|
1932
2098
|
* 妙读猜你想问接口
|
|
1933
2099
|
*
|
|
@@ -1943,6 +2109,14 @@ export default class Client extends OpenApi {
|
|
|
1943
2109
|
* @returns RunGenerateQuestionsResponse
|
|
1944
2110
|
*/
|
|
1945
2111
|
runGenerateQuestions(request: $_model.RunGenerateQuestionsRequest): Promise<$_model.RunGenerateQuestionsResponse>;
|
|
2112
|
+
/**
|
|
2113
|
+
* 妙读文档关键词抽取接口
|
|
2114
|
+
*
|
|
2115
|
+
* @param request - RunHotwordRequest
|
|
2116
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2117
|
+
* @returns RunHotwordResponse
|
|
2118
|
+
*/
|
|
2119
|
+
runHotwordWithSSE(request: $_model.RunHotwordRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunHotwordResponse, any, unknown>;
|
|
1946
2120
|
/**
|
|
1947
2121
|
* 妙读文档关键词抽取接口
|
|
1948
2122
|
*
|
|
@@ -1958,6 +2132,14 @@ export default class Client extends OpenApi {
|
|
|
1958
2132
|
* @returns RunHotwordResponse
|
|
1959
2133
|
*/
|
|
1960
2134
|
runHotword(request: $_model.RunHotwordRequest): Promise<$_model.RunHotwordResponse>;
|
|
2135
|
+
/**
|
|
2136
|
+
* AI妙笔-创作-抽取关键词
|
|
2137
|
+
*
|
|
2138
|
+
* @param tmpReq - RunKeywordsExtractionGenerationRequest
|
|
2139
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2140
|
+
* @returns RunKeywordsExtractionGenerationResponse
|
|
2141
|
+
*/
|
|
2142
|
+
runKeywordsExtractionGenerationWithSSE(tmpReq: $_model.RunKeywordsExtractionGenerationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunKeywordsExtractionGenerationResponse, any, unknown>;
|
|
1961
2143
|
/**
|
|
1962
2144
|
* AI妙笔-创作-抽取关键词
|
|
1963
2145
|
*
|
|
@@ -1973,6 +2155,14 @@ export default class Client extends OpenApi {
|
|
|
1973
2155
|
* @returns RunKeywordsExtractionGenerationResponse
|
|
1974
2156
|
*/
|
|
1975
2157
|
runKeywordsExtractionGeneration(request: $_model.RunKeywordsExtractionGenerationRequest): Promise<$_model.RunKeywordsExtractionGenerationResponse>;
|
|
2158
|
+
/**
|
|
2159
|
+
* 文档批量导读
|
|
2160
|
+
*
|
|
2161
|
+
* @param tmpReq - RunMultiDocIntroductionRequest
|
|
2162
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2163
|
+
* @returns RunMultiDocIntroductionResponse
|
|
2164
|
+
*/
|
|
2165
|
+
runMultiDocIntroductionWithSSE(tmpReq: $_model.RunMultiDocIntroductionRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunMultiDocIntroductionResponse, any, unknown>;
|
|
1976
2166
|
/**
|
|
1977
2167
|
* 文档批量导读
|
|
1978
2168
|
*
|
|
@@ -1988,6 +2178,14 @@ export default class Client extends OpenApi {
|
|
|
1988
2178
|
* @returns RunMultiDocIntroductionResponse
|
|
1989
2179
|
*/
|
|
1990
2180
|
runMultiDocIntroduction(request: $_model.RunMultiDocIntroductionRequest): Promise<$_model.RunMultiDocIntroductionResponse>;
|
|
2181
|
+
/**
|
|
2182
|
+
* AI妙搜-智能搜索生成
|
|
2183
|
+
*
|
|
2184
|
+
* @param tmpReq - RunSearchGenerationRequest
|
|
2185
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2186
|
+
* @returns RunSearchGenerationResponse
|
|
2187
|
+
*/
|
|
2188
|
+
runSearchGenerationWithSSE(tmpReq: $_model.RunSearchGenerationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunSearchGenerationResponse, any, unknown>;
|
|
1991
2189
|
/**
|
|
1992
2190
|
* AI妙搜-智能搜索生成
|
|
1993
2191
|
*
|
|
@@ -2003,6 +2201,14 @@ export default class Client extends OpenApi {
|
|
|
2003
2201
|
* @returns RunSearchGenerationResponse
|
|
2004
2202
|
*/
|
|
2005
2203
|
runSearchGeneration(request: $_model.RunSearchGenerationRequest): Promise<$_model.RunSearchGenerationResponse>;
|
|
2204
|
+
/**
|
|
2205
|
+
* 妙搜-文搜文
|
|
2206
|
+
*
|
|
2207
|
+
* @param tmpReq - RunSearchSimilarArticlesRequest
|
|
2208
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2209
|
+
* @returns RunSearchSimilarArticlesResponse
|
|
2210
|
+
*/
|
|
2211
|
+
runSearchSimilarArticlesWithSSE(tmpReq: $_model.RunSearchSimilarArticlesRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunSearchSimilarArticlesResponse, any, unknown>;
|
|
2006
2212
|
/**
|
|
2007
2213
|
* 妙搜-文搜文
|
|
2008
2214
|
*
|
|
@@ -2018,6 +2224,14 @@ export default class Client extends OpenApi {
|
|
|
2018
2224
|
* @returns RunSearchSimilarArticlesResponse
|
|
2019
2225
|
*/
|
|
2020
2226
|
runSearchSimilarArticles(request: $_model.RunSearchSimilarArticlesRequest): Promise<$_model.RunSearchSimilarArticlesResponse>;
|
|
2227
|
+
/**
|
|
2228
|
+
* 创作-分步骤写作
|
|
2229
|
+
*
|
|
2230
|
+
* @param tmpReq - RunStepByStepWritingRequest
|
|
2231
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2232
|
+
* @returns RunStepByStepWritingResponse
|
|
2233
|
+
*/
|
|
2234
|
+
runStepByStepWritingWithSSE(tmpReq: $_model.RunStepByStepWritingRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunStepByStepWritingResponse, any, unknown>;
|
|
2021
2235
|
/**
|
|
2022
2236
|
* 创作-分步骤写作
|
|
2023
2237
|
*
|
|
@@ -2033,6 +2247,14 @@ export default class Client extends OpenApi {
|
|
|
2033
2247
|
* @returns RunStepByStepWritingResponse
|
|
2034
2248
|
*/
|
|
2035
2249
|
runStepByStepWriting(request: $_model.RunStepByStepWritingRequest): Promise<$_model.RunStepByStepWritingResponse>;
|
|
2250
|
+
/**
|
|
2251
|
+
* 内容特点分析
|
|
2252
|
+
*
|
|
2253
|
+
* @param tmpReq - RunStyleFeatureAnalysisRequest
|
|
2254
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2255
|
+
* @returns RunStyleFeatureAnalysisResponse
|
|
2256
|
+
*/
|
|
2257
|
+
runStyleFeatureAnalysisWithSSE(tmpReq: $_model.RunStyleFeatureAnalysisRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunStyleFeatureAnalysisResponse, any, unknown>;
|
|
2036
2258
|
/**
|
|
2037
2259
|
* 内容特点分析
|
|
2038
2260
|
*
|
|
@@ -2048,6 +2270,14 @@ export default class Client extends OpenApi {
|
|
|
2048
2270
|
* @returns RunStyleFeatureAnalysisResponse
|
|
2049
2271
|
*/
|
|
2050
2272
|
runStyleFeatureAnalysis(request: $_model.RunStyleFeatureAnalysisRequest): Promise<$_model.RunStyleFeatureAnalysisResponse>;
|
|
2273
|
+
/**
|
|
2274
|
+
* 内容摘要生成
|
|
2275
|
+
*
|
|
2276
|
+
* @param request - RunSummaryGenerateRequest
|
|
2277
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2278
|
+
* @returns RunSummaryGenerateResponse
|
|
2279
|
+
*/
|
|
2280
|
+
runSummaryGenerateWithSSE(request: $_model.RunSummaryGenerateRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunSummaryGenerateResponse, any, unknown>;
|
|
2051
2281
|
/**
|
|
2052
2282
|
* 内容摘要生成
|
|
2053
2283
|
*
|
|
@@ -2063,6 +2293,14 @@ export default class Client extends OpenApi {
|
|
|
2063
2293
|
* @returns RunSummaryGenerateResponse
|
|
2064
2294
|
*/
|
|
2065
2295
|
runSummaryGenerate(request: $_model.RunSummaryGenerateRequest): Promise<$_model.RunSummaryGenerateResponse>;
|
|
2296
|
+
/**
|
|
2297
|
+
* 创作-文本润色
|
|
2298
|
+
*
|
|
2299
|
+
* @param request - RunTextPolishingRequest
|
|
2300
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2301
|
+
* @returns RunTextPolishingResponse
|
|
2302
|
+
*/
|
|
2303
|
+
runTextPolishingWithSSE(request: $_model.RunTextPolishingRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunTextPolishingResponse, any, unknown>;
|
|
2066
2304
|
/**
|
|
2067
2305
|
* 创作-文本润色
|
|
2068
2306
|
*
|
|
@@ -2078,6 +2316,14 @@ export default class Client extends OpenApi {
|
|
|
2078
2316
|
* @returns RunTextPolishingResponse
|
|
2079
2317
|
*/
|
|
2080
2318
|
runTextPolishing(request: $_model.RunTextPolishingRequest): Promise<$_model.RunTextPolishingResponse>;
|
|
2319
|
+
/**
|
|
2320
|
+
* 妙笔:标题生成
|
|
2321
|
+
*
|
|
2322
|
+
* @param tmpReq - RunTitleGenerationRequest
|
|
2323
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2324
|
+
* @returns RunTitleGenerationResponse
|
|
2325
|
+
*/
|
|
2326
|
+
runTitleGenerationWithSSE(tmpReq: $_model.RunTitleGenerationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunTitleGenerationResponse, any, unknown>;
|
|
2081
2327
|
/**
|
|
2082
2328
|
* 妙笔:标题生成
|
|
2083
2329
|
*
|
|
@@ -2093,6 +2339,14 @@ export default class Client extends OpenApi {
|
|
|
2093
2339
|
* @returns RunTitleGenerationResponse
|
|
2094
2340
|
*/
|
|
2095
2341
|
runTitleGeneration(request: $_model.RunTitleGenerationRequest): Promise<$_model.RunTitleGenerationResponse>;
|
|
2342
|
+
/**
|
|
2343
|
+
* AI妙笔-创作-中英文翻译
|
|
2344
|
+
*
|
|
2345
|
+
* @param tmpReq - RunTranslateGenerationRequest
|
|
2346
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2347
|
+
* @returns RunTranslateGenerationResponse
|
|
2348
|
+
*/
|
|
2349
|
+
runTranslateGenerationWithSSE(tmpReq: $_model.RunTranslateGenerationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunTranslateGenerationResponse, any, unknown>;
|
|
2096
2350
|
/**
|
|
2097
2351
|
* AI妙笔-创作-中英文翻译
|
|
2098
2352
|
*
|
|
@@ -2108,6 +2362,14 @@ export default class Client extends OpenApi {
|
|
|
2108
2362
|
* @returns RunTranslateGenerationResponse
|
|
2109
2363
|
*/
|
|
2110
2364
|
runTranslateGeneration(request: $_model.RunTranslateGenerationRequest): Promise<$_model.RunTranslateGenerationResponse>;
|
|
2365
|
+
/**
|
|
2366
|
+
* AI妙笔-创作-文风改写
|
|
2367
|
+
*
|
|
2368
|
+
* @param tmpReq - RunWriteToneGenerationRequest
|
|
2369
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2370
|
+
* @returns RunWriteToneGenerationResponse
|
|
2371
|
+
*/
|
|
2372
|
+
runWriteToneGenerationWithSSE(tmpReq: $_model.RunWriteToneGenerationRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunWriteToneGenerationResponse, any, unknown>;
|
|
2111
2373
|
/**
|
|
2112
2374
|
* AI妙笔-创作-文风改写
|
|
2113
2375
|
*
|
|
@@ -2123,6 +2385,14 @@ export default class Client extends OpenApi {
|
|
|
2123
2385
|
* @returns RunWriteToneGenerationResponse
|
|
2124
2386
|
*/
|
|
2125
2387
|
runWriteToneGeneration(request: $_model.RunWriteToneGenerationRequest): Promise<$_model.RunWriteToneGenerationResponse>;
|
|
2388
|
+
/**
|
|
2389
|
+
* 直接写作
|
|
2390
|
+
*
|
|
2391
|
+
* @param tmpReq - RunWritingRequest
|
|
2392
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2393
|
+
* @returns RunWritingResponse
|
|
2394
|
+
*/
|
|
2395
|
+
runWritingWithSSE(tmpReq: $_model.RunWritingRequest, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunWritingResponse, any, unknown>;
|
|
2126
2396
|
/**
|
|
2127
2397
|
* 直接写作
|
|
2128
2398
|
*
|
|
@@ -2138,6 +2408,14 @@ export default class Client extends OpenApi {
|
|
|
2138
2408
|
* @returns RunWritingResponse
|
|
2139
2409
|
*/
|
|
2140
2410
|
runWriting(request: $_model.RunWritingRequest): Promise<$_model.RunWritingResponse>;
|
|
2411
|
+
/**
|
|
2412
|
+
* 直接写作
|
|
2413
|
+
*
|
|
2414
|
+
* @param tmpReq - RunWritingV2Request
|
|
2415
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2416
|
+
* @returns RunWritingV2Response
|
|
2417
|
+
*/
|
|
2418
|
+
runWritingV2WithSSE(tmpReq: $_model.RunWritingV2Request, runtime: $dara.RuntimeOptions): AsyncGenerator<$_model.RunWritingV2Response, any, unknown>;
|
|
2141
2419
|
/**
|
|
2142
2420
|
* 直接写作
|
|
2143
2421
|
*
|
|
@@ -2378,6 +2656,21 @@ export default class Client extends OpenApi {
|
|
|
2378
2656
|
* @returns SubmitExportTermsTaskResponse
|
|
2379
2657
|
*/
|
|
2380
2658
|
submitExportTermsTask(request: $_model.SubmitExportTermsTaskRequest): Promise<$_model.SubmitExportTermsTaskResponse>;
|
|
2659
|
+
/**
|
|
2660
|
+
* 妙笔为您提供了新的事实性审核能力,在联网搜索并判断正误的前提下,还支持用户自定义配置搜索来源 URL。
|
|
2661
|
+
*
|
|
2662
|
+
* @param request - SubmitFactAuditUrlRequest
|
|
2663
|
+
* @param runtime - runtime options for this request RuntimeOptions
|
|
2664
|
+
* @returns SubmitFactAuditUrlResponse
|
|
2665
|
+
*/
|
|
2666
|
+
submitFactAuditUrlWithOptions(request: $_model.SubmitFactAuditUrlRequest, runtime: $dara.RuntimeOptions): Promise<$_model.SubmitFactAuditUrlResponse>;
|
|
2667
|
+
/**
|
|
2668
|
+
* 妙笔为您提供了新的事实性审核能力,在联网搜索并判断正误的前提下,还支持用户自定义配置搜索来源 URL。
|
|
2669
|
+
*
|
|
2670
|
+
* @param request - SubmitFactAuditUrlRequest
|
|
2671
|
+
* @returns SubmitFactAuditUrlResponse
|
|
2672
|
+
*/
|
|
2673
|
+
submitFactAuditUrl(request: $_model.SubmitFactAuditUrlRequest): Promise<$_model.SubmitFactAuditUrlResponse>;
|
|
2381
2674
|
/**
|
|
2382
2675
|
* 提交导入自定义词库任务
|
|
2383
2676
|
*
|