DrishtiSharma commited on
Commit
95978ec
·
verified ·
1 Parent(s): 7a37b79

Delete ref.txt

Browse files
Files changed (1) hide show
  1. ref.txt +0 -17
ref.txt DELETED
@@ -1,17 +0,0 @@
1
- When using the @tool decorator from langchain_core.tools, the function must either:
2
- - Have a docstring that describes what the tool does, or
3
- - Provide an explicit description parameter to the decorator.
4
-
5
- @tool
6
- def RAG(state):
7
- """Use this tool to execute RAG. If the question is related to Japan or Sports, this tool retrieves the results."""
8
-
9
-
10
- @tool(description="Use this tool to execute RAG. Retrieves results related to Japan or Sports.")
11
- def RAG(state):
12
-
13
-
14
-
15
-
16
- # Clear ChromaDB cache to fix tenant issue
17
- chromadb.api.client.SharedSystemClient.clear_system_cache()