File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "version": "0.2.0",
3+ "configurations": [
4+ {
5+ "name": "EP: Upload",
6+ "type": "python",
7+ "request": "launch",
8+ "module": "eval_protocol.cli",
9+ "args": ["upload"],
10+ "console": "integratedTerminal",
11+ "justMyCode": false,
12+ "cwd": "<REPLACE_WITH_YOUR_EVALUATOR_DIRECTORY>",
13+ "env": {
14+ "PYTHONPATH": "${workspaceFolder}",
15+ "FIREWORKS_API_KEY": "${env:FIREWORKS_API_KEY}",
16+ "FIREWORKS_BASE_URL": "${env:FIREWORKS_BASE_URL}",
17+ "FIREWORKS_EXTRA_HEADERS": "{\"x-api-key\": \"${env:FIREWORKS_API_KEY}\", \"X-Fireworks-Gateway-Secret\": \"${env:FIREWORKS_GATEWAY_SECRET}\"}"
18+ }
19+ },
20+ {
21+ "name": "EP: Local Test",
22+ "type": "python",
23+ "request": "launch",
24+ "module": "eval_protocol.cli",
25+ "args": ["local-test", "--ignore-docker"],
26+ "console": "integratedTerminal",
27+ "justMyCode": false,
28+ "cwd": "<REPLACE_WITH_YOUR_EVALUATOR_DIRECTORY>",
29+ "env": {
30+ "PYTHONPATH": "${workspaceFolder}",
31+ "FIREWORKS_API_KEY": "${env:FIREWORKS_API_KEY}",
32+ "FIREWORKS_BASE_URL": "${env:FIREWORKS_BASE_URL}",
33+ "FIREWORKS_EXTRA_HEADERS": "{\"x-api-key\": \"${env:FIREWORKS_API_KEY}\", \"X-Fireworks-Gateway-Secret\": \"${env:FIREWORKS_GATEWAY_SECRET}\"}"
34+ }
35+ }
36+ ]
37+ }
You can’t perform that action at this time.
0 commit comments