Files
MultiAgents/.vscode/settings.json
Ismael Sampaio 2aad4b8bf0 refactor:
- changed method get_agent_tools for only get_tools on agent interface
- changed OllamaModelManager to correc semantic OllamaService

test:
- added test for service initialization
- added tests to list tools and create tools into  PDF agent
2025-03-23 21:52:11 -03:00

21 lines
508 B
JSON

{
"python.testing.pytestEnabled": false,
"python.testing.unittestEnabled": true,
"python.analysis.extraPaths": [
"./src/service",
"./"
],
"python.testing.unittestArgs": [
"-v",
"-s",
"./test",
"-p",
"test_*.py",
"-t",
"./test"
],
"python.testing.autoTestDiscoverOnSavePattern": "test/**/test_*.py",
"python.envFile": "${workspaceFolder}/.env",
"python.testing.autoTestDiscoverOnSaveEnabled": true,
}