Skip to content

Commit c91a9e4

Browse files
committed
refactor: rename meta_tools to meta_search_tools files
Renamed files for consistency with function naming: - meta_tools.py -> meta_search_tools.py - meta_tools_example.py -> meta_search_tools_example.py - test_meta_tools.py -> test_meta_search_tools.py - Updated imports to use new module name
1 parent 4ef5486 commit c91a9e4

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

stackone_ai/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def meta_search_tools(self) -> "Tools":
491491
Note:
492492
This feature is in beta and may change in future versions
493493
"""
494-
from stackone_ai.meta_tools import (
494+
from stackone_ai.meta_search_tools import (
495495
ToolIndex,
496496
create_meta_search_tools_execute_tool,
497497
create_meta_search_tools_filter_tool,
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import responses
55

66
from stackone_ai import StackOneTool, Tools
7-
from stackone_ai.meta_tools import (
7+
from stackone_ai.meta_search_tools import (
88
ToolIndex,
99
create_meta_search_tools_execute_tool,
1010
create_meta_search_tools_filter_tool,

0 commit comments

Comments
 (0)