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.
Files changed (23) hide show
  1. {tavily_python-0.7.16 → tavily_python-0.7.17}/PKG-INFO +1 -1
  2. {tavily_python-0.7.16 → tavily_python-0.7.17}/setup.py +1 -1
  3. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/async_tavily.py +2 -2
  4. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/tavily.py +2 -2
  5. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/PKG-INFO +1 -1
  6. {tavily_python-0.7.16 → tavily_python-0.7.17}/LICENSE +0 -0
  7. {tavily_python-0.7.16 → tavily_python-0.7.17}/README.md +0 -0
  8. {tavily_python-0.7.16 → tavily_python-0.7.17}/setup.cfg +0 -0
  9. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/__init__.py +0 -0
  10. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/config.py +0 -0
  11. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/errors.py +0 -0
  12. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/hybrid_rag/__init__.py +0 -0
  13. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/hybrid_rag/hybrid_rag.py +0 -0
  14. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily/utils.py +0 -0
  15. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/SOURCES.txt +0 -0
  16. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/dependency_links.txt +0 -0
  17. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/requires.txt +0 -0
  18. {tavily_python-0.7.16 → tavily_python-0.7.17}/tavily_python.egg-info/top_level.txt +0 -0
  19. {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_crawl.py +0 -0
  20. {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_errors.py +0 -0
  21. {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_map.py +0 -0
  22. {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_research.py +0 -0
  23. {tavily_python-0.7.16 → tavily_python-0.7.17}/tests/test_search.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tavily-python
3
- Version: 0.7.16
3
+ Version: 0.7.17
4
4
  Summary: Python wrapper for the Tavily API
5
5
  Home-page: https://github.com/tavily-ai/tavily-python
6
6
  Author: Tavily AI
@@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
5
5
 
6
6
  setup(
7
7
  name='tavily-python',
8
- version='0.7.16',
8
+ version='0.7.17',
9
9
  url='https://github.com/tavily-ai/tavily-python',
10
10
  author='Tavily AI',
11
11
  author_email='support@tavily.com',
@@ -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,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tavily-python
3
- Version: 0.7.16
3
+ Version: 0.7.17
4
4
  Summary: Python wrapper for the Tavily API
5
5
  Home-page: https://github.com/tavily-ai/tavily-python
6
6
  Author: Tavily AI
File without changes
File without changes
File without changes