Schema now lists all models including locally available models

New tool to list all models `listmodels`
Integration test to for all the different combinations of API keys
Tweaks to codereview prompt for a better quality input from Claude
Fixed missing 'low' severity in codereview
This commit is contained in:
Fahad
2025-06-16 19:07:35 +04:00
parent cb17582d8f
commit 70b64adff3
10 changed files with 822 additions and 24 deletions

View File

@@ -6,6 +6,7 @@ from .analyze import AnalyzeTool
from .chat import ChatTool
from .codereview import CodeReviewTool
from .debug import DebugIssueTool
from .listmodels import ListModelsTool
from .precommit import Precommit
from .refactor import RefactorTool
from .testgen import TestGenerationTool
@@ -18,6 +19,7 @@ __all__ = [
"DebugIssueTool",
"AnalyzeTool",
"ChatTool",
"ListModelsTool",
"Precommit",
"RefactorTool",
"TestGenerationTool",