tavily-python 0.7.16__tar.gz → 0.7.17__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tavily_python-0.7.16 → tavily_python-0.7.17}/PKG-INFO +1 -1
- {tavily_python-0.7.16 → tavily_python-0.7.17}/setup.py +1 -1
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/async_tavily.py +2 -2
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/tavily.py +2 -2
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/PKG-INFO +1 -1
- {tavily_python-0.7.16 → tavily_python-0.7.17}/LICENSE +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/README.md +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/setup.cfg +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/__init__.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/config.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/errors.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/hybrid_rag/__init__.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/hybrid_rag/hybrid_rag.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/utils.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/SOURCES.txt +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/dependency_links.txt +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/requires.txt +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/top_level.txt +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_crawl.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_errors.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_map.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_research.py +0 -0
- {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_search.py +0 -0
|
@@ -55,7 +55,7 @@ class AsyncTavilyClient:
|
|
|
55
55
|
async def _search(
|
|
56
56
|
self,
|
|
57
57
|
query: str,
|
|
58
|
-
search_depth: Literal["basic", "advanced"] = None,
|
|
58
|
+
search_depth: Literal["basic", "advanced", "fast", "ultra-fast"] = None,
|
|
59
59
|
topic: Literal["general", "news", "finance"] = None,
|
|
60
60
|
time_range: Literal["day", "week", "month", "year"] = None,
|
|
61
61
|
start_date: str = None,
|
|
@@ -132,7 +132,7 @@ class AsyncTavilyClient:
|
|
|
132
132
|
|
|
133
133
|
async def search(self,
|
|
134
134
|
query: str,
|
|
135
|
-
search_depth: Literal["basic", "advanced"] = None,
|
|
135
|
+
search_depth: Literal["basic", "advanced", "fast", "ultra-fast"] = None,
|
|
136
136
|
topic: Literal["general", "news", "finance"] = None,
|
|
137
137
|
time_range: Literal["day", "week", "month", "year"] = None,
|
|
138
138
|
start_date: str = None,
|
|
@@ -37,7 +37,7 @@ class TavilyClient:
|
|
|
37
37
|
|
|
38
38
|
def _search(self,
|
|
39
39
|
query: str,
|
|
40
|
-
search_depth: Literal["basic", "advanced"] = None,
|
|
40
|
+
search_depth: Literal["basic", "advanced", "fast", "ultra-fast"] = None,
|
|
41
41
|
topic: Literal["general", "news", "finance"] = None,
|
|
42
42
|
time_range: Literal["day", "week", "month", "year"] = None,
|
|
43
43
|
start_date: str = None,
|
|
@@ -116,7 +116,7 @@ class TavilyClient:
|
|
|
116
116
|
|
|
117
117
|
def search(self,
|
|
118
118
|
query: str,
|
|
119
|
-
search_depth: Literal["basic", "advanced"] = None,
|
|
119
|
+
search_depth: Literal["basic", "advanced", "fast", "ultra-fast"] = None,
|
|
120
120
|
topic: Literal["general", "news", "finance" ] = None,
|
|
121
121
|
time_range: Literal["day", "week", "month", "year"] = None,
|
|
122
122
|
start_date: str = None,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|