1
1
import { AIChatModelCard } from '@/types/aiModel' ;
2
2
3
3
const moonshotChatModels : AIChatModelCard [ ] = [
4
+ {
5
+ abilities : {
6
+ functionCall : true ,
7
+ vision : true ,
8
+ } ,
9
+ contextWindowTokens : 131_072 ,
10
+ description :
11
+ 'Kimi 智能助手产品使用最新的 Kimi 大模型,可能包含尚未稳定的特性。支持图片理解,同时会自动根据请求的上下文长度选择 8k/32k/128k 模型作为计费模型' ,
12
+ displayName : 'Kimi Latest' ,
13
+ enabled : true ,
14
+ id : 'kimi-latest' ,
15
+ pricing : {
16
+ cachedInput : 1 ,
17
+ currency : 'CNY' ,
18
+ input : 60 ,
19
+ output : 60 ,
20
+ } ,
21
+ releasedAt : '2025-02-17' ,
22
+ type : 'chat' ,
23
+ } ,
24
+ {
25
+ abilities : {
26
+ functionCall : true ,
27
+ } ,
28
+ contextWindowTokens : 131_072 ,
29
+ description :
30
+ 'Moonshot V1 Auto 可以根据当前上下文占用的 Tokens 数量来选择合适的模型' ,
31
+ displayName : 'Moonshot V1 Auto' ,
32
+ id : 'moonshot-v1-auto' ,
33
+ pricing : {
34
+ currency : 'CNY' ,
35
+ input : 60 ,
36
+ output : 60 ,
37
+ } ,
38
+ type : 'chat' ,
39
+ } ,
4
40
{
5
41
abilities : {
6
42
functionCall : true ,
@@ -9,7 +45,6 @@ const moonshotChatModels: AIChatModelCard[] = [
9
45
description :
10
46
'Moonshot V1 8K 专为生成短文本任务设计,具有高效的处理性能,能够处理8,192个tokens,非常适合简短对话、速记和快速内容生成。' ,
11
47
displayName : 'Moonshot V1 8K' ,
12
- enabled : true ,
13
48
id : 'moonshot-v1-8k' ,
14
49
pricing : {
15
50
currency : 'CNY' ,
@@ -26,7 +61,6 @@ const moonshotChatModels: AIChatModelCard[] = [
26
61
description :
27
62
'Moonshot V1 32K 提供中等长度的上下文处理能力,能够处理32,768个tokens,特别适合生成各种长文档和复杂对话,应用于内容创作、报告生成和对话系统等领域。' ,
28
63
displayName : 'Moonshot V1 32K' ,
29
- enabled : true ,
30
64
id : 'moonshot-v1-32k' ,
31
65
pricing : {
32
66
currency : 'CNY' ,
@@ -43,7 +77,6 @@ const moonshotChatModels: AIChatModelCard[] = [
43
77
description :
44
78
'Moonshot V1 128K 是一款拥有超长上下文处理能力的模型,适用于生成超长文本,满足复杂的生成任务需求,能够处理多达128,000个tokens的内容,非常适合科研、学术和大型文档生成等应用场景。' ,
45
79
displayName : 'Moonshot V1 128K' ,
46
- enabled : true ,
47
80
id : 'moonshot-v1-128k' ,
48
81
pricing : {
49
82
currency : 'CNY' ,
@@ -61,7 +94,6 @@ const moonshotChatModels: AIChatModelCard[] = [
61
94
description :
62
95
'Kimi 视觉模型(包括 moonshot-v1-8k-vision-preview/moonshot-v1-32k-vision-preview/moonshot-v1-128k-vision-preview 等)能够理解图片内容,包括图片文字、图片颜色和物体形状等内容。' ,
63
96
displayName : 'Moonshot V1 8K Vision Preview' ,
64
- enabled : true ,
65
97
id : 'moonshot-v1-8k-vision-preview' ,
66
98
pricing : {
67
99
currency : 'CNY' ,
@@ -80,7 +112,6 @@ const moonshotChatModels: AIChatModelCard[] = [
80
112
description :
81
113
'Kimi 视觉模型(包括 moonshot-v1-8k-vision-preview/moonshot-v1-32k-vision-preview/moonshot-v1-128k-vision-preview 等)能够理解图片内容,包括图片文字、图片颜色和物体形状等内容。' ,
82
114
displayName : 'Moonshot V1 32K Vision Preview' ,
83
- enabled : true ,
84
115
id : 'moonshot-v1-32k-vision-preview' ,
85
116
pricing : {
86
117
currency : 'CNY' ,
@@ -99,7 +130,6 @@ const moonshotChatModels: AIChatModelCard[] = [
99
130
description :
100
131
'Kimi 视觉模型(包括 moonshot-v1-8k-vision-preview/moonshot-v1-32k-vision-preview/moonshot-v1-128k-vision-preview 等)能够理解图片内容,包括图片文字、图片颜色和物体形状等内容。' ,
101
132
displayName : 'Moonshot V1 128K Vision Preview' ,
102
- enabled : true ,
103
133
id : 'moonshot-v1-128k-vision-preview' ,
104
134
pricing : {
105
135
currency : 'CNY' ,
0 commit comments