We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 892a8da commit 10ae916Copy full SHA for 10ae916
agentstack/templates/crewai/tools/dir_search_tool.py
@@ -0,0 +1,25 @@
1
+from crewai_tools import DirectorySearchTool
2
+
3
+# dir_search_tool = DirectorySearchTool(
4
+# config=dict(
5
+# llm=dict(
6
+# provider="ollama",
7
8
+# model="llama2",
9
+# # temperature=0.5,
10
+# # top_p=1,
11
+# # stream=true,
12
+# ),
13
14
+# embedder=dict(
15
+# provider="google",
16
17
+# model="models/embedding-001",
18
+# task_type="retrieval_document",
19
+# # title="Embeddings",
20
21
22
+# )
23
24
25
+dir_search_tool = DirectorySearchTool()
agentstack/test/src/test/__init__.py
agentstack/tools/dir_search_tool.json
@@ -0,0 +1,6 @@
+{
+ "name": "dir_search_tool",
+ "package": "poetry add 'crewai[tools]'",
+ "env": "",
+ "tools": ["dir_search_tool"]
+}
0 commit comments