coderswap_search
Execute hybrid search queries against CoderSwap projects using DSL-powered ranking to find relevant code snippets and information from vector knowledge bases.
Instructions
Execute a hybrid search query against a CoderSwap project using DSL-powered ranking
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | ||
| query | Yes | ||
| top_k | No | ||
| snippet_length | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"minLength": 1,
"type": "string"
},
"query": {
"minLength": 1,
"type": "string"
},
"snippet_length": {
"default": 200,
"maximum": 1000,
"minimum": 50,
"type": "number"
},
"top_k": {
"default": 10,
"maximum": 50,
"minimum": 1,
"type": "number"
}
},
"required": [
"project_id",
"query"
],
"type": "object"
}