-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.config.json
More file actions
39 lines (39 loc) · 953 Bytes
/
Copy pathexample.config.json
File metadata and controls
39 lines (39 loc) · 953 Bytes
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
{
"provider": "google_drive",
"pipeline": "agentic",
"poll_interval": 300,
"google_drive": {
"folder_id": "YOUR_FOLDER_ID_HERE",
"oauth_client_secrets_file": "./credentials/client_secret.json",
"scopes": [
"https://www.googleapis.com/auth/drive.readonly"
]
},
"state": {
"path": "./state/processed.json"
},
"llm": {
"provider": "simple",
"prompt_path": "./prompts/orchestration.txt"
},
"markdown": {
"provider": "google_drive",
"directory": "./output",
"prompt_path": "./prompts/markdown.txt",
"google_drive": {
"folder_id": "YOUR_MARKDOWN_OUTPUT_FOLDER_ID",
"keep_local_copy": true
}
},
"mindmap": {
"prompt_path": "./prompts/mindmap.txt",
"keep_local_copy": true,
"google_drive": {
"folder_id": "YOUR_MINDMAP_OUTPUT_FOLDER_ID"
}
},
"agentic": {
"prompt_path": "./prompts/orchestration.txt",
"hashtags": ["mm", "mindmap"]
}
}