tccli 3.0.1215.1__py2.py3-none-any.whl → 3.0.1217.1__py2.py3-none-any.whl
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.
- tccli/__init__.py +1 -1
- tccli/argparser.py +1 -1
- tccli/command.py +2 -2
- tccli/configure.py +46 -1
- tccli/credentials.py +25 -0
- tccli/main.py +6 -2
- tccli/plugins/sso/__init__.py +61 -0
- tccli/plugins/sso/configs.py +4 -0
- tccli/plugins/sso/configure.py +45 -0
- tccli/plugins/sso/login.py +144 -0
- tccli/plugins/sso/logout.py +21 -0
- tccli/plugins/sso/terminal.py +161 -0
- tccli/plugins/sso/texts.py +40 -0
- tccli/services/__init__.py +6 -3
- tccli/services/acp/v20220105/api.json +7 -7
- tccli/services/acp/v20220105/examples.json +2 -2
- tccli/services/aiart/v20221229/api.json +29 -29
- tccli/services/aiart/v20221229/examples.json +8 -8
- tccli/services/apigateway/v20180808/api.json +18 -17
- tccli/services/apigateway/v20180808/examples.json +12 -12
- tccli/services/apm/v20210622/api.json +118 -4
- tccli/services/asr/v20190614/api.json +21 -20
- tccli/services/asr/v20190614/examples.json +13 -13
- tccli/services/autoscaling/v20180419/api.json +371 -309
- tccli/services/autoscaling/v20180419/examples.json +17 -17
- tccli/services/batch/v20170312/api.json +7 -7
- tccli/services/bda/v20200324/api.json +39 -31
- tccli/services/bda/v20200324/examples.json +9 -9
- tccli/services/bh/__init__.py +4 -0
- tccli/services/bh/bh_client.py +3428 -0
- tccli/services/bh/v20230418/api.json +8180 -0
- tccli/services/bh/v20230418/examples.json +519 -0
- tccli/services/bi/v20220105/api.json +80 -4
- tccli/services/bi/v20220105/examples.json +1 -1
- tccli/services/billing/billing_client.py +53 -0
- tccli/services/billing/v20180709/api.json +330 -24
- tccli/services/billing/v20180709/examples.json +8 -0
- tccli/services/bsca/v20210811/api.json +223 -18
- tccli/services/bsca/v20210811/examples.json +4 -4
- tccli/services/btoe/v20210514/api.json +4 -4
- tccli/services/btoe/v20210514/examples.json +2 -2
- tccli/services/ca/v20230228/api.json +60 -0
- tccli/services/cam/v20190116/api.json +11 -11
- tccli/services/cat/v20180409/api.json +9 -0
- tccli/services/cbs/v20170312/api.json +200 -188
- tccli/services/cbs/v20170312/examples.json +4 -4
- tccli/services/ccc/ccc_client.py +53 -0
- tccli/services/ccc/v20200210/api.json +541 -325
- tccli/services/ccc/v20200210/examples.json +26 -18
- tccli/services/cdb/cdb_client.py +13 -13
- tccli/services/cdb/v20170320/api.json +308 -274
- tccli/services/cdb/v20170320/examples.json +38 -38
- tccli/services/cdc/v20201214/api.json +283 -270
- tccli/services/cdc/v20201214/examples.json +26 -26
- tccli/services/cdn/v20180606/api.json +5 -3
- tccli/services/cds/v20180420/api.json +82 -76
- tccli/services/cds/v20180420/examples.json +1 -1
- tccli/services/cdwch/v20200915/api.json +1 -1
- tccli/services/cdwdoris/v20211228/api.json +54 -4
- tccli/services/cdz/v20221123/api.json +41 -5
- tccli/services/cfg/v20210820/api.json +31 -0
- tccli/services/cfs/v20190719/api.json +89 -1
- tccli/services/cfs/v20190719/examples.json +1 -1
- tccli/services/cfw/cfw_client.py +0 -53
- tccli/services/cfw/v20190904/api.json +1895 -2011
- tccli/services/cfw/v20190904/examples.json +175 -171
- tccli/services/ciam/v20220331/api.json +316 -315
- tccli/services/ciam/v20220331/examples.json +49 -49
- tccli/services/ckafka/v20190819/api.json +104 -75
- tccli/services/clb/v20180317/api.json +48 -26
- tccli/services/clb/v20180317/examples.json +1 -1
- tccli/services/cloudapp/v20220530/api.json +5 -1
- tccli/services/cloudaudit/cloudaudit_client.py +30 -30
- tccli/services/cloudaudit/v20190319/api.json +254 -211
- tccli/services/cloudaudit/v20190319/examples.json +19 -19
- tccli/services/cloudstudio/v20230508/api.json +38 -37
- tccli/services/cloudstudio/v20230508/examples.json +4 -4
- tccli/services/cls/cls_client.py +216 -4
- tccli/services/cls/v20201016/api.json +935 -147
- tccli/services/cls/v20201016/examples.json +43 -5
- tccli/services/csip/v20221121/api.json +2566 -2386
- tccli/services/csip/v20221121/examples.json +108 -108
- tccli/services/cvm/v20170312/api.json +191 -112
- tccli/services/cvm/v20170312/examples.json +2 -2
- tccli/services/cwp/cwp_client.py +4 -110
- tccli/services/cwp/v20180228/api.json +6498 -6252
- tccli/services/cwp/v20180228/examples.json +372 -412
- tccli/services/cynosdb/v20190107/api.json +170 -110
- tccli/services/cynosdb/v20190107/examples.json +91 -91
- tccli/services/dasb/v20191018/api.json +859 -637
- tccli/services/dasb/v20191018/examples.json +101 -101
- tccli/services/dcdb/dcdb_client.py +114 -61
- tccli/services/dcdb/v20180411/api.json +141 -7
- tccli/services/dcdb/v20180411/examples.json +32 -0
- tccli/services/dlc/v20210125/api.json +21 -11
- tccli/services/dnspod/dnspod_client.py +417 -46
- tccli/services/dnspod/v20210323/api.json +751 -30
- tccli/services/dnspod/v20210323/examples.json +62 -0
- tccli/services/domain/v20180808/api.json +3 -3
- tccli/services/domain/v20180808/examples.json +3 -3
- tccli/services/dts/v20211206/api.json +4 -4
- tccli/services/eb/v20210416/api.json +15 -15
- tccli/services/eb/v20210416/examples.json +1 -1
- tccli/services/ecm/v20190719/api.json +2 -2
- tccli/services/emr/v20190103/api.json +339 -114
- tccli/services/emr/v20190103/examples.json +64 -82
- tccli/services/es/es_client.py +249 -37
- tccli/services/es/v20180416/api.json +550 -0
- tccli/services/es/v20180416/examples.json +33 -1
- tccli/services/ess/ess_client.py +53 -0
- tccli/services/ess/v20201111/api.json +192 -38
- tccli/services/ess/v20201111/examples.json +35 -9
- tccli/services/essbasic/essbasic_client.py +106 -0
- tccli/services/essbasic/v20210526/api.json +287 -60
- tccli/services/essbasic/v20210526/examples.json +58 -18
- tccli/services/facefusion/v20181201/api.json +47 -45
- tccli/services/facefusion/v20181201/examples.json +2 -2
- tccli/services/facefusion/v20220927/api.json +54 -48
- tccli/services/facefusion/v20220927/examples.json +5 -5
- tccli/services/faceid/v20180301/api.json +497 -496
- tccli/services/faceid/v20180301/examples.json +219 -101
- tccli/services/fmu/v20191213/api.json +59 -67
- tccli/services/fmu/v20191213/examples.json +22 -22
- tccli/services/ft/v20200304/api.json +53 -57
- tccli/services/ft/v20200304/examples.json +14 -14
- tccli/services/gaap/v20180529/api.json +44 -26
- tccli/services/gaap/v20180529/examples.json +24 -30
- tccli/services/gme/v20180711/api.json +21 -11
- tccli/services/gme/v20180711/examples.json +1 -1
- tccli/services/hai/v20230812/api.json +116 -9
- tccli/services/hai/v20230812/examples.json +4 -4
- tccli/services/hunyuan/hunyuan_client.py +436 -12
- tccli/services/hunyuan/v20230901/api.json +1482 -118
- tccli/services/hunyuan/v20230901/examples.json +82 -18
- tccli/services/iai/v20180301/api.json +23 -19
- tccli/services/iai/v20180301/examples.json +2 -2
- tccli/services/iai/v20200303/api.json +530 -511
- tccli/services/iai/v20200303/examples.json +116 -86
- tccli/services/ig/__init__.py +4 -0
- tccli/services/ig/ig_client.py +195 -0
- tccli/services/ig/v20210518/api.json +83 -0
- tccli/services/ig/v20210518/examples.json +13 -0
- tccli/services/ioa/ioa_client.py +53 -0
- tccli/services/ioa/v20220601/api.json +662 -413
- tccli/services/ioa/v20220601/examples.json +24 -10
- tccli/services/iotexplorer/v20190423/api.json +73 -13
- tccli/services/iotexplorer/v20190423/examples.json +3 -3
- tccli/services/iotvideo/iotvideo_client.py +106 -0
- tccli/services/iotvideo/v20191126/api.json +256 -24
- tccli/services/iotvideo/v20191126/examples.json +19 -3
- tccli/services/iotvideo/v20201215/api.json +1 -1
- tccli/services/iotvideo/v20201215/examples.json +1 -1
- tccli/services/iotvideo/v20211125/api.json +1 -1
- tccli/services/iotvideo/v20211125/examples.json +2 -2
- tccli/services/iss/iss_client.py +69 -122
- tccli/services/iss/v20230517/api.json +10 -54
- tccli/services/iss/v20230517/examples.json +0 -14
- tccli/services/kms/v20190118/api.json +301 -268
- tccli/services/kms/v20190118/examples.json +45 -51
- tccli/services/lcic/lcic_client.py +159 -0
- tccli/services/lcic/v20220817/api.json +273 -1
- tccli/services/lcic/v20220817/examples.json +24 -0
- tccli/services/lighthouse/v20200324/api.json +56 -0
- tccli/services/live/live_client.py +159 -0
- tccli/services/live/v20180801/api.json +279 -9
- tccli/services/live/v20180801/examples.json +24 -0
- tccli/services/lke/v20231130/api.json +17 -17
- tccli/services/lke/v20231130/examples.json +19 -25
- tccli/services/mariadb/v20170312/api.json +7 -7
- tccli/services/market/v20191010/api.json +3 -3
- tccli/services/market/v20191010/examples.json +2 -2
- tccli/services/mmps/v20200710/api.json +47 -47
- tccli/services/mmps/v20200710/examples.json +3 -3
- tccli/services/mongodb/v20190725/api.json +10 -12
- tccli/services/monitor/v20180724/api.json +46 -19
- tccli/services/mps/v20190612/api.json +282 -5
- tccli/services/mps/v20190612/examples.json +25 -1
- tccli/services/mqtt/v20240516/api.json +2 -2
- tccli/services/mrs/v20200910/api.json +72 -34
- tccli/services/mrs/v20200910/examples.json +2 -2
- tccli/services/ms/v20180408/api.json +535 -506
- tccli/services/ms/v20180408/examples.json +25 -25
- tccli/services/oceanus/v20190422/api.json +130 -0
- tccli/services/ocr/ocr_client.py +232 -20
- tccli/services/ocr/v20181119/api.json +2263 -758
- tccli/services/ocr/v20181119/examples.json +200 -180
- tccli/services/omics/v20221128/api.json +614 -553
- tccli/services/omics/v20221128/examples.json +9 -9
- tccli/services/organization/organization_client.py +352 -34
- tccli/services/organization/v20210331/api.json +464 -4
- tccli/services/organization/v20210331/examples.json +49 -1
- tccli/services/partners/v20180321/api.json +244 -234
- tccli/services/partners/v20180321/examples.json +19 -19
- tccli/services/privatedns/privatedns_client.py +428 -4
- tccli/services/privatedns/v20201028/api.json +815 -11
- tccli/services/privatedns/v20201028/examples.json +64 -0
- tccli/services/pts/v20210728/api.json +18 -0
- tccli/services/pts/v20210728/examples.json +1 -1
- tccli/services/rce/rce_client.py +53 -0
- tccli/services/rce/v20201103/api.json +146 -0
- tccli/services/rce/v20201103/examples.json +8 -0
- tccli/services/redis/v20180412/api.json +42 -42
- tccli/services/redis/v20180412/examples.json +19 -19
- tccli/services/region/v20220627/api.json +1 -1
- tccli/services/rum/v20210622/api.json +9 -0
- tccli/services/scf/scf_client.py +269 -4
- tccli/services/scf/v20180416/api.json +569 -15
- tccli/services/scf/v20180416/examples.json +47 -1
- tccli/services/smop/v20201203/api.json +46 -42
- tccli/services/smop/v20201203/examples.json +2 -2
- tccli/services/soe/v20180724/api.json +10 -10
- tccli/services/sqlserver/v20180328/api.json +21 -8
- tccli/services/sqlserver/v20180328/examples.json +5 -5
- tccli/services/ssl/v20191205/api.json +98 -5
- tccli/services/ssm/v20190923/api.json +292 -231
- tccli/services/ssm/v20190923/examples.json +42 -42
- tccli/services/tat/v20201028/api.json +124 -122
- tccli/services/tat/v20201028/examples.json +24 -30
- tccli/services/tchd/v20230306/api.json +5 -5
- tccli/services/tchd/v20230306/examples.json +3 -3
- tccli/services/tcr/v20190924/api.json +1 -1
- tccli/services/tcr/v20190924/examples.json +1 -1
- tccli/services/tcss/v20201101/api.json +1984 -1437
- tccli/services/tcss/v20201101/examples.json +350 -368
- tccli/services/tdmq/v20200217/api.json +603 -464
- tccli/services/tdmq/v20200217/examples.json +105 -105
- tccli/services/tds/v20220801/api.json +4 -4
- tccli/services/tem/v20210701/api.json +429 -372
- tccli/services/tem/v20210701/examples.json +85 -85
- tccli/services/teo/teo_client.py +277 -12
- tccli/services/teo/v20220901/api.json +1029 -124
- tccli/services/teo/v20220901/examples.json +84 -8
- tccli/services/thpc/v20230321/api.json +5 -5
- tccli/services/tke/tke_client.py +270 -58
- tccli/services/tke/v20180525/api.json +79 -27
- tccli/services/tke/v20180525/examples.json +9 -1
- tccli/services/tke/v20220501/api.json +176 -0
- tccli/services/tke/v20220501/examples.json +24 -0
- tccli/services/tms/tms_client.py +4 -57
- tccli/services/tms/v20201229/api.json +0 -354
- tccli/services/tms/v20201229/examples.json +0 -8
- tccli/services/tmt/v20180321/api.json +38 -8
- tccli/services/trp/v20210515/api.json +86 -74
- tccli/services/trp/v20210515/examples.json +65 -65
- tccli/services/trro/v20220325/api.json +72 -71
- tccli/services/trro/v20220325/examples.json +8 -8
- tccli/services/trtc/trtc_client.py +8 -61
- tccli/services/trtc/v20190722/api.json +293 -52
- tccli/services/trtc/v20190722/examples.json +3 -11
- tccli/services/tse/tse_client.py +110 -4
- tccli/services/tse/v20201207/api.json +122 -7
- tccli/services/tse/v20201207/examples.json +25 -9
- tccli/services/vclm/v20240523/api.json +225 -82
- tccli/services/vclm/v20240523/examples.json +13 -19
- tccli/services/vod/v20180717/api.json +431 -4
- tccli/services/vod/v20180717/examples.json +25 -5
- tccli/services/vod/v20240718/api.json +11 -11
- tccli/services/vod/v20240718/examples.json +4 -4
- tccli/services/vod/vod_client.py +53 -0
- tccli/services/vpc/v20170312/api.json +1195 -892
- tccli/services/vpc/v20170312/examples.json +84 -68
- tccli/services/vpc/vpc_client.py +168 -62
- tccli/services/waf/v20180125/api.json +2611 -2187
- tccli/services/waf/v20180125/examples.json +224 -284
- tccli/services/waf/waf_client.py +225 -119
- tccli/services/wav/v20210129/api.json +48 -48
- tccli/services/wav/v20210129/examples.json +4 -4
- tccli/services/wedata/v20210820/api.json +1595 -25
- tccli/services/wedata/v20210820/examples.json +44 -4
- tccli/services/wedata/wedata_client.py +265 -0
- tccli/services/weilingwith/v20230427/api.json +6 -6
- tccli/services/weilingwith/v20230427/examples.json +3 -3
- tccli/sso.py +229 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/METADATA +6 -2
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/RECORD +278 -265
- tccli/services/cr/__init__.py +0 -4
- tccli/services/cr/cr_client.py +0 -1626
- tccli/services/cr/v20180321/api.json +0 -2829
- tccli/services/cr/v20180321/examples.json +0 -235
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/WHEEL +0 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/entry_points.txt +0 -0
- {tccli-3.0.1215.1.dist-info → tccli-3.0.1217.1.dist-info}/license_files/LICENSE +0 -0
@@ -2,10 +2,10 @@
|
|
2
2
|
"actions": {
|
3
3
|
"ActivateService": [
|
4
4
|
{
|
5
|
-
"document": "
|
5
|
+
"document": "服务开通成功",
|
6
6
|
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ActivateService\n<公共请求参数>\n\n{\n \"PayMode\": 1\n}",
|
7
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"
|
8
|
-
"title": "
|
7
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"d4e1f224-fa21-40bc-9ee7-4bb13abece6e\"\n }\n}",
|
8
|
+
"title": "调用成功"
|
9
9
|
}
|
10
10
|
],
|
11
11
|
"ChatCompletions": [
|
@@ -65,11 +65,43 @@
|
|
65
65
|
},
|
66
66
|
{
|
67
67
|
"document": "推荐使用 API Explorer 调用接口,见本文档顶部说明。该示例说明如何使用深度研究。",
|
68
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChatCompletions\n<公共请求参数>\n\n{\n \"Model\": \"hunyuan-pro\",\n \"Messages\": [\n {\n \"Role\": \"user\",\n \"Content\": \"黄金价格为什么上涨?\"\n }\n ],\n \"Stream\": true,\n \"StreamModeration\": true,\n \"EnableEnhancement\": true,\n \"SearchInfo\": true,\n \"Citation\": true\n}",
|
68
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: ChatCompletions\n<公共请求参数>\n\n{\n \"Model\": \"hunyuan-pro\",\n \"Messages\": [\n {\n \"Role\": \"user\",\n \"Content\": \"黄金价格为什么上涨?\"\n }\n ],\n \"Stream\": true,\n \"StreamModeration\": true,\n \"EnableEnhancement\": true,\n \"SearchInfo\": true,\n \"Citation\": true,\n \"EnableDeepSearch\": true\n}",
|
69
69
|
"output": "HTTP/1.1 200 OK\nCache-Control: no-cache\nConnection: keep-alive\nContent-Type: text/event-stream\nDate: Wed, 23 Oct 2024 06:42:27 GMT\nTransfer-Encoding: chunked\nX-TC-RequestId: 962eac85-9d4d-47d5-87df-0f68e2c54ffe\n\ndata: {\"Note\":\"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记\",\"Choices\":[{\"Delta\":{\"Role\":\"assistant\",\"Content\":\"黄金\"},\"FinishReason\":\"\"}],\"SearchInfo\":{\"SearchResults\":[{\"Index\":1,\"Title\":\"什么原因导致黄金价格持续上涨呢?-今日头条\",\"Url\":\"https://www.toutiao.com/article/7405795153295835685/\"},{\"Index\":2,\"Title\":\"黄金价格上涨的背后原因-今日头条\",\"Url\":\"https://www.toutiao.com/article/7343060432250749450/\"},{\"Index\":3,\"Title\":\"黄金为何大涨?背后的逻辑你值得深究 近一年以来,经济界 ...\",\"Url\":\"https://xueqiu.com/9543769156/285918720\"},{\"Index\":4,\"Title\":\"金价为何猛涨u3000-u3000财梯网\",\"Url\":\"https://www.cadforex.com/licai/76040.html\"},{\"Index\":5,\"Title\":\"黄金价格暴涨的多维驱动因素分析_经济_全球_市场\",\"Url\":\"https://www.sohu.com/a/792488534_121983853\"},{\"Index\":6,\"Title\":\"黄金价格与通货膨胀率的关联_因素_市场_影响\",\"Url\":\"https://www.sohu.com/a/795813780_122001933\"},{\"Index\":7,\"Title\":\"通货膨胀与金价的关系是怎样的?_中金在线财经号\",\"Url\":\"http://mp.cnfol.com/58227/article/1724810738-141466711.html\"},{\"Index\":8,\"Title\":\"金价再创新高 地缘政治和美国大选推动避险需求 - 腾讯网\",\"Url\":\"https://new.qq.com/rain/a/20241023A0185900\"},{\"Index\":9,\"Title\":\"中信建投:通胀、货币以及地缘三大因素叠加,构成黄金完美 ...\",\"Url\":\"https://new.qq.com/rain/a/20241023A01G1E00\"},{\"Index\":10,\"Title\":\"黄金价格与美元汇率之间的关系是怎样的-叩富网\",\"Url\":\"https://licai.cofool.com/ask/qa_3396404.html\"},{\"Index\":11,\"Title\":\"金价暴涨释放危险信号:2024年,美元要崩?美债央行美元指数美元汇率黄金价格国际金价_网易订阅\",\"Url\":\"https://www.163.com/dy/article/IMSN07JG0552NMAF.html\"},{\"Index\":12,\"Title\":\"央行购金+投资者配置不足+地缘政治风险,金价明年将涨至 ...\",\"Url\":\"https://finance.sina.com.cn/money/forex/hbfx/2024-10-23/doc-inctnyne0954128.shtml\"},{\"Index\":13,\"Title\":\"黄金价格与全球货币政策的互动_市场关注_经济_中央银行\",\"Url\":\"https://www.sohu.com/a/795813568_122001933\"},{\"Index\":14,\"Title\":\"黄金价格大涨,投资需求显著提升,金价还可以走多远?_财富号_东方财富网\",\"Url\":\"https://caifuhao.eastmoney.com/news/20240306084013570039040\"},{\"Index\":15,\"Title\":\"国际金价再创新高!年内累计涨幅已超30%,机构称中长期 ...\",\"Url\":\"https://new.qq.com/rain/a/20241018A012Y300\"},{\"Index\":16,\"Title\":\"从黄金历史牛市分析和预测黄金价格走势黄金_新浪财经_新浪网\",\"Url\":\"https://finance.sina.com.cn/money/nmetal/hjzx/2024-08-20/doc-inckiaqw3372603.shtml\"},{\"Index\":17,\"Title\":\"以史为鉴!100年黄金走势图显示:长期策略仍是逢低买入 ...\",\"Url\":\"https://finance.sina.com.cn/money/forex/hbfx/2024-02-19/doc-inaipzvn5400083.shtml\"}],\"Outline\":[\"全球经济不确定性\",\"通货膨胀预期上升\",\"美元汇率波动\",\"投资者需求增加\",\"供应端因素\"]},\"Created\":1729665576,\"Id\":\"962eac85-9d4d-47d5-87df-0f68e2c54ffe\",\"Usage\":{\"PromptTokens\":6,\"CompletionTokens\":2,\"TotalTokens\":8}}\n\ndata: {\"Note\":\"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记\",\"Choices\":[{\"Delta\":{\"Role\":\"assistant\",\"Content\":\"价格\"},\"FinishReason\":\"\"}],\"SearchInfo\":{\"SearchResults\":[{\"Index\":1,\"Title\":\"什么原因导致黄金价格持续上涨呢?-今日头条\",\"Url\":\"https://www.toutiao.com/article/7405795153295835685/\"},{\"Index\":2,\"Title\":\"黄金价格上涨的背后原因-今日头条\",\"Url\":\"https://www.toutiao.com/article/7343060432250749450/\"},{\"Index\":3,\"Title\":\"黄金为何大涨?背后的逻辑你值得深究 近一年以来,经济界 ...\",\"Url\":\"https://xueqiu.com/9543769156/285918720\"},{\"Index\":4,\"Title\":\"金价为何猛涨u3000-u3000财梯网\",\"Url\":\"https://www.cadforex.com/licai/76040.html\"},{\"Index\":5,\"Title\":\"黄金价格暴涨的多维驱动因素分析_经济_全球_市场\",\"Url\":\"https://www.sohu.com/a/792488534_121983853\"},{\"Index\":6,\"Title\":\"黄金价格与通货膨胀率的关联_因素_市场_影响\",\"Url\":\"https://www.sohu.com/a/795813780_122001933\"},{\"Index\":7,\"Title\":\"通货膨胀与金价的关系是怎样的?_中金在线财经号\",\"Url\":\"http://mp.cnfol.com/58227/article/1724810738-141466711.html\"},{\"Index\":8,\"Title\":\"金价再创新高 地缘政治和美国大选推动避险需求 - 腾讯网\",\"Url\":\"https://new.qq.com/rain/a/20241023A0185900\"},{\"Index\":9,\"Title\":\"中信建投:通胀、货币以及地缘三大因素叠加,构成黄金完美 ...\",\"Url\":\"https://new.qq.com/rain/a/20241023A01G1E00\"},{\"Index\":10,\"Title\":\"黄金价格与美元汇率之间的关系是怎样的-叩富网\",\"Url\":\"https://licai.cofool.com/ask/qa_3396404.html\"},{\"Index\":11,\"Title\":\"金价暴涨释放危险信号:2024年,美元要崩?美债央行美元指数美元汇率黄金价格国际金价_网易订阅\",\"Url\":\"https://www.163.com/dy/article/IMSN07JG0552NMAF.html\"},{\"Index\":12,\"Title\":\"央行购金+投资者配置不足+地缘政治风险,金价明年将涨至 ...\",\"Url\":\"https://finance.sina.com.cn/money/forex/hbfx/2024-10-23/doc-inctnyne0954128.shtml\"},{\"Index\":13,\"Title\":\"黄金价格与全球货币政策的互动_市场关注_经济_中央银行\",\"Url\":\"https://www.sohu.com/a/795813568_122001933\"},{\"Index\":14,\"Title\":\"黄金价格大涨,投资需求显著提升,金价还可以走多远?_财富号_东方财富网\",\"Url\":\"https://caifuhao.eastmoney.com/news/20240306084013570039040\"},{\"Index\":15,\"Title\":\"国际金价再创新高!年内累计涨幅已超30%,机构称中长期 ...\",\"Url\":\"https://new.qq.com/rain/a/20241018A012Y300\"},{\"Index\":16,\"Title\":\"从黄金历史牛市分析和预测黄金价格走势黄金_新浪财经_新浪网\",\"Url\":\"https://finance.sina.com.cn/money/nmetal/hjzx/2024-08-20/doc-inckiaqw3372603.shtml\"},{\"Index\":17,\"Title\":\"以史为鉴!100年黄金走势图显示:长期策略仍是逢低买入 ...\",\"Url\":\"https://finance.sina.com.cn/money/forex/hbfx/2024-02-19/doc-inaipzvn5400083.shtml\"}],\"Outline\":[\"全球经济不确定性\",\"通货膨胀预期上升\",\"美元汇率波动\",\"投资者需求增加\",\"供应端因素\"]},\"Created\":1729665576,\"Id\":\"962eac85-9d4d-47d5-87df-0f68e2c54ffe\",\"Usage\":{\"PromptTokens\":6,\"CompletionTokens\":4,\"TotalTokens\":10}}\n\ndata: {\"Note\":\"以上内容为AI生成,不代表开发者立场,请勿删除或修改本标记\",\"Choices\":[{\"Delta\":{\"Role\":\"assistant\",\"Content\":\"\"},\"FinishReason\":\"stop\"}],\"SearchInfo\":{\"SearchResults\":[{\"Index\":1,\"Title\":\"什么原因导致黄金价格持续上涨呢?-今日头条\",\"Url\":\"https://www.toutiao.com/article/7405795153295835685/\"},{\"Index\":2,\"Title\":\"黄金价格上涨的背后原因-今日头条\",\"Url\":\"https://www.toutiao.com/article/7343060432250749450/\"},{\"Index\":3,\"Title\":\"黄金为何大涨?背后的逻辑你值得深究 近一年以来,经济界 ...\",\"Url\":\"https://xueqiu.com/9543769156/285918720\"},{\"Index\":4,\"Title\":\"金价为何猛涨u3000-u3000财梯网\",\"Url\":\"https://www.cadforex.com/licai/76040.html\"},{\"Index\":5,\"Title\":\"黄金价格暴涨的多维驱动因素分析_经济_全球_市场\",\"Url\":\"https://www.sohu.com/a/792488534_121983853\"},{\"Index\":6,\"Title\":\"黄金价格与通货膨胀率的关联_因素_市场_影响\",\"Url\":\"https://www.sohu.com/a/795813780_122001933\"},{\"Index\":7,\"Title\":\"通货膨胀与金价的关系是怎样的?_中金在线财经号\",\"Url\":\"http://mp.cnfol.com/58227/article/1724810738-141466711.html\"},{\"Index\":8,\"Title\":\"金价再创新高 地缘政治和美国大选推动避险需求 - 腾讯网\",\"Url\":\"https://new.qq.com/rain/a/20241023A0185900\"},{\"Index\":9,\"Title\":\"中信建投:通胀、货币以及地缘三大因素叠加,构成黄金完美 ...\",\"Url\":\"https://new.qq.com/rain/a/20241023A01G1E00\"},{\"Index\":10,\"Title\":\"黄金价格与美元汇率之间的关系是怎样的-叩富网\",\"Url\":\"https://licai.cofool.com/ask/qa_3396404.html\"},{\"Index\":11,\"Title\":\"金价暴涨释放危险信号:2024年,美元要崩?美债央行美元指数美元汇率黄金价格国际金价_网易订阅\",\"Url\":\"https://www.163.com/dy/article/IMSN07JG0552NMAF.html\"},{\"Index\":12,\"Title\":\"央行购金+投资者配置不足+地缘政治风险,金价明年将涨至 ...\",\"Url\":\"https://finance.sina.com.cn/money/forex/hbfx/2024-10-23/doc-inctnyne0954128.shtml\"},{\"Index\":13,\"Title\":\"黄金价格与全球货币政策的互动_市场关注_经济_中央银行\",\"Url\":\"https://www.sohu.com/a/795813568_122001933\"},{\"Index\":14,\"Title\":\"黄金价格大涨,投资需求显著提升,金价还可以走多远?_财富号_东方财富网\",\"Url\":\"https://caifuhao.eastmoney.com/news/20240306084013570039040\"},{\"Index\":15,\"Title\":\"国际金价再创新高!年内累计涨幅已超30%,机构称中长期 ...\",\"Url\":\"https://new.qq.com/rain/a/20241018A012Y300\"},{\"Index\":16,\"Title\":\"从黄金历史牛市分析和预测黄金价格走势黄金_新浪财经_新浪网\",\"Url\":\"https://finance.sina.com.cn/money/nmetal/hjzx/2024-08-20/doc-inckiaqw3372603.shtml\"},{\"Index\":17,\"Title\":\"以史为鉴!100年黄金走势图显示:长期策略仍是逢低买入 ...\",\"Url\":\"https://finance.sina.com.cn/money/forex/hbfx/2024-02-19/doc-inaipzvn5400083.shtml\"},{\"Index\":18,\"Title\":\"全球央行热衷“购金”!增持意愿达五年新高,高盛看涨金价至 ...\",\"Url\":\"https://news.qq.com/rain/a/20240619A06NQR00\"},{\"Index\":19,\"Title\":\"避险地缘政治冲突,上半年全球央行增持483吨黄金创纪录黄金_新浪财经_新浪网\",\"Url\":\"https://finance.sina.com.cn/jjxw/2024-08-12/doc-incikrfh1306064.shtml\"},{\"Index\":20,\"Title\":\"黄金热潮:央行增持背后的逻辑与投资机遇黄金价格中国人民银行_网易订阅\",\"Url\":\"https://www.163.com/dy/article/J1PCM2DH0523Q7MN.html\"},{\"Index\":21,\"Title\":\"金价暴涨,央行为何连续17个月增加黄金储备,后续会加仓吗\",\"Url\":\"https://new.qq.com/rain/a/20240407A08EVY00\"},{\"Index\":22,\"Title\":\"央行增持黄金意味着什么u3000-u3000财梯网\",\"Url\":\"https://www.cadforex.com/huangji/135556.html\"},{\"Index\":23,\"Title\":\"央行增持黄金储备如何影响黄金市场行情-指股网\",\"Url\":\"https://www.zhiguf.com/focusnews_detail/1300594\"},{\"Index\":24,\"Title\":\"连续5个月,央行暂停增持黄金! - 经济观察网\",\"Url\":\"http://www.eeo.com.cn/2024/1020/692290.shtml\"},{\"Index\":25,\"Title\":\"央行,继续暂停增持黄金 - 腾讯网\",\"Url\":\"https://new.qq.com/rain/a/20241007A04F7B00\"},{\"Index\":26,\"Title\":\"中国央行连续第五个月暂停增持黄金,分析师:空头将寻求金价跌向2605_外汇动态报道_汇通财经www.fx678.com\",\"Url\":\"https://news.fx678.com/202410071146181057.shtml\"},{\"Index\":27,\"Title\":\"央行增持黄金意味着什么u3000-u3000财梯网\",\"Url\":\"https://www.cadforex.com/huangji/135556.html\"},{\"Index\":28,\"Title\":\"中国央行连续15个月增持黄金,去年净购金量居全球之首\",\"Url\":\"https://finance.sina.com.cn/jjxw/2024-02-07/doc-inahfexi2620119.shtml\"},{\"Index\":29,\"Title\":\"中国央行连续15个月增持黄金,去年净购金量居全球之首 ...\",\"Url\":\"https://www.jiemian.com/article/10790382.html\"},{\"Index\":30,\"Title\":\"中国9月末黄金储备7280万盎司 央行连续第五个月暂停增持黄金\",\"Url\":\"https://new.qq.com/rain/a/20241007A02E5O00\"},{\"Index\":31,\"Title\":\"14连升!我国黄金储备2235.41吨\",\"Url\":\"http://www.gold.org.cn/sc1227/dzsp/202401/t20240108_195543.html\"},{\"Index\":32,\"Title\":\"2264.33吨!中国央行连续第5个月暂停增持黄金储备!原因为何?\",\"Url\":\"https://new.qq.com/rain/a/20241007A077BF00\"}],\"Outline\":[\"全球经济不确定性\",\"通货膨胀预期上升\",\"美元汇率波动\",\"投资者需求增加\",\"供应端因素\"],\"Mindmap\":{\"ThumbUrl\":\"https://hunyuan-plugin-nj-1258344706.cos.ap-nanjing.myqcloud.com/xmind/b70d74171af71b74a9f0b6ea2cb740e0.png\",\"Url\":\"https://hunyuan-plugin-nj-1258344706.cos.ap-nanjing.myqcloud.com/xmind/b70d74171af71b74a9f0b6ea2cb740e0_t.png\"},\"RelevantEvents\":[{\"Title\":\"欧洲央行降息\",\"Content\":\"欧洲央行在今年第三次降息,降息幅度为25个基点,全球货币环境维持宽松,为黄金的购买创造了有利环境,推动金价上涨。\",\"Datetime\":\"2024-10-23\",\"Reference\":[6]},{\"Title\":\"美元汇率走低\",\"Content\":\"美元汇率走低导致美元贬值,以美元计价的黄金价格上涨。此外,全球央行净购黄金创下历史新高,进一步推动了金价上涨。\",\"Datetime\":\"2024-10-13\",\"Reference\":[7,18]},{\"Title\":\"地缘政治紧张局势\",\"Content\":\"俄乌冲突、巴以冲突屡次出现升级迹象,美国大选的不确定性加剧了市场对未来全球经济增长的担忧,推动更多资金流向避险资产黄金。\",\"Datetime\":\"2024-09-21\",\"Reference\":[4]},{\"Title\":\"全球央行大量购金\",\"Content\":\"近两年全球央行开始大量购金,2022年、2023年全球央行及主权机构增持黄金量均超1000吨,约占当年全球黄金产量的三分之一,导致市场供需关系变化,推高了金价。\",\"Datetime\":\"2024-09-01\",\"Reference\":[2,4]},{\"Title\":\"美联储降息预期\",\"Content\":\"随着美国经济下行压力增大,市场普遍预期美联储货币政策将转向宽松周期,降息预期升温,推动黄金价格上涨。\",\"Datetime\":\"2024-09-01\",\"Reference\":[2,4]}],\"RelevantEntities\":[{\"Name\":\"鲍威尔[2](@ref)\",\"Content\":\"美联储主席鲍威尔表示调整货币政策的时机已到,市场对于9月份美联储降息预期更为强烈,这一表态成为黄金价格上涨的重要推手。\",\"Reference\":[2]},{\"Name\":\"特朗普[9](@ref)\",\"Content\":\"特朗普当选的概率上升,市场广泛定价中期通胀中枢上移,特朗普主张的“减税+关税”政策组合导致更高的经济增长、债务增长和通胀前景,推动金价上涨。\",\"Reference\":[9]},{\"Name\":\"国际货币基金组织[5](@ref)\",\"Content\":\"国际货币基金组织长期购买黄金并保持较高储备,提升了其金融安全性,黄金成为最佳的避险资产。\",\"Reference\":[5]},{\"Name\":\"全球央行[2,4](@ref)\",\"Content\":\"近两年全球央行开始大量购金,2022年、2023年全球央行及主权机构增持黄金量均超1000吨,央行购入的黄金作为官方储备资产,推动了黄金价格的长期上涨。\",\"Reference\":[2,4]}],\"Timeline\":[{\"Title\":\"现货黄金一度触及每盎司2450美元再创盘中历史新高\",\"Url\":\"https://new.qq.com/rain/a/20240521A02VPJ00\",\"Datetime\":\"2024-05-21 10:55:22\"},{\"Title\":\"现货黄金涨超1%至2439.19美元/盎司再度刷新历史新高\",\"Url\":\"https://new.qq.com/rain/a/20240520A01GR300\",\"Datetime\":\"2024-05-20 09:12:19\"},{\"Title\":\"现货黄金涨幅扩大至约1.2%重返2370美元/盎司上方\",\"Url\":\"https://new.qq.com/rain/a/20240415A00H6I00\",\"Datetime\":\"2024-04-15 06:42:23\"},{\"Title\":\"现货黄金首次涨穿2300美元/盎司关口\",\"Url\":\"https://new.qq.com/rain/a/20240404A00BDK00\",\"Datetime\":\"2024-04-04 04:48:12\"},{\"Title\":\"现货黄金盘中再创历史新高达2236美元/盎司\",\"Url\":\"https://new.qq.com/rain/a/20240329A00P7I00\",\"Datetime\":\"2024-03-29 07:30:14\"},{\"Title\":\"国内黄金首饰价格突破645元/克\",\"Url\":\"https://new.qq.com/rain/a/20240305A096Z000\",\"Datetime\":\"2024-03-05 20:06:29\"},{\"Title\":\"纽约金价首次收盘站上2100美元\",\"Url\":\"https://new.qq.com/rain/a/20240305A01GFM00\",\"Datetime\":\"2024-03-05 09:18:26\"},{\"Title\":\"CFTC数据显示黄金看涨情绪创三周新高\",\"Url\":\"https://new.qq.com/rain/a/20240302A00ISM00\",\"Datetime\":\"2024-03-02 04:48:30\"}]},\"Created\":1729665606,\"Id\":\"962eac85-9d4d-47d5-87df-0f68e2c54ffe\",\"Usage\":{\"PromptTokens\":6,\"CompletionTokens\":2068,\"TotalTokens\":2074}}",
|
70
70
|
"title": "深度研究示例"
|
71
71
|
}
|
72
72
|
],
|
73
|
+
"CreateThread": [
|
74
|
+
{
|
75
|
+
"document": "创建会话",
|
76
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: CreateThread\n<公共请求参数>\n\n{}",
|
77
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"85f12577-426b-4af2-93a5-03cea153cbe4\",\n \"ID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\",\n \"Object\": \"thread\",\n \"CreatedAt\": 1727331773,\n \"ToolResources\": {\n \"CodeInterpreter\": null\n }\n }\n}",
|
78
|
+
"title": "创建会话"
|
79
|
+
}
|
80
|
+
],
|
81
|
+
"FilesDeletions": [
|
82
|
+
{
|
83
|
+
"document": "删除文件。",
|
84
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: FilesDeletions\n<公共请求参数>\n\n{\n \"ID\": \"file-YbhlphnNEsjRoKTEXukAqNZZ\"\n}",
|
85
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"c203917d-6c1f-4dd7-84c9-7617947d2abf\",\n \"ID\": \"file-YbhlphnNEsjRoKTEXukAqNZZ\",\n \"Object\": \"file\",\n \"Deleted\": true\n }\n}",
|
86
|
+
"title": "删除文件。"
|
87
|
+
}
|
88
|
+
],
|
89
|
+
"FilesList": [
|
90
|
+
{
|
91
|
+
"document": "文件列表。",
|
92
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: FilesList\n<公共请求参数>\n\n{\n \"Offset\": 0,\n \"Limit\": 10\n}",
|
93
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"c422c508-6d70-4529-83e0-d20ac5125852\",\n \"Total\": 10,\n \"Object\": \"list\",\n \"Data\": [\n {\n \"ID\": \"file-YbhlphnNEsjRoKTEXukAqNZZ\",\n \"Object\": \"file\",\n \"Bytes\": 422915,\n \"CreatedAt\": 1722513746,\n \"Filename\": \"云API产品简介.pdf\",\n \"Purpose\": \"file-extract\"\n }\n ]\n }\n}",
|
94
|
+
"title": "文件列表。"
|
95
|
+
}
|
96
|
+
],
|
97
|
+
"FilesUploads": [
|
98
|
+
{
|
99
|
+
"document": "上传文件。",
|
100
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: FilesUploads\n<公共请求参数>\n\n{\n \"Name\": \"云API产品简介.pdf\",\n \"URL\": \"https://main.qcloudimg.com/raw/document/product/pdf/1278_46794_cn.pdf\"\n}",
|
101
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"a5f3568b-45dc-4cc9-9fef-268768b0dbca\",\n \"ID\": \"file-YbhlphnNEsjRoKTEXukAqNZZ\",\n \"Object\": \"file\",\n \"Bytes\": 422915,\n \"CreatedAt\": 1722513746,\n \"Filename\": \"云API产品简介.pdf\",\n \"Purpose\": \"file-extract\"\n }\n}",
|
102
|
+
"title": "上传文件。"
|
103
|
+
}
|
104
|
+
],
|
73
105
|
"GetEmbedding": [
|
74
106
|
{
|
75
107
|
"document": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetEmbedding\n<公共请求参数>",
|
@@ -78,6 +110,30 @@
|
|
78
110
|
"title": "请求成功示例"
|
79
111
|
}
|
80
112
|
],
|
113
|
+
"GetThread": [
|
114
|
+
{
|
115
|
+
"document": "获取会话",
|
116
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetThread\n<公共请求参数>\n\n{\n \"ThreadID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\"\n}",
|
117
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"2673f3fd-2039-4eea-a832-63fa1c4d000b\",\n \"ID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\",\n \"Object\": \"thread\",\n \"CreatedAt\": 1727360573,\n \"ToolResources\": {\n \"CodeInterpreter\": null\n }\n }\n}",
|
118
|
+
"title": "获取会话"
|
119
|
+
}
|
120
|
+
],
|
121
|
+
"GetThreadMessage": [
|
122
|
+
{
|
123
|
+
"document": "获取会话消息",
|
124
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetThreadMessage\n<公共请求参数>\n\n{\n \"ThreadID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\",\n \"MessageID\": \"msg_jtO6oVZmFtIi4T43eswXk6lJ\"\n}",
|
125
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"585adb49-e89c-4f58-868a-ca0438e23a17\",\n \"ID\": \"msg_jtO6oVZmFtIi4T43eswXk6lJ\",\n \"Object\": \"thread.message\",\n \"CreatedAt\": 1727303115,\n \"ThreadID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\",\n \"Status\": \"completed\",\n \"InCompleteDetails\": {\n \"Reason\": \"\"\n },\n \"CompletedAt\": 1727331915,\n \"InCompleteAt\": null,\n \"Role\": \"assistant\",\n \"Content\": [\n {\n \"Index\": 0,\n \"Type\": \"text\",\n \"Text\": {\n \"Value\": \"您好!非常高兴与您交流,今天有什么有趣的事情想和我分享呢\"\n }\n }\n ],\n \"AssistantID\": \"\",\n \"RunID\": \"run_XmeUGzgrzTE82Yh7p8mZWRcJ\",\n \"Attachments\": null,\n \"Metadata\": {}\n }\n}",
|
126
|
+
"title": "获取会话消息"
|
127
|
+
}
|
128
|
+
],
|
129
|
+
"GetThreadMessageList": [
|
130
|
+
{
|
131
|
+
"document": "获取会话消息列表",
|
132
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: GetThreadMessageList\n<公共请求参数>\n\n{\n \"ThreadID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\"\n}",
|
133
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"4809bed2-f1ca-4d72-b097-bd528184825d\",\n \"Data\": [\n {\n \"ID\": \"msg_jtO6oVZmFtIi4T43eswXk6lJ\",\n \"Object\": \"thread.message\",\n \"CreatedAt\": 1727303115,\n \"ThreadID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\",\n \"Status\": \"completed\",\n \"InCompleteDetails\": {\n \"Reason\": \"\"\n },\n \"CompletedAt\": 1727331915,\n \"InCompleteAt\": null,\n \"Role\": \"assistant\",\n \"Content\": [\n {\n \"Index\": 0,\n \"Type\": \"text\",\n \"Text\": {\n \"Value\": \"您好!非常高兴与您交流,今天有什么有趣的事情想和我分享呢\"\n }\n }\n ],\n \"AssistantID\": \"\",\n \"RunID\": \"run_XmeUGzgrzTE82Yh7p8mZWRcJ\",\n \"Attachments\": null,\n \"Metadata\": {}\n },\n {\n \"ID\": \"msg_oJBEpYDXDZw5epfQYNrJEEJa\",\n \"Object\": \"thread.message\",\n \"CreatedAt\": 1727303115,\n \"ThreadID\": \"thread_QPH2Z6DpBhc46V3ylE1JEqTv\",\n \"Status\": \"completed\",\n \"InCompleteDetails\": {\n \"Reason\": \"\"\n },\n \"CompletedAt\": 1727331915,\n \"InCompleteAt\": null,\n \"Role\": \"user\",\n \"Content\": [\n {\n \"Index\": 0,\n \"Type\": \"text\",\n \"Text\": {\n \"Value\": \"你好\"\n }\n }\n ],\n \"AssistantID\": \"\",\n \"RunID\": \"run_XmeUGzgrzTE82Yh7p8mZWRcJ\",\n \"Attachments\": null,\n \"Metadata\": {}\n }\n ],\n \"FirstID\": \"msg_jtO6oVZmFtIi4T43eswXk6lJ\",\n \"LastID\": \"msg_oJBEpYDXDZw5epfQYNrJEEJa\",\n \"HasMore\": false,\n \"Object\": \"list\"\n }\n}",
|
134
|
+
"title": "获取会话消息列表"
|
135
|
+
}
|
136
|
+
],
|
81
137
|
"GetTokenCount": [
|
82
138
|
{
|
83
139
|
"document": "",
|
@@ -89,48 +145,56 @@
|
|
89
145
|
"QueryHunyuanImageChatJob": [
|
90
146
|
{
|
91
147
|
"document": "成功查询",
|
92
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryHunyuanImageChatJob\n<公共请求参数>\n\n{\n \"JobId\": \"
|
93
|
-
"output": "{\n \"Response\": {\n \"ChatId\": \"
|
148
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryHunyuanImageChatJob\n<公共请求参数>\n\n{\n \"JobId\": \"1253534368-1731657099-7276788a-a326-11ef-beeb-525400bba60c-0\"\n}",
|
149
|
+
"output": "{\n \"Response\": {\n \"ChatId\": \"1248907282106990592\",\n \"History\": [\n {\n \"ChatId\": \"1248907282106990592\",\n \"Prompt\": \"请画一个苹果在桌子上\",\n \"RevisedPrompt\": \"风格为摄影风格,桌子上摆放着一个红润的苹果,镜头为近景镜头\",\n \"Seed\": 1549130027\n }\n ],\n \"JobErrorCode\": \"\",\n \"JobErrorMsg\": \"\",\n \"JobStatusCode\": \"5\",\n \"JobStatusMsg\": \"处理完成\",\n \"RequestId\": \"54c4d31e-234b-44b8-802b-7d10fa2e77dc\",\n \"ResultDetails\": [\n \"Success\"\n ],\n \"ResultImage\": [\n \"https://aiart-xxx.cos.ap-guangzhou.myqcloud.com/xxx?q-sign-algorithm=sha1&q-ak=xxx&q-sign-time=1731657113;1732261913&q-key-time=1731657113;1732261913&q-header-list=host&q-url-param-list=&q-signature=b9c4be16d763664d829d0bfa398f571aa0e75c0e\"\n ]\n }\n}",
|
94
150
|
"title": "成功查询"
|
95
151
|
}
|
96
152
|
],
|
97
153
|
"QueryHunyuanImageJob": [
|
98
154
|
{
|
99
155
|
"document": "成功查询",
|
100
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryHunyuanImageJob\n<公共请求参数>\n\n{\n \"JobId\": \"
|
101
|
-
"output": "{\n \"Response\": {\n \"JobErrorCode\": \"\",\n \"JobErrorMsg\": \"\",\n \"JobStatusCode\": \"5\",\n \"JobStatusMsg\": \"处理完成\",\n \"RequestId\": \"56b2ecae-46e4-4697-87d2-dc2b3bbbc2c6\",\n \"ResultDetails\": [\n \"Success\"\n ],\n \"ResultImage\": [\n \"https
|
156
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: QueryHunyuanImageJob\n<公共请求参数>\n\n{\n \"JobId\": \"251197749-1731412663-d4e1f224-fa21-40bc-9ee7-4bb13abece6e-0\"\n}",
|
157
|
+
"output": "{\n \"Response\": {\n \"JobErrorCode\": \"\",\n \"JobErrorMsg\": \"\",\n \"JobStatusCode\": \"5\",\n \"JobStatusMsg\": \"处理完成\",\n \"RequestId\": \"56b2ecae-46e4-4697-87d2-dc2b3bbbc2c6\",\n \"ResultDetails\": [\n \"Success\"\n ],\n \"ResultImage\": [\n \"https://aiart-xxx.cos.ap-guangzhou.myqcloud.com/xxx?q-sign-algorithm=sha1&q-ak=xxx&q-sign-time=1731655045;1731658645&q-key-time=1731655045;1731658645&q-header-list=host&q-url-param-list=&q-signature=72776438be444f9a72e04e5e6376aadf51e65655\"\n ],\n \"RevisedPrompt\": [\n \"一条细长的小路穿梭在茂密的竹林中,天空下着细雨,雨水滴答落在翠绿的竹叶上,沿途的小路湿润且闪烁着水光,竹叶摇曳间洒下点点水珠,营造出静谧而清新的氛围\"\n ]\n }\n}",
|
102
158
|
"title": "成功查询"
|
103
159
|
}
|
104
160
|
],
|
161
|
+
"RunThread": [
|
162
|
+
{
|
163
|
+
"document": "执行会话",
|
164
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: RunThread\n<公共请求参数>\n\n{\n \"ThreadID\": \"thread_zqkehzQBog4v4lJxBPQRXtYW\",\n \"Model\": \"hunyuan-pro\",\n \"AdditionalMessages\": [\n {\n \"Role\": \"user\",\n \"Content\": \"你是谁\"\n }\n ],\n \"Stream\": true\n}",
|
165
|
+
"output": "{\n\t\"ID\": \"run_cRpe4PGgXxTwwvuee55anOO4\",\n\t\"Object\": \"thread.run\",\n\t\"CreatedAt\": 1727355339,\n\t\"ThreadID\": \"thread_zqkehzQBog4v4lJxBPQRXtYW\",\n\t\"AssistantID\": \"\",\n\t\"Status\": \"created\",\n\t\"RequiredAction\": null,\n\t\"LastError\": null,\n\t\"ExpiresAt\": 0,\n\t\"StartedAt\": 0,\n\t\"CancelledAt\": 0,\n\t\"FailedAt\": 0,\n\t\"CompletedAt\": 0,\n\t\"InCompleteDetails\": null,\n\t\"Model\": \"hunyuan\",\n\t\"Instructions\": \"\",\n\t\"Tools\": [],\n\t\"Metadata\": {},\n\t\"Usage\": null,\n\t\"Temperature\": 0,\n\t\"TopP\": 0,\n\t\"MaxPromptTokens\": 0,\n\t\"MaxCompletionTokens\": 0,\n\t\"TruncationStrategy\": {\n\t\t\"Type\": \"\",\n\t\t\"LastMessages\": null\n\t},\n\t\"ParallelToolCalls\": false,\n\t\"ResponseFormat\": null\n}",
|
166
|
+
"title": "执行会话"
|
167
|
+
}
|
168
|
+
],
|
105
169
|
"SetPayMode": [
|
106
170
|
{
|
107
|
-
"document": "",
|
108
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SetPayMode\n<公共请求参数>\n\n{}",
|
109
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"
|
110
|
-
"title": "
|
171
|
+
"document": "设置关闭后付费",
|
172
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SetPayMode\n<公共请求参数>\n\n{\n \"PayMode\": 1\n}",
|
173
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"9723dd95-d217-46ff-a556-2cc760142737\"\n }\n}",
|
174
|
+
"title": "调用成功"
|
111
175
|
}
|
112
176
|
],
|
113
177
|
"SubmitHunyuanImageChatJob": [
|
114
178
|
{
|
115
179
|
"document": "调用成功",
|
116
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SubmitHunyuanImageChatJob\n<公共请求参数>\n\n{\n \"Prompt\": \"
|
117
|
-
"output": "{\n \"Response\": {\n \"JobId\": \"
|
180
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SubmitHunyuanImageChatJob\n<公共请求参数>\n\n{\n \"Prompt\": \"请画一个苹果在桌子上\"\n}",
|
181
|
+
"output": "{\n \"Response\": {\n \"JobId\": \"1253534368-1731657099-7276788a-a326-11ef-beeb-525400bba60c-0\",\n \"RequestId\": \"7276788a-a326-11ef-beeb-525400bba60c\"\n }\n}",
|
118
182
|
"title": "调用成功"
|
119
183
|
}
|
120
184
|
],
|
121
185
|
"SubmitHunyuanImageJob": [
|
122
186
|
{
|
123
187
|
"document": "调用成功",
|
124
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SubmitHunyuanImageJob\n<公共请求参数>\n\n{\n \"Prompt\": \"
|
125
|
-
"output": "{\n \"Response\": {\n \"JobId\": \"
|
188
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: SubmitHunyuanImageJob\n<公共请求参数>\n\n{\n \"Prompt\": \"雨中, 竹林, 小路\"\n}",
|
189
|
+
"output": "{\n \"Response\": {\n \"JobId\": \"251197749-1731412663-d4e1f224-fa21-40bc-9ee7-4bb13abece6e-0\",\n \"RequestId\": \"d4e1f224-fa21-40bc-9ee7-4bb13abece6e\"\n }\n}",
|
126
190
|
"title": "调用成功"
|
127
191
|
}
|
128
192
|
],
|
129
193
|
"TextToImageLite": [
|
130
194
|
{
|
131
195
|
"document": "成功调用,并返回生图url",
|
132
|
-
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: TextToImageLite\n<公共请求参数>\n\n{\n \"Prompt\": \"
|
133
|
-
"output": "{\n \"Response\": {\n \"RequestId\": \"53549a10-0633-4ebe-bf39-466dc51aa2bb\",\n \"ResultImage\": \"https://
|
196
|
+
"input": "POST / HTTP/1.1\nHost: hunyuan.tencentcloudapi.com\nContent-Type: application/json\nX-TC-Action: TextToImageLite\n<公共请求参数>\n\n{\n \"Prompt\": \"雨中, 竹林, 小路\",\n \"RspImgType\": \"url\"\n}",
|
197
|
+
"output": "{\n \"Response\": {\n \"RequestId\": \"53549a10-0633-4ebe-bf39-466dc51aa2bb\",\n \"ResultImage\": \"https://hyimg-xxx.cos.ap-guangzhou.myqcloud.com/xxx.jpg?q-sign-algorithm=sha1&q-ak=xxx&q-sign-time=1731586602;1731590202&q-key-time=1731586602;1731590202&q-header-list=host&q-url-param-list=&q-signature=ebb3f1d327cf4224c798ef328e1babbb41d09326\"\n }\n}",
|
134
198
|
"title": "成功调用"
|
135
199
|
}
|
136
200
|
]
|
@@ -244,8 +244,8 @@
|
|
244
244
|
"members": [
|
245
245
|
{
|
246
246
|
"disabled": false,
|
247
|
-
"document": "
|
248
|
-
"example": "",
|
247
|
+
"document": "检测模式。\n- 取值范围:0 为检测所有出现的人脸, 1 为检测面积最大的人脸。 \n- 默认为 0。 \n- 最多返回 5 张人脸的五官定位(人脸关键点)具体信息。",
|
248
|
+
"example": "1",
|
249
249
|
"member": "uint64",
|
250
250
|
"name": "Mode",
|
251
251
|
"required": false,
|
@@ -253,8 +253,8 @@
|
|
253
253
|
},
|
254
254
|
{
|
255
255
|
"disabled": false,
|
256
|
-
"document": "图片 base64
|
257
|
-
"example": "",
|
256
|
+
"document": "图片 base64 数据。\n- base64 编码后大小不可超过5M。\n- jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。 \n- 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。",
|
257
|
+
"example": "/9j/4AAQSkZJRg.....s97n//2Q==",
|
258
258
|
"member": "string",
|
259
259
|
"name": "Image",
|
260
260
|
"required": false,
|
@@ -262,8 +262,8 @@
|
|
262
262
|
},
|
263
263
|
{
|
264
264
|
"disabled": false,
|
265
|
-
"document": "图片的 Url
|
266
|
-
"example": "",
|
265
|
+
"document": "图片的 Url 。\n- 对应图片 base64 编码后大小不可超过5M。 \n- jpg格式长边像素不可超过4000,其他格式图片长边像素不可超2000。\n- Url、Image必须提供一个,如果都提供,只使用 Url。 \n- 图片存储于腾讯云的Url可保障更高下载速度和稳定性,建议图片存储于腾讯云。 \n- 非腾讯云存储的Url速度和稳定性可能受一定影响。 \n- 支持PNG、JPG、JPEG、BMP,不支持 GIF 图片。",
|
266
|
+
"example": "http://test.image.myqcloud.com/testA.jpg",
|
267
267
|
"member": "string",
|
268
268
|
"name": "Url",
|
269
269
|
"required": false,
|
@@ -272,7 +272,7 @@
|
|
272
272
|
{
|
273
273
|
"disabled": false,
|
274
274
|
"document": "人脸识别服务所用的算法模型版本。本接口仅支持 “3.0“ 输入。",
|
275
|
-
"example": "",
|
275
|
+
"example": "3.0",
|
276
276
|
"member": "string",
|
277
277
|
"name": "FaceModelVersion",
|
278
278
|
"required": false,
|
@@ -280,8 +280,8 @@
|
|
280
280
|
},
|
281
281
|
{
|
282
282
|
"disabled": false,
|
283
|
-
"document": "
|
284
|
-
"example": "",
|
283
|
+
"document": "是否开启图片旋转识别支持。\n- 取值范围:0为不开启,1为开启。\n- 默认为0。\n- 本参数的作用为,当图片中的人脸被旋转且图片没有exif信息时,如果不开启图片旋转识别支持则无法正确检测、识别图片中的人脸。\n- 若您确认图片包含exif信息或者您确认输入图中人脸不会出现被旋转情况,请不要开启本参数。开启后,整体耗时将可能增加数百毫秒。",
|
284
|
+
"example": "0",
|
285
285
|
"member": "int64",
|
286
286
|
"name": "NeedRotateDetection",
|
287
287
|
"required": false,
|
@@ -296,36 +296,40 @@
|
|
296
296
|
{
|
297
297
|
"disabled": false,
|
298
298
|
"document": "请求的图片宽度。",
|
299
|
-
"example": "",
|
299
|
+
"example": "98",
|
300
300
|
"member": "int64",
|
301
301
|
"name": "ImageWidth",
|
302
|
+
"output_required": true,
|
302
303
|
"type": "int",
|
303
304
|
"value_allowed_null": false
|
304
305
|
},
|
305
306
|
{
|
306
307
|
"disabled": false,
|
307
308
|
"document": "请求的图片高度。",
|
308
|
-
"example": "",
|
309
|
+
"example": "189",
|
309
310
|
"member": "int64",
|
310
311
|
"name": "ImageHeight",
|
312
|
+
"output_required": true,
|
311
313
|
"type": "int",
|
312
314
|
"value_allowed_null": false
|
313
315
|
},
|
314
316
|
{
|
315
317
|
"disabled": false,
|
316
318
|
"document": "稠密人脸关键点具体信息。",
|
317
|
-
"example": "",
|
319
|
+
"example": "无",
|
318
320
|
"member": "DenseFaceShape",
|
319
321
|
"name": "DenseFaceShapeSet",
|
322
|
+
"output_required": true,
|
320
323
|
"type": "list",
|
321
324
|
"value_allowed_null": false
|
322
325
|
},
|
323
326
|
{
|
324
327
|
"disabled": false,
|
325
328
|
"document": "人脸识别服务所用的算法模型版本。本接口仅支持 “3.0“ 输入。",
|
326
|
-
"example": "",
|
329
|
+
"example": "3.0",
|
327
330
|
"member": "string",
|
328
331
|
"name": "FaceModelVersion",
|
332
|
+
"output_required": true,
|
329
333
|
"type": "string",
|
330
334
|
"value_allowed_null": false
|
331
335
|
},
|
@@ -3489,21 +3493,21 @@
|
|
3489
3493
|
"members": [
|
3490
3494
|
{
|
3491
3495
|
"disabled": false,
|
3492
|
-
"document": "x
|
3493
|
-
"example": "",
|
3496
|
+
"document": "x坐标。",
|
3497
|
+
"example": "78",
|
3494
3498
|
"member": "int64",
|
3495
3499
|
"name": "X",
|
3496
|
-
"
|
3500
|
+
"output_required": true,
|
3497
3501
|
"type": "int",
|
3498
3502
|
"value_allowed_null": false
|
3499
3503
|
},
|
3500
3504
|
{
|
3501
3505
|
"disabled": false,
|
3502
|
-
"document": "Y
|
3503
|
-
"example": "",
|
3506
|
+
"document": "Y坐标。",
|
3507
|
+
"example": "38",
|
3504
3508
|
"member": "int64",
|
3505
3509
|
"name": "Y",
|
3506
|
-
"
|
3510
|
+
"output_required": true,
|
3507
3511
|
"type": "int",
|
3508
3512
|
"value_allowed_null": false
|
3509
3513
|
}
|
@@ -2,9 +2,9 @@
|
|
2
2
|
"actions": {
|
3
3
|
"AnalyzeDenseLandmarks": [
|
4
4
|
{
|
5
|
-
"document": "",
|
5
|
+
"document": "对请求图片进行五官定位,获得人脸的精准信息。",
|
6
6
|
"input": "https://iai.tencentcloudapi.com/?Action=AnalyzeDenseLandmarks\n&Mode=0\n&Url=http://test.image.myqcloud.com/testA.jpg\n&<公共请求参数>",
|
7
|
-
"output": "{\n \"Response\": {\n \"ImageWidth\":
|
7
|
+
"output": "{\n \"Response\": {\n \"ImageWidth\": 940,\n \"ImageHeight\": 930,\n \"DenseFaceShapeSet\": [\n {\n \"X\": 450,\n \"Y\": 230,\n \"Width\": 340,\n \"Height\": 540,\n \"LeftEye\": [\n {\n \"X\": 20,\n \"Y\": 40\n }\n ],\n \"RightEye\": [\n {\n \"X\": 80,\n \"Y\": 30\n }\n ],\n \"LeftEyeBrow\": [\n {\n \"X\": 94,\n \"Y\": 90\n }\n ]\n }\n ],\n \"FaceModelVersion\": \"3.0\",\n \"RequestId\": \"1219c74e7-698e-4ac2-8bc4-4c996cbdda8b\"\n }\n}",
|
8
8
|
"title": "稠密关键点接口"
|
9
9
|
}
|
10
10
|
],
|