forked from IdeaSearch/ideasearch-fit-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi_keys.json.example
More file actions
52 lines (52 loc) · 1.24 KB
/
api_keys.json.example
File metadata and controls
52 lines (52 loc) · 1.24 KB
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
{
"Deepseek_V3": [
{
"api_key": "your-deepseek-api-key-here",
"base_url": "https://api.deepseek.com/v1",
"model": "deepseek-chat"
}
],
"Gemini_2.5_Flash": [
{
"api_key": "your-gemini-api-key-here",
"base_url": "https://generativelanguage.googleapis.com/v1beta",
"model": "gemini-2.0-flash-exp"
}
],
"Gemini_2.5_Pro": [
{
"api_key": "your-gemini-api-key-here",
"base_url": "https://generativelanguage.googleapis.com/v1beta",
"model": "gemini-2.0-pro-exp"
}
],
"Qwen_Plus": [
{
"api_key": "your-qwen-api-key-here",
"base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"model": "qwen-plus"
}
],
"Qwen_Max": [
{
"api_key": "your-qwen-api-key-here",
"base_url": "https://dashscope.aliyuncs.com/compatible-mode/v1",
"model": "qwen-max"
}
],
"GPT_4o": [
{
"api_key": "your-openai-api-key-here",
"base_url": "https://api.openai.com/v1",
"model": "gpt-4o"
}
],
"GPT_4o_Mini": [
{
"api_key": "your-openai-api-key-here",
"base_url": "https://api.openai.com/v1",
"model": "gpt-4o-mini"
}
],
"Comment": "如果使用第三方API代理,请修改 base_url"
}