mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
3449902b03
* added ChatClientBase with function calling * streaming update * fixed typing * test setup * small update * src setup * removed src, updated test naming * fixed test command * alolow args * updated test run * added unit test folder to azure * added init and unit test to azure * added other cross tests * restructured * reset test run * fix name * removed always * updated test * extend pytest.xml locations * run surface always * added decorators for FC and marked tests * fixed mypy settings and added tests * fix override import * removed import
41 lines
1.0 KiB
JSON
41 lines
1.0 KiB
JSON
{
|
|
"editor.formatOnType": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.formatOnPaste": true,
|
|
"editor.defaultFormatter": "charliermarsh.ruff",
|
|
"cSpell.languageSettings": [
|
|
{
|
|
"languageId": "py",
|
|
"allowCompoundWords": true,
|
|
"locale": "en-US"
|
|
}
|
|
],
|
|
"[python]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.organizeImports": "explicit",
|
|
"source.fixAll": "explicit"
|
|
},
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "charliermarsh.ruff"
|
|
},
|
|
"python.analysis.autoFormatStrings": true,
|
|
"python.analysis.importFormat": "relative",
|
|
"python.analysis.packageIndexDepths": [
|
|
{
|
|
"name": "agent_framework",
|
|
"depth": 2
|
|
},
|
|
{
|
|
"name": "extensions",
|
|
"depth": 2
|
|
},
|
|
{
|
|
"name": "openai",
|
|
"depth": 2
|
|
},
|
|
{
|
|
"name": "azure",
|
|
"depth": 2
|
|
}
|
|
]
|
|
} |