-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaliyun-full-page.png
More file actions
1954 lines (1951 loc) · 119 KB
/
Copy pathaliyun-full-page.png
File metadata and controls
1954 lines (1951 loc) · 119 KB
Download raw file
Open symbols panelEdit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
- generic [active] [ref=e1]:
- banner [ref=e2]:
- banner [ref=e6]:
- button "打开菜单" [ref=e7] [cursor=pointer]
- link [ref=e10] [cursor=pointer]:
- /url: https://www.aliyun.com/
- img [ref=e11]
- generic [ref=e15]:
- text:
- generic [ref=e16]:
- navigation:
- link "大模型" [ref=e17] [cursor=pointer]:
- /url: https://www.aliyun.com/product/tongyi
- link "产品" [ref=e18] [cursor=pointer]:
- /url: https://www.aliyun.com/product/list
- link "解决方案" [ref=e19] [cursor=pointer]:
- /url: https://www.aliyun.com/solution/tech-solution/
- link "权益" [ref=e20] [cursor=pointer]:
- /url: https://www.aliyun.com/benefit
- link "定价" [ref=e21] [cursor=pointer]:
- /url: https://www.aliyun.com/price
- link "云市场" [ref=e22] [cursor=pointer]:
- /url: https://market.aliyun.com/
- link "伙伴" [ref=e23] [cursor=pointer]:
- /url: https://partner.aliyun.com/management/v2
- link "服务" [ref=e24] [cursor=pointer]:
- /url: https://www.aliyun.com/service
- link "了解阿里云" [ref=e25] [cursor=pointer]:
- /url: https://www.aliyun.com/about
- button "" [ref=e26]:
- generic [ref=e27]:
- generic [ref=e33]:
- textbox "大模型" [ref=e691]
- button [ref=e36] [cursor=pointer]:
- img [ref=e37]:
- img [ref=e38]
- generic [ref=e41]:
- link [ref=e42] [cursor=pointer]:
- /url: https://www.aliyun.com/ai-assistant?displayMode=side
- img [ref=e45]
- button "" [ref=e46] [cursor=pointer]:
- generic [ref=e47]:
- button "" [ref=e48] [cursor=pointer]:
- generic [ref=e49]:
- link "文档" [ref=e50] [cursor=pointer]:
- /url: https://help.aliyun.com/
- link "备案" [ref=e51] [cursor=pointer]:
- /url: https://beian.aliyun.com/
- link "控制台" [ref=e52] [cursor=pointer]:
- /url: https://home.console.aliyun.com/home/dashboard/ProductAndService
- link "注册" [ref=e53] [cursor=pointer]:
- /url: https://account.aliyun.com/register/qr_register.htm?oauth_callback=https%3A%2F%2Fhelp.aliyun.com%2Fzh%2Fmodel-studio%2Fcoding-plan
- link "登录" [ref=e54] [cursor=pointer]:
- /url: https://account.aliyun.com/login/login.htm?oauth_callback=https%3A%2F%2Fhelp.aliyun.com%2Fzh%2Fmodel-studio%2Fcoding-plan
- generic [ref=e56]:
- generic [ref=e59]:
- generic [ref=e60]:
- link "官方文档" [ref=e61] [cursor=pointer]:
- /url: /
- generic [ref=e353] [cursor=pointer]:
- link "大模型服务平台百炼" [ref=e355]:
- /url: /zh/model-studio/
- img [ref=e357]:
- img [ref=e358]
- generic [ref=e62]:
- generic [ref=e363]:
- link "用户指南(模型)" [ref=e364] [cursor=pointer]:
- /url: /zh/model-studio/what-is-model-studio
- link "用户指南(应用)" [ref=e365] [cursor=pointer]:
- /url: /zh/model-studio/build-knowledge-base-qa-assistant-without-coding/
- link "API参考(模型)" [ref=e366] [cursor=pointer]:
- /url: /zh/model-studio/get-api-key
- link "API参考(应用)" [ref=e367] [cursor=pointer]:
- /url: /zh/model-studio/obtain-the-app-id-and-workspace-id
- generic [ref=e368]:
- img [ref=e370]:
- img [ref=e371]
- img [ref=e376] [cursor=pointer]:
- img [ref=e377]
- link " 有奖调研" [ref=e63] [cursor=pointer]:
- /url: https://survey.aliyun.com/apps/zhiliao/u72JLBHwp?ID=XX&WAY=1
- generic [ref=e64]:
- text: 有奖调研
- generic [ref=e68] [cursor=pointer]:
- generic [ref=e69]: 输入文档关键字查找
- generic [ref=e70]:
- generic [ref=e72]:
- navigation [ref=e73]:
- generic [ref=e77]:
- generic [ref=e80]:
- img [ref=e81]:
- img [ref=e82]
- textbox "在目录中筛选" [ref=e86]
- list [ref=e88]:
- listitem [ref=e381]:
- generic [ref=e382]: 开始使用
- list [ref=e383]:
- listitem [ref=e384]:
- link "产品简介" [ref=e385] [cursor=pointer]:
- /url: /zh/model-studio/what-is-model-studio
- generic [ref=e386]: 产品简介
- listitem [ref=e387]:
- link "首次调用千问API" [ref=e388] [cursor=pointer]:
- /url: /zh/model-studio/first-api-call-to-qwen
- generic [ref=e389]: 首次调用千问API
- listitem [ref=e390]:
- link "模型列表" [ref=e391] [cursor=pointer]:
- /url: /zh/model-studio/models
- generic [ref=e392]: 模型列表
- listitem [ref=e393]:
- link "限流" [ref=e394] [cursor=pointer]:
- /url: /zh/model-studio/rate-limit
- generic [ref=e395]: 限流
- listitem [ref=e396]:
- link "选择部署模式" [ref=e397] [cursor=pointer]:
- /url: /zh/model-studio/regions/
- generic [ref=e398]: 选择部署模式
- listitem [ref=e399]:
- generic [ref=e400]: 产品计费
- list [ref=e401]:
- listitem [ref=e402]:
- link "新人免费额度" [ref=e403] [cursor=pointer]:
- /url: /zh/model-studio/new-free-quota
- generic [ref=e404]: 新人免费额度
- listitem [ref=e405]:
- link "模型调用计费" [ref=e406] [cursor=pointer]:
- /url: /zh/model-studio/model-pricing
- generic [ref=e407]: 模型调用计费
- listitem [ref=e408]:
- link "模型训练与部署计费" [ref=e409] [cursor=pointer]:
- /url: /zh/model-studio/model-training-and-deployment-billing
- generic [ref=e410]: 模型训练与部署计费
- listitem [ref=e411]:
- link "节省计划与资源包" [ref=e412] [cursor=pointer]:
- /url: /zh/model-studio/savings-plan-and-resource-package
- generic [ref=e413]: 节省计划与资源包
- listitem [ref=e414]:
- link "账单查询与成本管理" [ref=e415] [cursor=pointer]:
- /url: /zh/model-studio/bill-query-and-cost-management
- generic [ref=e416]: 账单查询与成本管理
- listitem [ref=e417]:
- generic [ref=e418]: Coding Plan
- list [ref=e419]:
- listitem [ref=e420]:
- link "Coding Plan概述" [ref=e421] [cursor=pointer]:
- /url: /zh/model-studio/coding-plan
- generic [ref=e422]: Coding Plan概述
- listitem [ref=e423]:
- link "快速开始" [ref=e424] [cursor=pointer]:
- /url: /zh/model-studio/coding-plan-quickstart
- generic [ref=e425]: 快速开始
- listitem [ref=e426]:
- generic [ref=e427] [cursor=pointer]:
- generic [ref=e428]: 接入AI工具
- img [ref=e430]:
- img [ref=e431]
- listitem [ref=e435]:
- generic [ref=e436] [cursor=pointer]:
- generic [ref=e437]: 最佳实践
- img [ref=e439]:
- img [ref=e440]
- listitem [ref=e444]:
- link "常见问题" [ref=e445] [cursor=pointer]:
- /url: /zh/model-studio/coding-plan-faq
- generic [ref=e446]: 常见问题
- listitem [ref=e447]:
- generic [ref=e448]: 模型推理
- list [ref=e449]:
- listitem [ref=e450]:
- generic [ref=e451] [cursor=pointer]:
- generic [ref=e452]: 文本生成
- img [ref=e454]:
- img [ref=e455]
- listitem [ref=e459]:
- generic [ref=e460] [cursor=pointer]:
- generic [ref=e461]: 全模态
- img [ref=e463]:
- img [ref=e464]
- listitem [ref=e468]:
- generic [ref=e469] [cursor=pointer]:
- generic [ref=e470]: 语音合成
- img [ref=e472]:
- img [ref=e473]
- listitem [ref=e477]:
- generic [ref=e478] [cursor=pointer]:
- generic [ref=e479]: 语音识别
- img [ref=e481]:
- img [ref=e482]
- listitem [ref=e486]:
- generic [ref=e487] [cursor=pointer]:
- generic [ref=e488]: 语音翻译
- img [ref=e490]:
- img [ref=e491]
- listitem [ref=e495]:
- generic [ref=e496] [cursor=pointer]:
- generic [ref=e497]: 图像生成
- img [ref=e499]:
- img [ref=e500]
- listitem [ref=e504]:
- generic [ref=e505] [cursor=pointer]:
- generic [ref=e506]: 视频生成
- img [ref=e508]:
- img [ref=e509]
- listitem [ref=e513]:
- link "文本与多模态向量化" [ref=e514] [cursor=pointer]:
- /url: /zh/model-studio/embedding
- generic [ref=e515]: 文本与多模态向量化
- listitem [ref=e516]:
- generic [ref=e517]: 接入客户端/开发工具
- list [ref=e518]:
- listitem [ref=e519]:
- link "Chatbox" [ref=e520] [cursor=pointer]:
- /url: /zh/model-studio/chatbox
- generic [ref=e521]: Chatbox
- listitem [ref=e522]:
- link "Cherry Studio" [ref=e523] [cursor=pointer]:
- /url: /zh/model-studio/cherry-studio
- generic [ref=e524]: Cherry Studio
- listitem [ref=e525]:
- link "Claude Code" [ref=e526] [cursor=pointer]:
- /url: /zh/model-studio/claude-code
- generic [ref=e527]: Claude Code
- listitem [ref=e528]:
- link "Cline" [ref=e529] [cursor=pointer]:
- /url: /zh/model-studio/cline
- generic [ref=e530]: Cline
- listitem [ref=e531]:
- link "Cursor" [ref=e532] [cursor=pointer]:
- /url: /zh/model-studio/cursor
- generic [ref=e533]: Cursor
- listitem [ref=e534]:
- link "Dify" [ref=e535] [cursor=pointer]:
- /url: /zh/model-studio/dify
- generic [ref=e536]: Dify
- listitem [ref=e537]:
- link "Kilo CLI" [ref=e538] [cursor=pointer]:
- /url: /zh/model-studio/kilo-cli
- generic [ref=e539]: Kilo CLI
- listitem [ref=e540]:
- link "OpenClaw(原 Clawdbot/Moltbot)" [ref=e541] [cursor=pointer]:
- /url: /zh/model-studio/openclaw
- generic [ref=e542]: OpenClaw(原 Clawdbot/Moltbot)
- listitem [ref=e543]:
- link "OpenCode" [ref=e544] [cursor=pointer]:
- /url: /zh/model-studio/opencode
- generic [ref=e545]: OpenCode
- listitem [ref=e546]:
- link "Postman" [ref=e547] [cursor=pointer]:
- /url: /zh/model-studio/first-call-to-image-and-video-api
- generic [ref=e548]: Postman
- listitem [ref=e549]:
- link "Qwen Code" [ref=e550] [cursor=pointer]:
- /url: /zh/model-studio/qwen-code
- generic [ref=e551]: Qwen Code
- listitem [ref=e552]:
- generic [ref=e553]: 模型调优
- list [ref=e554]:
- listitem [ref=e555]:
- generic [ref=e556] [cursor=pointer]:
- generic [ref=e557]: 文本生成模型调优
- img [ref=e559]:
- img [ref=e560]
- listitem [ref=e564]:
- link "视频生成模型调优" [ref=e565] [cursor=pointer]:
- /url: /zh/model-studio/wan-video-generation-finetune-guide
- generic [ref=e566]: 视频生成模型调优
- listitem [ref=e567]:
- generic [ref=e568]: 模型部署
- list [ref=e569]:
- listitem [ref=e570]:
- link "模型部署简介" [ref=e571] [cursor=pointer]:
- /url: /zh/model-studio/model-deployment-introduction
- generic [ref=e572]: 模型部署简介
- listitem [ref=e573]:
- link "模型导入" [ref=e574] [cursor=pointer]:
- /url: /zh/model-studio/model-import
- generic [ref=e575]: 模型导入
- listitem [ref=e576]:
- link "使用 API 进行模型部署" [ref=e577] [cursor=pointer]:
- /url: /zh/model-studio/model-deployment-quick-start
- generic [ref=e578]: 使用 API 进行模型部署
- listitem [ref=e579]:
- generic [ref=e580]: 模型评测
- list [ref=e581]:
- listitem [ref=e582]:
- link "模型评测" [ref=e583] [cursor=pointer]:
- /url: /zh/model-studio/model-evaluation-overview
- generic [ref=e584]: 模型评测
- listitem [ref=e585]:
- generic [ref=e586]: 用量统计与性能监控
- list [ref=e587]:
- listitem [ref=e588]:
- link "模型用量" [ref=e589] [cursor=pointer]:
- /url: /zh/model-studio/model-usage-statistics
- generic [ref=e590]: 模型用量
- listitem [ref=e591]:
- link "模型监控" [ref=e592] [cursor=pointer]:
- /url: /zh/model-studio/model-telemetry/
- generic [ref=e593]: 模型监控
- listitem [ref=e594]:
- generic [ref=e595]: 模型数据
- list [ref=e596]:
- listitem [ref=e597]:
- link "训练集与评测集" [ref=e598] [cursor=pointer]:
- /url: /zh/model-studio/training-set-and-evaluation-set
- generic [ref=e599]: 训练集与评测集
- listitem [ref=e600]:
- link "数据清洗或增强" [ref=e601] [cursor=pointer]:
- /url: /zh/model-studio/data-processing
- generic [ref=e602]: 数据清洗或增强
- listitem [ref=e603]:
- generic [ref=e604]: 安全合规
- list [ref=e605]:
- listitem [ref=e606]:
- link "权限管理" [ref=e607] [cursor=pointer]:
- /url: /zh/model-studio/permission-management-overview
- generic [ref=e608]: 权限管理
- listitem [ref=e609]:
- generic [ref=e610] [cursor=pointer]:
- generic [ref=e611]: 传输安全
- img [ref=e613]:
- img [ref=e614]
- listitem [ref=e618]:
- generic [ref=e619] [cursor=pointer]:
- generic [ref=e620]: 安全存储
- img [ref=e622]:
- img [ref=e623]
- listitem [ref=e627]:
- link "内容审核" [ref=e628] [cursor=pointer]:
- /url: /zh/model-studio/content-security
- generic [ref=e629]: 内容审核
- listitem [ref=e630]:
- link "应用合规备案" [ref=e631] [cursor=pointer]:
- /url: /zh/model-studio/compliance-and-launch-filing-guide-for-ai-apps-powered-by-the-tongyi-model
- generic [ref=e632]: 应用合规备案
- listitem [ref=e633]:
- link "隐私说明" [ref=e634] [cursor=pointer]:
- /url: /zh/model-studio/privacy-notice
- generic [ref=e635]: 隐私说明
- listitem [ref=e636]:
- generic [ref=e637]: 实践教程
- list [ref=e638]:
- listitem [ref=e639]:
- link "文生文Prompt指南" [ref=e640] [cursor=pointer]:
- /url: /zh/model-studio/prompt-engineering-guide
- generic [ref=e641]: 文生文Prompt指南
- listitem [ref=e642]:
- link "文生图Prompt指南" [ref=e643] [cursor=pointer]:
- /url: /zh/model-studio/text-to-image-prompt
- generic [ref=e644]: 文生图Prompt指南
- listitem [ref=e645]:
- link "文生视频/图生视频Prompt指南" [ref=e646] [cursor=pointer]:
- /url: /zh/model-studio/text-to-video-prompt
- generic [ref=e647]: 文生视频/图生视频Prompt指南
- listitem [ref=e648]:
- link "基于LlamaIndex构建RAG应用" [ref=e649] [cursor=pointer]:
- /url: /zh/model-studio/build-rag-applications-based-on-llamaindex
- generic [ref=e650]: 基于LlamaIndex构建RAG应用
- listitem [ref=e651]:
- link "10分钟构建主动提问的智能导购" [ref=e652] [cursor=pointer]:
- /url: /zh/model-studio/create-an-ai-shopping-assistant
- generic [ref=e653]: 10分钟构建主动提问的智能导购
- listitem [ref=e654]:
- link "用Assistant API构建Multi-Agent" [ref=e655] [cursor=pointer]:
- /url: /zh/model-studio/use-multi-agent-to-query-alibaba-cloud-resource-information
- generic [ref=e656]: 用Assistant API构建Multi-Agent
- listitem [ref=e657]:
- link "自定义模型最佳实践" [ref=e658] [cursor=pointer]:
- /url: /zh/model-studio/model-training-best-practices
- generic [ref=e659]: 自定义模型最佳实践
- listitem [ref=e660]:
- link "借助大模型将文档转换为视频" [ref=e661] [cursor=pointer]:
- /url: /zh/model-studio/use-llm-to-convert-document-to-video
- generic [ref=e662]: 借助大模型将文档转换为视频
- listitem [ref=e663]:
- generic [ref=e664]: 服务支持
- list [ref=e665]:
- listitem [ref=e666]:
- link "常见问题" [ref=e667] [cursor=pointer]:
- /url: /zh/model-studio/faq-about-alibaba-cloud-model-studio
- generic [ref=e668]: 常见问题
- listitem [ref=e669]:
- link "相关协议" [ref=e670] [cursor=pointer]:
- /url: /zh/model-studio/related-agreements
- generic [ref=e671]: 相关协议
- listitem [ref=e672]:
- generic [ref=e673]: 产品动态
- list [ref=e674]:
- listitem [ref=e675]:
- link "模型上下架与更新" [ref=e676] [cursor=pointer]:
- /url: /zh/model-studio/newly-released-models
- generic [ref=e677]: 模型上下架与更新
- listitem [ref=e678]:
- link "模型平台功能更新" [ref=e679] [cursor=pointer]:
- /url: /zh/model-studio/model-release-notes
- generic [ref=e680]: 模型平台功能更新
- main [ref=e101]:
- generic [ref=e102]:
- generic [ref=e103]:
- generic [ref=e104]:
- generic [ref=e107]:
- link "首页" [ref=e108] [cursor=pointer]:
- /url: /
- generic [ref=e109]:
- generic [ref=e111]:
- link "大模型服务平台百炼" [ref=e112] [cursor=pointer]:
- /url: /zh/model-studio/
- generic [ref=e113]:
- generic [ref=e115]:
- link "Coding Plan" [ref=e116] [cursor=pointer]:
- /url: /zh/model-studio/coding-plan-guide/
- generic [ref=e117]:
- generic [ref=e119]:
- text: Coding Plan概述
- generic [ref=e120]:
- heading "Coding Plan概述" [level=1] [ref=e121]
- generic [ref=e122]:
- generic [ref=e124]: 更新时间:2026-03-02 11:14:39
- generic [ref=e125]:
- generic [ref=e127] [cursor=pointer]:
- img [ref=e128]:
- img [ref=e129]
- text: 复制为 MD 格式
- link "产品详情" [ref=e135] [cursor=pointer]:
- /url: https://www.aliyun.com/product/bailian
- generic [ref=e136]:
- generic "收藏本文档" [ref=e137] [cursor=pointer]:
- generic [ref=e138]:
- link "我的收藏" [ref=e139] [cursor=pointer]:
- /url: /my_favorites.html
- generic [ref=e140]:
- main [ref=e143]:
- paragraph [ref=e144]:
- text: 阿里云百炼 Coding Plan 整合了千问、GLM、Kimi 、MiniMax
- text: 顶级模型,并兼容主流
- text: AI
- text: 编程工具。其折算成本远低于常规 API 调用,且通过固定月费模式有效防范了欠费风险。
- generic [ref=e145]:
- generic [ref=e146]:
- heading "快速开始" [level=2] [ref=e147]
- paragraph [ref=e148]:
- text: 访问
- link "Coding Plan 页面" [ref=e150] [cursor=pointer]:
- /url: https://bailian.console.aliyun.com/cn-beijing/?tab=model#/efm/coding_plan
- text: 即可订阅并获取
- text: Coding Plan
- generic [ref=e151]:
- text: 专属
- text: API Key
- text: ,详情使用方法请参考
- link "快速开始" [ref=e152] [cursor=pointer]:
- /url: https://help.aliyun.com/zh/model-studio/coding-plan-quickstart
- text: 。
- generic [ref=e153]:
- heading "套餐详情" [level=2] [ref=e154]
- table [ref=e156]:
- rowgroup [ref=e160]:
- row "Lite 基础套餐(首月¥ 7.9) Pro 高级套餐(首月¥ 39.9)" [ref=e161]:
- cell [ref=e162]:
- paragraph
- cell "Lite 基础套餐(首月¥ 7.9)" [ref=e163]:
- paragraph [ref=e164]: Lite 基础套餐(首月¥ 7.9)
- cell "Pro 高级套餐(首月¥ 39.9)" [ref=e165]:
- paragraph [ref=e166]: Pro 高级套餐(首月¥ 39.9)
- row "支持的模型 推荐模型:qwen3.5-plus(支持图片理解)、kimi-k2.5(支持图片理解)、glm-5、MiniMax-M2.5 更多模型:qwen3-max-2026-01-23、qwen3-coder-next、qwen3-coder-plus、glm-4.7" [ref=e167]:
- cell "支持的模型" [ref=e168]:
- paragraph [ref=e169]: 支持的模型
- cell "推荐模型:qwen3.5-plus(支持图片理解)、kimi-k2.5(支持图片理解)、glm-5、MiniMax-M2.5 更多模型:qwen3-max-2026-01-23、qwen3-coder-next、qwen3-coder-plus、glm-4.7" [ref=e170]:
- paragraph [ref=e171]: 推荐模型:qwen3.5-plus(支持图片理解)、kimi-k2.5(支持图片理解)、glm-5、MiniMax-M2.5
- paragraph [ref=e172]: 更多模型:qwen3-max-2026-01-23、qwen3-coder-next、qwen3-coder-plus、glm-4.7
- row "价格 首月¥ 7.9 次月续费¥ 20(5 折) 第三个月起¥ 40/月 首月¥ 39.9 次月续费¥ 100(5 折) 第三个月起¥ 200/月" [ref=e173]:
- cell "价格" [ref=e174]:
- paragraph [ref=e175]: 价格
- cell "首月¥ 7.9 次月续费¥ 20(5 折) 第三个月起¥ 40/月" [ref=e176]:
- list [ref=e177]:
- listitem [ref=e178]:
- paragraph [ref=e179]: 首月¥ 7.9
- listitem [ref=e180]:
- paragraph [ref=e181]:
- text: 次月续费¥ 20(5
- text: 折)
- listitem [ref=e182]:
- paragraph [ref=e183]: 第三个月起¥ 40/月
- cell "首月¥ 39.9 次月续费¥ 100(5 折) 第三个月起¥ 200/月" [ref=e184]:
- list [ref=e185]:
- listitem [ref=e186]:
- paragraph [ref=e187]: 首月¥ 39.9
- listitem [ref=e188]:
- paragraph [ref=e189]:
- text: 次月续费¥ 100(5
- text: 折)
- listitem [ref=e190]:
- paragraph [ref=e191]: 第三个月起¥ 200/月
- row "用量限制 每 5 小时 1,200 次请求 每周 9,000 次请求 每月 18,000 次请求 每 5 小时 6,000 次请求 每周 45,000 次请求 每月 90,000 次请求" [ref=e192]:
- cell "用量限制" [ref=e193]:
- paragraph [ref=e194]: 用量限制
- cell "每 5 小时 1,200 次请求 每周 9,000 次请求 每月 18,000 次请求" [ref=e195]:
- list [ref=e196]:
- listitem [ref=e197]:
- paragraph [ref=e198]:
- text: 每 5 小时
- text: 1,200 次请求
- listitem [ref=e199]:
- paragraph [ref=e200]:
- text: 每周
- text: 9,000 次请求
- listitem [ref=e201]:
- paragraph [ref=e202]:
- text: 每月
- text: 18,000 次请求
- cell "每 5 小时 6,000 次请求 每周 45,000 次请求 每月 90,000 次请求" [ref=e203]:
- list [ref=e204]:
- listitem [ref=e205]:
- paragraph [ref=e206]:
- text: 每 5 小时
- text: 6,000 次请求
- listitem [ref=e207]:
- paragraph [ref=e208]:
- text: 每周
- text: 45,000 次请求
- listitem [ref=e209]:
- paragraph [ref=e210]:
- text: 每月
- text: 90,000 次请求
- list [ref=e211]:
- listitem [ref=e212]:
- paragraph [ref=e213]: 首购和首次续费优惠,仅面向阿里云百炼 Coding Plan 新用户(首次购买),活动时间为 2026.02.19 23:00 - 2026.04.01 00:00(UTC+8)。
- listitem [ref=e214]:
- paragraph [ref=e215]:
- text: 首次升级套餐(Lite 至 Pro)享 2 折优惠,升级费用为:(Pro
- text: 原价 - Lite
- text: 原价)× 剩余天数/套餐总天数 × 20%,以页面价格为准。活动时间为 2026.02.28 10:00 - 2026.04.01 00:00(UTC+8)。
- listitem [ref=e216]:
- paragraph [ref=e217]:
- text: 额度消耗:单次提问将按实际“模型调用次数”扣除额度。简单任务约消耗 5-10 次,复杂任务约 10-30+ 次,实际消耗受任务难度、上下文及工具使用影响。在
- link "Coding Plan 页面" [ref=e219] [cursor=pointer]:
- /url: https://bailian.console.aliyun.com/cn-beijing/?tab=model#/efm/coding_plan
- text: 可以查看用量。
- heading "订阅前须知" [level=2] [ref=e220]
- paragraph [ref=e221]: Coding Plan 服务不支持退款。因此在订阅前请知悉以下重要内容:
- list [ref=e222]:
- listitem [ref=e223]:
- paragraph [ref=e224]: 订阅账号限制:仅限阿里云主账号订阅,不支持 RAM 用户。
- listitem [ref=e225]:
- paragraph [ref=e226]: 严禁 API 调用:仅限在编程工具(如 Claude Code、OpenClaw 等)中使用,禁止以 API 调用的形式用于自动化脚本、自定义应用程序后端或任何非交互式批量调用场景。将套餐 API Key 用于允许范围之外的调用将被视为违规或滥用,可能会导致订阅被暂停或 API Key 被封禁。
- listitem [ref=e227]:
- paragraph [ref=e228]:
- text: 数据使用授权:使用 Coding Plan 期间,模型输入以及模型生成的内容将用于服务改进与模型优化。停止使用 Coding Plan 服务可终止后续数据授权,但终止授权的范围不涵盖已授权使用的 Coding Plan 数据。详细条款请参见
- link "阿里云百炼服务协议" [ref=e229] [cursor=pointer]:
- /url: https://terms.alicdn.com/legal-agreement/terms/common_platform_service/20230728213935489/20230728213935489.html?spm=5176.28197581.0.0.16e829a4HTC9FE
- text: 第 5.2 条。
- generic [ref=e681]:
- link "上一篇:账单查询与成本管理" [ref=e683] [cursor=pointer]:
- /url: /zh/model-studio/bill-query-and-cost-management
- generic [ref=e684]:
- text: 上一篇:账单查询与成本管理
- link "下一篇:快速开始" [ref=e686] [cursor=pointer]:
- /url: /zh/model-studio/coding-plan-quickstart
- text: 下一篇:快速开始
- generic [ref=e687]:
- generic [ref=e231]:
- generic [ref=e232]: 该文章对您有帮助吗?
- generic [ref=e234]:
- button "" [ref=e235] [cursor=pointer]:
- generic [ref=e236]:
- button "" [ref=e237] [cursor=pointer]:
- generic [ref=e238]:
- button "反馈" [ref=e239] [cursor=pointer]:
- generic [ref=e240]:
- text: 反馈
- list [ref=e243]:
- listitem [ref=e244]: 本页导读 (1)
- generic [ref=e245]:
- generic [ref=e247]:
- listitem [ref=e248]
- listitem [ref=e249] [cursor=pointer]: 快速开始
- generic [ref=e251]:
- listitem [ref=e252]
- listitem [ref=e253] [cursor=pointer]: 套餐详情
- generic [ref=e255]:
- listitem [ref=e256]
- listitem [ref=e257] [cursor=pointer]: 订阅前须知
- contentinfo [ref=e259]:
- contentinfo "PC 端页尾" [ref=e262]:
- generic [ref=e263]:
- generic [ref=e264]:
- navigation "页脚导航" [ref=e265]:
- generic [ref=e266]:
- heading "为什么选择阿里云" [level=3] [ref=e267]
- link "什么是云计算" [ref=e268] [cursor=pointer]:
- /url: https://www.aliyun.com/about/what-is-cloud-computing
- link "全球基础设施" [ref=e269] [cursor=pointer]:
- /url: https://infrastructure.aliyun.com/
- link "技术领先" [ref=e270] [cursor=pointer]:
- /url: https://www.aliyun.com/why-us/leading-technology
- link "稳定可靠" [ref=e271] [cursor=pointer]:
- /url: https://www.aliyun.com/why-us/reliability
- link "安全合规" [ref=e272] [cursor=pointer]:
- /url: https://www.aliyun.com/why-us/security-compliance
- link "分析师报告" [ref=e273] [cursor=pointer]:
- /url: https://www.aliyun.com/analyst-reports
- generic [ref=e274]:
- heading "大模型" [level=3] [ref=e275]
- link "通义大模型" [ref=e276] [cursor=pointer]:
- /url: https://www.aliyun.com/product/tongyi
- link "大模型服务" [ref=e277] [cursor=pointer]:
- /url: https://bailian.console.aliyun.com/?tab=model#/model-market
- link "AI应用构建" [ref=e278] [cursor=pointer]:
- /url: https://bailian.console.aliyun.com/app-center?tab=app#/app-center
- generic [ref=e279]:
- heading "产品和定价" [level=3] [ref=e280]
- link "全部产品" [ref=e281] [cursor=pointer]:
- /url: https://www.aliyun.com/product/list
- link "免费试用" [ref=e282] [cursor=pointer]:
- /url: https://free.aliyun.com/
- link "产品动态" [ref=e283] [cursor=pointer]:
- /url: https://www.aliyun.com/product/news/
- link "产品定价" [ref=e284] [cursor=pointer]:
- /url: https://www.aliyun.com/price/detail
- link "配置报价器" [ref=e285] [cursor=pointer]:
- /url: https://www.aliyun.com/price/cpq/list
- link "云上成本管理" [ref=e286] [cursor=pointer]:
- /url: https://www.aliyun.com/price/cost-management
- generic [ref=e287]:
- heading "技术内容" [level=3] [ref=e288]
- link "技术解决方案" [ref=e289] [cursor=pointer]:
- /url: https://www.aliyun.com/solution/tech-solution
- link "帮助文档" [ref=e290] [cursor=pointer]:
- /url: https://help.aliyun.com/
- link "开发者社区" [ref=e291] [cursor=pointer]:
- /url: https://developer.aliyun.com/
- link "天池大赛" [ref=e292] [cursor=pointer]:
- /url: https://tianchi.aliyun.com/
- link "阿里云认证" [ref=e293] [cursor=pointer]:
- /url: https://edu.aliyun.com/
- generic [ref=e294]:
- heading "权益" [level=3] [ref=e295]
- link "免费试用" [ref=e296] [cursor=pointer]:
- /url: https://free.aliyun.com/
- link "解决方案免费试用" [ref=e297] [cursor=pointer]:
- /url: https://www.aliyun.com/solution/free
- link "高校计划" [ref=e298] [cursor=pointer]:
- /url: https://university.aliyun.com/
- link "5亿算力补贴" [ref=e299] [cursor=pointer]:
- /url: https://www.aliyun.com/benefit/form/index
- link "推荐返现计划" [ref=e300] [cursor=pointer]:
- /url: https://dashi.aliyun.com/?ambRef=shouYeDaoHang2&pageCode=yunparterIndex
- generic [ref=e301]:
- heading "服务" [level=3] [ref=e302]
- link "基础服务" [ref=e303] [cursor=pointer]:
- /url: https://www.aliyun.com/service
- link "企业增值服务" [ref=e304] [cursor=pointer]:
- /url: https://www.aliyun.com/service/supportplans
- link "迁云服务" [ref=e305] [cursor=pointer]:
- /url: https://www.aliyun.com/service/devopsimpl/devopsimpl_cloudmigration_public_cn
- link "官网公告" [ref=e306] [cursor=pointer]:
- /url: https://www.aliyun.com/notice/
- link "健康看板" [ref=e307] [cursor=pointer]:
- /url: https://status.aliyun.com/
- link "信任中心" [ref=e308] [cursor=pointer]:
- /url: https://security.aliyun.com/trust-center
- article [ref=e309]:
- heading "关注阿里云" [level=3] [ref=e310]
- paragraph [ref=e311]: 关注阿里云公众号或下载阿里云APP,关注云资讯,随时随地运维管控云服务
- img "阿里云APP" [ref=e312]
- img "阿里云微信" [ref=e313]
- paragraph [ref=e314]: 联系我们:4008013260
- generic [ref=e315]:
- link "法律声明" [ref=e316] [cursor=pointer]:
- /url: https://help.aliyun.com/product/67275.html
- link "Cookies政策" [ref=e317] [cursor=pointer]:
- /url: https://terms.alicdn.com/legal-agreement/terms/platform_service/20220906101446934/20220906101446934.html
- link "廉正举报" [ref=e318] [cursor=pointer]:
- /url: https://aliyun.jubao.alibaba.com/
- link "安全举报" [ref=e319] [cursor=pointer]:
- /url: https://report.aliyun.com/
- link "联系我们" [ref=e320] [cursor=pointer]:
- /url: https://www.aliyun.com/contact
- link "加入我们" [ref=e321] [cursor=pointer]:
- /url: https://careers.aliyun.com/
- generic [ref=e322]:
- link "阿里巴巴集团" [ref=e323] [cursor=pointer]:
- /url: https://www.alibabagroup.com/cn/global/home
- link "淘宝网" [ref=e324] [cursor=pointer]:
- /url: https://www.taobao.com/
- link "天猫" [ref=e325] [cursor=pointer]:
- /url: https://www.tmall.com/
- link "全球速卖通" [ref=e326] [cursor=pointer]:
- /url: https://www.aliexpress.com/
- link "阿里巴巴国际交易市场" [ref=e327] [cursor=pointer]:
- /url: https://www.alibaba.com/
- link "1688" [ref=e328] [cursor=pointer]:
- /url: https://www.1688.com/
- link "阿里妈妈" [ref=e329] [cursor=pointer]:
- /url: https://www.alimama.com/index.htm
- link "飞猪" [ref=e330] [cursor=pointer]:
- /url: https://www.fliggy.com/
- link "阿里云计算" [ref=e331] [cursor=pointer]:
- /url: https://www.aliyun.com/
- link "万网" [ref=e332] [cursor=pointer]:
- /url: https://wanwang.aliyun.com/
- link "高德" [ref=e333] [cursor=pointer]:
- /url: https://mobile.amap.com/
- link "UC" [ref=e334] [cursor=pointer]:
- /url: https://www.uc.cn/
- link "友盟" [ref=e335] [cursor=pointer]:
- /url: https://www.umeng.com/
- link "优酷" [ref=e336] [cursor=pointer]:
- /url: https://www.youku.com/
- link "钉钉" [ref=e337] [cursor=pointer]:
- /url: https://www.dingtalk.com/
- link "支付宝" [ref=e338] [cursor=pointer]:
- /url: https://www.alipay.com/
- link "达摩院" [ref=e339] [cursor=pointer]:
- /url: https://damo.alibaba.com/
- link "淘宝海外" [ref=e340] [cursor=pointer]:
- /url: https://world.taobao.com/
- link "阿里云盘" [ref=e341] [cursor=pointer]:
- /url: https://www.aliyundrive.com/
- link "淘宝闪购" [ref=e342] [cursor=pointer]:
- /url: https://www.ele.me/
- paragraph [ref=e343]:
- text: © 2009-现在 Aliyun.com 版权所有 增值电信业务经营许可证:
- link "浙B2-20080101" [ref=e344] [cursor=pointer]:
- /url: http://beian.miit.gov.cn/
- text: 域名注册服务机构许可:
- link "浙D3-20210002" [ref=e345] [cursor=pointer]:
- /url: "https://domain.miit.gov.cn/域名注册服务机构/互联网域名/阿里云计算有限公司 "
- paragraph [ref=e346]:
- link [ref=e347] [cursor=pointer]:
- /url: https://zzlz.gsxt.gov.cn/businessCheck/verifKey.do?showType=p&serial=91330106673959654P-SAIC_SHOW_10000091330106673959654P1710919400712&signData=MEUCIQDEkCd8cK7%2Fyqe6BNMWvoMPtAnsgKa7FZetfPkjZMsvhAIgOX1G9YC6FKyndE7o7hL0KaBVn4f%20V%2Fiof3iAgpsV09o%3D
- link "浙公网安备 33010602009975号 浙公网安备 33010602009975号" [ref=e348] [cursor=pointer]:
- /url: http://www.beian.gov.cn/portal/registerSystemInfo
- img "浙公网安备 33010602009975号" [ref=e349]
- text: 浙公网安备 33010602009975号
- link "浙B2-20080101-4" [ref=e350] [cursor=pointer]:
- /url: https://beian.miit.gov.cn/
- generic:
- generic:
- generic:
- generic:
- generic:
- heading "大模型" [level=3]:
- link "大模型":
- /url: https://www.aliyun.com/product/tongyi
- text: 大模型
- generic:
- paragraph: 一站式为企业和开发者提供大模型能力体系,大模型原生应用以及最佳解决方案,助力云上开发者轻松完成 AI 落地。
- generic:
- generic:
- generic:
- generic:
- generic:
- link "AI 体验馆 免费体验前沿 AI 应用和最新通义系列大模型,开启智能创新":
- /url: https://www.aliyun.com/exp/
- heading "AI 体验馆" [level=4]:
- text: AI 体验馆
- generic:
- paragraph: 免费体验前沿 AI 应用和最新通义系列大模型,开启智能创新
- generic:
- link "大模型服务平台百炼 为企业打造的大模型服务与应用开发平台":
- /url: https://www.aliyun.com/product/bailian
- heading "大模型服务平台百炼" [level=4]:
- text: 大模型服务平台百炼
- generic:
- paragraph: 为企业打造的大模型服务与应用开发平台
- generic:
- generic:
- generic:
- heading "通义大模型 更强效果、更高性能、更优价格 " [level=4]:
- link "通义大模型 更强效果、更高性能、更优价格 ":
- /url: https://www.aliyun.com/product/tongyi
- text: 通义大模型
- generic: 更强效果、更高性能、更优价格
- generic:
- generic:
- generic:
- link "通义万相2.6-图生视频 NEW 支持15秒长视频,支持智能分镜叙事":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/vision?currentTab=videoGenerate&modelId=wan2.6-i2v
- heading "通义万相2.6-图生视频 NEW" [level=5]:
- text: 通义万相2.6-图生视频
- emphasis: NEW
- paragraph: 支持15秒长视频,支持智能分镜叙事
- link "通义百聆-Fun-ASR NEW 支持中英文自由切换,具备更强的噪声鲁棒性":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/voice?currentTab=voiceAsr&modelId=fun-asr-realtime
- heading "通义百聆-Fun-ASR NEW" [level=5]:
- text: 通义百聆-Fun-ASR
- emphasis: NEW
- paragraph: 支持中英文自由切换,具备更强的噪声鲁棒性
- link "通义千问3-VL-Plus 视觉 Coding、空间感知、多模态思考等全面升级":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/vision?currentTab=imageComprehend&modelId=qwen3-vl-plus
- heading "通义千问3-VL-Plus" [level=5]
- paragraph: 视觉 Coding、空间感知、多模态思考等全面升级
- generic:
- link "通义万相2.6-文生视频 NEW 保持主体、场景和氛围一致性,更高品质的声音生成":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/vision?currentTab=videoGenerate&modelId=wan2.6-t2v
- heading "通义万相2.6-文生视频 NEW" [level=5]:
- text: 通义万相2.6-文生视频
- emphasis: NEW
- paragraph: 保持主体、场景和氛围一致性,更高品质的声音生成
- link "通义千问3-Omni-Flash 支持 119 种语言文本交互和 20 种语言语音交互":
- /url: https://bailian.console.aliyun.com/?tab=model#/model-market/detail/qwen3-omni-flash
- heading "通义千问3-Omni-Flash" [level=5]
- paragraph: 支持 119 种语言文本交互和 20 种语言语音交互
- link "通义千问3 Qwen3 最强 235B 旗舰版重磅升级,通用能力显著提升":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/text?currentTab=textChat&modelId=qwen3-235b-a22b-instruct-2507
- heading "通义千问3" [level=5]
- paragraph: Qwen3 最强 235B 旗舰版重磅升级,通用能力显著提升
- generic:
- link "通义万相2.6-文生图 NEW 更自然的真实感人像、支持万能文化IP主题库":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/vision?currentTab=imageGenerate&modelId=wan2.6-t2i
- heading "通义万相2.6-文生图 NEW" [level=5]:
- text: 通义万相2.6-文生图
- emphasis: NEW
- paragraph: 更自然的真实感人像、支持万能文化IP主题库
- link "通义千问-Image 通义千问系列首个图像生成模型,具备卓越的文本渲染能力":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/vision?currentTab=imageGenerate&modelId=qwen-image
- heading "通义千问-Image" [level=5]
- paragraph: 通义千问系列首个图像生成模型,具备卓越的文本渲染能力
- link "通义千问3-Coder 基于 Qwen3 的代码生成模型,具有强大的 Coding Agent 能力":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/text?currentTab=textChat&modelId=qwen3-coder-plus
- heading "通义千问3-Coder" [level=5]
- paragraph: 基于 Qwen3 的代码生成模型,具有强大的 Coding Agent 能力
- generic:
- link "通义千问3-Max HOT 达到领域 SOTA 水平,适配更复杂场景的智能体需求":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/text?currentTab=textChat&modelId=qwen3-max
- heading "通义千问3-Max HOT" [level=5]:
- text: 通义千问3-Max
- emphasis: HOT
- paragraph: 达到领域 SOTA 水平,适配更复杂场景的智能体需求
- link "通义千问-Plus Qwen-Plus-Latest 升级 Qwen3系列":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/text?currentTab=textChat&modelId=qwen-plus
- heading "通义千问-Plus" [level=5]
- paragraph: Qwen-Plus-Latest 升级 Qwen3系列
- link "通义千问-Flash Qwen3 系列 Flash 模型,实现思考和非思考模式有效融合":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_experience_center/text?currentTab=textChat&modelId=qwen-flash
- heading "通义千问-Flash" [level=5]
- paragraph: Qwen3 系列 Flash 模型,实现思考和非思考模式有效融合
- generic:
- generic:
- generic:
- heading "大模型服务" [level=4]:
- link "大模型服务":
- /url: https://bailian.console.aliyun.com/?tab=model#/model-market
- text: 大模型服务
- generic:
- generic:
- generic:
- link "大模型服务平台百炼 - 模型体验 在线体验全尺寸、多种模态的模型效果":
- /url: https://bailian.console.aliyun.com/?tab=demohouse#/experience/llm
- heading "大模型服务平台百炼 - 模型体验" [level=5]
- paragraph: 在线体验全尺寸、多种模态的模型效果
- link "大模型服务平台百炼 - 微调与部署 一站式大模型服务平台,支持界面化微调与部署":
- /url: https://bailian.console.aliyun.com/?tab=model#/efm/model_manager
- heading "大模型服务平台百炼 - 微调与部署" [level=5]
- paragraph: 一站式大模型服务平台,支持界面化微调与部署
- link "人工智能平台 PAI AI Native 的算法工程平台,一站式完成建模、训练、推理服务部署":
- /url: https://www.aliyun.com/product/bigdata/learn
- heading "人工智能平台 PAI" [level=5]
- paragraph: AI Native 的算法工程平台,一站式完成建模、训练、推理服务部署
- generic:
- heading "AI 应用构建" [level=4]:
- link "AI 应用构建":
- /url: https://bailian.console.aliyun.com/?tab=app#/app-center
- text: AI 应用构建
- generic:
- generic:
- generic:
- link "大模型服务平台百炼-应用模版 NEW 丰富多元化的应用模版和解决方案":
- /url: https://bailian.console.aliyun.com/?tab=app#/app-market/newTemplate
- heading "大模型服务平台百炼-应用模版 NEW" [level=5]:
- text: 大模型服务平台百炼-应用模版
- emphasis: NEW
- paragraph: 丰富多元化的应用模版和解决方案
- link "大模型服务平台百炼-MCP服务 NEW 全生命周期MCP托管和应用服务":
- /url: https://bailian.console.aliyun.com/?tab=mcp#/mcp-market
- heading "大模型服务平台百炼-MCP服务 NEW" [level=5]:
- text: 大模型服务平台百炼-MCP服务
- emphasis: NEW
- paragraph: 全生命周期MCP托管和应用服务
- link "大模型服务平台百炼-智能体 灵活可视化地构建企业级 Agent":
- /url: https://bailian.console.aliyun.com/?tab=app#/app-center
- heading "大模型服务平台百炼-智能体" [level=5]
- paragraph: 灵活可视化地构建企业级 Agent
- generic:
- heading "大模型原生应用" [level=4]
- generic:
- generic:
- link "通义灵码 智能编码助手,支持企业专属部署":
- /url: https://www.aliyun.com/product/lingma
- heading "通义灵码" [level=5]
- paragraph: 智能编码助手,支持企业专属部署
- link "通义星尘 类人智能体/数字分身创作平台":
- /url: https://tongyi.aliyun.com/xingchen/
- heading "通义星尘" [level=5]
- paragraph: 类人智能体/数字分身创作平台
- link "大模型服务平台百炼 - 全妙 多模态内容创作工具,已接入 DeepSeek":
- /url: https://bailian.aliyun.com/quanmiao?from=bailian#/home
- heading "大模型服务平台百炼 - 全妙" [level=5]
- paragraph: 多模态内容创作工具,已接入 DeepSeek
- generic:
- link "通义听悟 智能会议助手,实时转写会议记录,支持搜索定位":
- /url: https://tongyi.aliyun.com/tingwu
- heading "通义听悟" [level=5]
- paragraph: 智能会议助手,实时转写会议记录,支持搜索定位
- link "通义晓蜜 智能客服平台,对话机器人、对话分析、智能外呼":
- /url: https://tongyi.aliyun.com/xiaomi
- heading "通义晓蜜" [level=5]
- paragraph: 智能客服平台,对话机器人、对话分析、智能外呼
- link "大模型服务平台百炼 - 通义法睿 法律智能助手,支持合同审查、法律咨询与检索、智能阅卷等":
- /url: https://tongyi.aliyun.com/farui/home
- heading "大模型服务平台百炼 - 通义法睿" [level=5]
- paragraph: 法律智能助手,支持合同审查、法律咨询与检索、智能阅卷等
- generic:
- generic:
- generic:
- heading "大模型解决方案" [level=4]
- generic:
- generic:
- link "快速部署 Dify,高效搭建 AI 应用 依托云原生高可用架构,实现Dify私有化部署":
- /url: https://www.aliyun.com/solution/tech-solution/rapidly-deploy-dify-to-accelerate-ai-application-development
- heading "快速部署 Dify,高效搭建 AI 应用" [level=5]
- paragraph: 依托云原生高可用架构,实现Dify私有化部署
- link "10 分钟在聊天系统中增加一个 AI 助手 在企业官网、通讯软件中为客户提供 AI 客服":
- /url: https://www.aliyun.com/solution/tech-solution/build-a-chatbot-for-your-website-or-chat-system
- heading "10 分钟在聊天系统中增加一个 AI 助手" [level=5]
- paragraph: 在企业官网、通讯软件中为客户提供 AI 客服
- generic:
- link "即刻拥有 DeepSeek-R1 满血版 多种方案随心选,轻松解锁专属 DeepSeek":
- /url: https://www.aliyun.com/solution/tech-solution/deepseek-r1-for-platforms
- heading "即刻拥有 DeepSeek-R1 满血版" [level=5]
- paragraph: 多种方案随心选,轻松解锁专属 DeepSeek
- link "与 AI 智能体进行实时音视频通话 构建支持视频理解的 AI 音视频实时通话应用":
- /url: https://www.aliyun.com/solution/tech-solution/real-time-interaction
- heading "与 AI 智能体进行实时音视频通话" [level=5]
- paragraph: 构建支持视频理解的 AI 音视频实时通话应用
- generic:
- link "10分钟微调:让0.6B模型媲美235B模型 用1%尺寸在特定领域达到大模型90%以上效果":
- /url: https://www.aliyun.com/solution/tech-solution/qwen3-distill
- heading "10分钟微调:让0.6B模型媲美235B模型" [level=5]
- paragraph: 用1%尺寸在特定领域达到大模型90%以上效果
- link "多模态数据信息提取 从文本、图片、视频中提取结构化的属性信息":
- /url: https://www.aliyun.com/solution/tech-solution/information-extraction
- heading "多模态数据信息提取" [level=5]
- paragraph: 从文本、图片、视频中提取结构化的属性信息
- generic:
- link "超强辅助,Bolt.diy 一步搞定创意建站 通过自然语言交互简化开发流程,全栈开发支持":
- /url: https://www.aliyun.com/solution/tech-solution/bolt-diy
- heading "超强辅助,Bolt.diy 一步搞定创意建站" [level=5]
- paragraph: 通过自然语言交互简化开发流程,全栈开发支持
- link "构建大模型应用的安全防护体系 通过阿里云安全产品对 AI 应用进行安全防护":
- /url: https://www.aliyun.com/solution/tech-solution/build-large-model-application-security-system
- heading "构建大模型应用的安全防护体系" [level=5]
- paragraph: 通过阿里云安全产品对 AI 应用进行安全防护
- generic:
- generic:
- heading "产品" [level=3]:
- link "产品":
- /url: https://www.aliyun.com/product/list
- text: 产品
- generic:
- generic:
- textbox "搜索云产品"
- generic:
- generic:
- generic:
- button "精选产品"
- link "计算":
- /url: https://www.aliyun.com/product/list/ecs
- text: 计算
- generic:
- link "容器":
- /url: https://www.aliyun.com/product/aliware/containerservice
- text: 容器
- generic:
- link "存储":
- /url: https://www.aliyun.com/storage/storage?spm=5176.19720258.J_2686872250.30.3f0e4ff6AwBQKs
- text: 存储
- generic:
- link "网络与CDN":
- /url: https://www.aliyun.com/product/network/network
- text: 网络与CDN
- generic:
- link "安全":
- /url: "https://www.aliyun.com/product/list/security "
- text: 安全
- generic:
- link "中间件":
- /url: https://www.aliyun.com/product/list/aliware
- text: 中间件
- generic:
- link "数据库":
- /url: https://www.aliyun.com/product/outline/index?spm=5176.19720258.J_2686872250.45.3f0e4ff6AwBQKs
- text: 数据库
- generic:
- link "大数据计算":
- /url: https://www.aliyun.com/product/bigdata/apsarabigdata
- text: 大数据计算
- generic:
- link "人工智能与机器学习":