wujingjing
2024-12-13 d2da078b40578cf72901442c7a2b878dfc34cae5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export class VueFlowConstant {
    static GROUP_PARAMS_KEY = 'group_params';
    static PARAMS_KEY = 'params';
 
    static LLM_MODEL_LIST = [
        {
            label: 'gpt-3.5-turbo',
            value: 'gpt-3.5-turbo',
        },
        {
            label: 'gpt-4',
            value: 'gpt-4',
        },
        {
            label: 'gpt-4-32k',
            value: 'gpt-4-32k',
        },
        {
            label: 'gpt-4-turbo',
            value: 'gpt-4-turbo',
        },
    ];
}