feat: refactored and tweaked model descriptions / schema to use fewer tokens at launch (average reduction per field description: 60-80%) without sacrificing tool effectiveness

Disabled secondary tools by default (for new installations), updated README.md with instructions on how to enable these in .env
run-server.sh now displays disabled / enabled tools (when DISABLED_TOOLS is set)
This commit is contained in:
Fahad
2025-08-22 09:23:59 +04:00
parent 6921616db3
commit 4b202f5d1d
31 changed files with 409 additions and 609 deletions

View File

@@ -16,7 +16,7 @@ class TestSecauditTool:
tool = SecauditTool()
assert tool.get_name() == "secaudit"
assert "COMPREHENSIVE SECURITY AUDIT" in tool.get_description()
assert "security audit" in tool.get_description()
assert tool.get_default_temperature() == 0.2 # TEMPERATURE_ANALYTICAL
assert tool.get_model_category() == ToolModelCategory.EXTENDED_REASONING
assert tool.requires_model() is True
@@ -312,9 +312,9 @@ class TestSecauditTool:
# Verify field descriptions are comprehensive
assert "OWASP Top 10" in fields["step"]
assert "security implications" in fields["step"]
assert "threat vectors" in fields["step"]
assert "application context" in fields["security_scope"]
assert "OWASP Top 10" in fields["step"]
assert "MANDATORY" in fields["step"]
assert "Security context" in fields["security_scope"]
assert "threat level" in fields["threat_level"]
assert "compliance frameworks" in fields["compliance_requirements"]