coderswap_validate_search
Test search quality and coverage by running validation queries to verify knowledge base search performance and identify gaps in content retrieval.
Instructions
Run validation queries to test search quality and coverage (non-DSL quality check)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| test_queries | No | ||
| run_full_suite | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"minLength": 1,
"type": "string"
},
"run_full_suite": {
"default": false,
"type": "boolean"
},
"test_queries": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"project_id"
],
"type": "object"
}