Update irmek_tools/irmek_search.py
Browse files
irmek_tools/irmek_search.py
CHANGED
|
@@ -1,9 +1,9 @@
|
|
| 1 |
from typing import Any, Optional
|
| 2 |
from smolagents.tools import Tool
|
| 3 |
|
| 4 |
-
class
|
| 5 |
-
name = "
|
| 6 |
-
description = "Provides the search results from
|
| 7 |
inputs = {'answer': {'type': 'any', 'description': 'The results'}}
|
| 8 |
output_type = "any"
|
| 9 |
|
|
|
|
| 1 |
from typing import Any, Optional
|
| 2 |
from smolagents.tools import Tool
|
| 3 |
|
| 4 |
+
class IrmekSearchTool(Tool):
|
| 5 |
+
name = "irmek_search"
|
| 6 |
+
description = "Provides the search results from medical database."
|
| 7 |
inputs = {'answer': {'type': 'any', 'description': 'The results'}}
|
| 8 |
output_type = "any"
|
| 9 |
|