-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathconfig.ini
More file actions
51 lines (43 loc) · 1.38 KB
/
Copy pathconfig.ini
File metadata and controls
51 lines (43 loc) · 1.38 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
; General application settings
; Application settings
[App]
; Application name
app = visual studio code
; the path of the app data directory, which is used to store the "MetaData","Index","UserData" and others.
app_data_dir = ./AppSupports/SmartVscodeExtension/
; Model settings
[Models]
; build index for these embedding models separately
;enabled_embed_models = openai_embedding_config:text-embedding-3-small
enabled_embed_models = openai_embedding_config:text-embedding-3-small,qwen_embedding_config:text-embedding-v2
;enabled_embed_models = qwen_embedding_config:text-embedding-v2
; Server configuration
[Server]
http_port = 8085
TEST_SERVER_PORT = 3000
TEST_CLIENT_PORT = 5000
; Agents and other services
[Agents]
; enable the API call dependency
enable_api_dependency = true
; max thread count for the model response
model_response_thread_size = 20
[Index]
; the retrieve top k for the available API
api_retrieve_top_k = 5
; the retrieve top k for the knowledgeApi's knowledge
knowledge_retrieve_top_k = 5
[Scheduler]
; the max iteration count to finish the task
max_iteration_count = 10
; the max failed count to finish the task
max_failed_count = 2
; the max model wrong format count to finish the task
max_model_wrong_format_count = 2
; whether force continue the task when the task is failed
force_continue_task = false
[Message]
enable_stdout = true
[Test]
test_mode = true
session_time_out = 300