mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
5537b1da79
* Bump ag-ui package version. Update CHANGELOG * Fix ag-ui bugs * Revert port test change * Cleanup * Intro factory funcs for samples * Revert package ver change
35 lines
1.0 KiB
JSON
35 lines
1.0 KiB
JSON
{
|
|
// Use IntelliSense to learn about possible attributes.
|
|
// Hover to view descriptions of existing attributes.
|
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Python Debugger: Current File",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"program": "${file}",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "AG-UI Examples Server",
|
|
"type": "debugpy",
|
|
"request": "launch",
|
|
"module": "agent_framework_ag_ui_examples",
|
|
"cwd": "${workspaceFolder}/packages/ag-ui",
|
|
"console": "integratedTerminal",
|
|
"justMyCode": false
|
|
},
|
|
{
|
|
"name": "Python Attach",
|
|
"type": "debugpy",
|
|
"request": "attach",
|
|
"connect": {
|
|
"host": "localhost",
|
|
"port": 5678
|
|
}
|
|
}
|
|
]
|
|
}
|