Update
Browse files- cardiology_search.json +19 -0
cardiology_search.json
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"name": "cardiology_search",
|
| 4 |
+
"description": "Search cardiology database containing EKG measurements, arrhythmia guidelines, cardiac physiology, heart failure management, and acute MI case studies.",
|
| 5 |
+
"type": "EmbeddingCollectionSearchTool",
|
| 6 |
+
"fields": {"collection": "cardiology_tutorial"},
|
| 7 |
+
"parameter": {
|
| 8 |
+
"type": "object",
|
| 9 |
+
"properties": {
|
| 10 |
+
"query": {"type": "string", "description": "Search query"},
|
| 11 |
+
"method": {"type": "string", "enum": ["keyword", "embedding", "hybrid"],
|
| 12 |
+
"default": "hybrid"},
|
| 13 |
+
"top_k": {"type": "integer", "default": 10},
|
| 14 |
+
"alpha": {"type": "number", "default": 0.5}
|
| 15 |
+
},
|
| 16 |
+
"required": ["query"]
|
| 17 |
+
}
|
| 18 |
+
}
|
| 19 |
+
]
|