-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.json
33 lines (33 loc) · 1010 Bytes
/
config.json
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
{
"data_raw": "./data/raw",
"data_cleaned": "./data/cleaned",
"data_processed": "./data/processed",
"data_ground_truth": "./data/ground_truth",
"visualizations": "./data/visualizations",
"artifacts": "./data/artifacts",
"example_svgs": "./resources/example_svgs",
"temp": "./temp",
"cache": "./data/cache",
"temp_cache": "./temp/cache",
"results": "./results",
"data": "./data",
"openai_api_key": "env:OPENAI_API_KEY",
"remote_storage_config": {
"key": "env:GOOGLE_STORAGE_KEY",
"secret": "env:GOOGLE_STORAGE_SECRET",
"bucket": "penpot",
"base_path": "",
"provider": "google_storage"
},
"api_keys": {
"openai": "env:OPENAI_API_KEY",
"anthropic": "env:ANTHROPIC_API_KEY",
"gemini": "env:GEMINI_API_KEY"
},
"penpot_backend": {
"user": "[email protected]",
"password": "env:PP_BACKEND_PASSWORD"
},
"llm_responses_cache_filename": "llm_responses_cache.sqlite",
"prompt_stylesheet": "./resources/styles/prompt_visualizer.css"
}