-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.config.json
More file actions
41 lines (41 loc) · 1.12 KB
/
Copy pathstack.config.json
File metadata and controls
41 lines (41 loc) · 1.12 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
{
"workingDir": "..",
"defaultEnvironment": "dev",
"voice": {
"enabled": true,
"stt_provider": "groq",
"stt_fallback": "openai",
"stt_model_groq": "whisper-large-v3-turbo",
"stt_model_openai": "gpt-4o-mini-transcribe",
"language": "en",
"env_file": ".stack/voice.env"
},
"environments": {
"dev": {
"label": "Dev",
"apiBaseUrl": "http://127.0.0.1:8000",
"authEnv": "SYNTH_API_KEY",
"authEnvFile": ".env",
"optimizerDbPath": ".stack/optimizers/gepa-service.sqlite",
"optimizerServiceUrl": "http://127.0.0.1:8879"
},
"staging": {
"label": "Staging",
"apiBaseUrl": "https://api-dev.usesynth.ai",
"authEnv": "SYNTH_API_KEY",
"authEnvFile": "../synth-ai/.env"
},
"prod": {
"label": "Prod",
"apiBaseUrl": "https://api.usesynth.ai",
"authEnv": "SYNTH_API_KEY"
}
},
"defaultHarness": "codex",
"codexModel": "gpt-5.5",
"codexReasoningEffort": "medium",
"cursorModel": "composer-2.5",
"codexSubagentsEnabled": true,
"codexSubagentModel": "gpt-5.4-mini",
"codexSubagentReasoningEffort": "medium"
}