File size: 1,804 Bytes
755dd12 |
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 |
import { IModelInfo } from '../interface';
// Search engine related. You don't really need to change this.
export const EndPoint = {
BING_SEARCH_V7_ENDPOINT: 'https://api.bing.microsoft.com/v7.0/search',
GOOGLE_SEARCH_ENDPOINT: 'https://www.googleapis.com/customsearch/v1'
};
export const BING_MKT = 'en-US';
// default timeout ms
export const DEFAULT_SEARCH_ENGINE_TIMEOUT = 20000;
// default search keywords
export const DefaultQuery = 'Who said \'live long and prosper';
export const DefaultSystem = 'You are a helpful assistant.';
export const Models: IModelInfo[] = [
{
platform: 'aliyun',
type: '',
models: ['qwen-max', 'qwen-max-0428', 'qwen-turbo', 'qwen-plus']
},
{
platform: 'openai',
type: 'openai',
models: ['gpt-4o', 'gpt-4o-mini', 'chatgpt-4o-latest', 'gpt-3.5-turbo', 'gpt-4-preview', 'gpt-4-turbo', 'gpt-4']
},
{
platform: 'baidu',
type: 'baidu',
models: ['eb-instant', 'completions_pro', 'ernie_bot_8k']
},
{
platform: 'google',
type: 'gemini',
models: ['gemini-1.0-pro', 'gemini-1.5-pro', 'gemini-1.5-flash']
},
{
platform: 'yi',
type: 'openai',
models: ['yi-large', 'yi-large-turbo', 'yi-medium', 'yi-spark']
},
{
platform: 'moonshot',
type: 'openai',
models: ['moonshot-v1-8k', 'moonshot-v1-32k', 'moonshot-v1-128k']
},
{
platform: 'lepton',
type: 'openai',
models: ['llama2-7b', 'llama2-13b', 'llama2-70b', 'mixtral-8*7b', 'mixtral-8*22b']
},
{
platform: 'deepseek',
type: 'openai',
models: ['deepseek-chat', 'deepseek-coder']
},
{
platform: 'chatglm',
type: 'openai',
models: ['glm-4', 'glm-4-plus', 'glm-4-air', 'glm-4-airx', 'glm-4-flash']
},
{
platform: 'tencent',
type: 'tencent',
models: ['std', 'pro']
}
];
|