File size: 597 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 |
import { aliyun } from './aliyun';
import { openai } from './openai';
import { baidu } from './baidu';
import { google } from './google';
import { tencent } from './tencent';
import { yi } from './yi';
import { moonshot } from './moonshot';
import { lepton } from './lepton';
import { deepseek } from './deepseek';
import { chatglm } from './chatglm';
import { ollama } from './ollama';
import { lmstudio } from './lmstudio';
const platform = {
aliyun,
openai,
baidu,
google,
tencent,
yi,
deepseek,
chatglm,
moonshot,
lepton,
ollama,
lmstudio
};
export default platform;
|