mirror of
https://github.com/bendtherules/opencode-multi-model.git
synced 2026-08-18 13:42:21 +00:00
feat: add launch configuration for multi-model sessions in VSCode
This commit is contained in:
Vendored
+25
@@ -0,0 +1,25 @@
|
||||
{
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Open Multi-Model Session",
|
||||
"runtimeExecutable": "bun",
|
||||
"program": "${workspaceFolder}/src/cli.ts",
|
||||
"args": ["open", "test/session1", "--models", "openai/gpt-5.2"],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"console": "integratedTerminal"
|
||||
},
|
||||
{
|
||||
"type": "node",
|
||||
"request": "launch",
|
||||
"name": "Close Multi-Model Session",
|
||||
"runtimeExecutable": "bun",
|
||||
"program": "${workspaceFolder}/src/cli.ts",
|
||||
"args": ["close", "test/session1"],
|
||||
"cwd": "${workspaceFolder}",
|
||||
"console": "integratedTerminal"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user