-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathconfig.example.json
More file actions
98 lines (98 loc) · 3.01 KB
/
Copy pathconfig.example.json
File metadata and controls
98 lines (98 loc) · 3.01 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"last_llm_config_name": "DeepSeek V4 Flash",
"last_interface_format": "DeepSeek",
"last_embedding_interface_format": "OpenAI",
"llm_configs": {
"DeepSeek V4 Flash": {
"api_key": "",
"base_url": "https://api.deepseek.com",
"model_name": "deepseek-v4-flash",
"temperature": 0.7,
"max_tokens": 8192,
"timeout": 600,
"interface_format": "DeepSeek"
},
"DeepSeek V4 Pro": {
"api_key": "",
"base_url": "https://api.deepseek.com",
"model_name": "deepseek-v4-pro",
"temperature": 0.7,
"max_tokens": 32768,
"timeout": 600,
"interface_format": "DeepSeek"
},
"Gemini 3.5 Flash": {
"api_key": "",
"base_url": "https://generativelanguage.googleapis.com/v1beta",
"model_name": "gemini-3.5-flash",
"temperature": 0.7,
"max_tokens": 32768,
"timeout": 600,
"interface_format": "Gemini"
},
"Gemini 3.1 Pro Preview": {
"api_key": "",
"base_url": "https://generativelanguage.googleapis.com/v1beta",
"model_name": "gemini-3.1-pro-preview",
"temperature": 0.7,
"max_tokens": 32768,
"timeout": 600,
"interface_format": "Gemini"
},
"OpenAI GPT 5.5": {
"api_key": "",
"base_url": "https://api.openai.com/v1",
"model_name": "gpt-5.5",
"temperature": 0.7,
"max_tokens": 32768,
"timeout": 600,
"interface_format": "OpenAI"
}
},
"embedding_configs": {
"OpenAI": {
"api_key": "",
"base_url": "https://api.openai.com/v1",
"model_name": "text-embedding-3-small",
"retrieval_k": 4,
"interface_format": "OpenAI"
},
"Gemini": {
"api_key": "",
"base_url": "https://generativelanguage.googleapis.com/v1beta",
"model_name": "gemini-embedding-2",
"retrieval_k": 4,
"interface_format": "Gemini"
}
},
"other_params": {
"topic": "",
"genre": "",
"num_chapters": 0,
"word_number": 0,
"filepath": "",
"chapter_num": "120",
"user_guidance": "",
"characters_involved": "",
"key_items": "",
"scene_location": "",
"time_constraint": ""
},
"choose_configs": {
"prompt_draft_llm": "DeepSeek V4 Flash",
"chapter_outline_llm": "Gemini 3.5 Flash",
"architecture_llm": "Gemini 3.5 Flash",
"final_chapter_llm": "DeepSeek V4 Pro",
"consistency_review_llm": "DeepSeek V4 Flash"
},
"proxy_setting": {
"proxy_url": "127.0.0.1",
"proxy_port": "",
"enabled": false
},
"webdav_config": {
"webdav_url": "",
"webdav_username": "",
"webdav_password": ""
}
}