tavily-python 0.7.0__tar.gz → 0.7.1__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 (20) hide show
  1. {tavily_python-0.7.0 → tavily_python-0.7.1}/PKG-INFO +1 -1
  2. {tavily_python-0.7.0 → tavily_python-0.7.1}/setup.py +1 -1
  3. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/async_tavily.py +4 -0
  4. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/tavily.py +4 -0
  5. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily_python.egg-info/PKG-INFO +1 -1
  6. {tavily_python-0.7.0 → tavily_python-0.7.1}/LICENSE +0 -0
  7. {tavily_python-0.7.0 → tavily_python-0.7.1}/README.md +0 -0
  8. {tavily_python-0.7.0 → tavily_python-0.7.1}/setup.cfg +0 -0
  9. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/__init__.py +0 -0
  10. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/config.py +0 -0
  11. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/errors.py +0 -0
  12. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/hybrid_rag/__init__.py +0 -0
  13. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/hybrid_rag/hybrid_rag.py +0 -0
  14. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily/utils.py +0 -0
  15. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily_python.egg-info/SOURCES.txt +0 -0
  16. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily_python.egg-info/dependency_links.txt +0 -0
  17. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily_python.egg-info/requires.txt +0 -0
  18. {tavily_python-0.7.0 → tavily_python-0.7.1}/tavily_python.egg-info/top_level.txt +0 -0
  19. {tavily_python-0.7.0 → tavily_python-0.7.1}/tests/test_async_search.py +0 -0
  20. {tavily_python-0.7.0 → tavily_python-0.7.1}/tests/test_sync_search.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tavily-python
3
- Version: 0.7.0
3
+ Version: 0.7.1
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.0',
8
+ version='0.7.1',
9
9
  url='https://github.com/tavily-ai/tavily-python',
10
10
  author='Tavily AI',
11
11
  author_email='support@tavily.com',
@@ -229,6 +229,7 @@ class AsyncTavilyClient:
229
229
  select_paths: Sequence[str] = None,
230
230
  select_domains: Sequence[str] = None,
231
231
  allow_external: bool = None,
232
+ include_images: bool = None,
232
233
  categories: Sequence[Literal["Documentation", "Blog", "About", "Contact", "Pricing",
233
234
  "Careers", "E-Commerce", "Developers", "Partners",
234
235
  "Downloads", "Media", "Events"]] = None,
@@ -249,6 +250,7 @@ class AsyncTavilyClient:
249
250
  "select_domains": select_domains,
250
251
  "allow_external": allow_external,
251
252
  "categories": categories,
253
+ "include_images": include_images,
252
254
  "extract_depth": extract_depth,
253
255
  }
254
256
 
@@ -290,6 +292,7 @@ class AsyncTavilyClient:
290
292
  select_paths: Sequence[str] = None,
291
293
  select_domains: Sequence[str] = None,
292
294
  allow_external: bool = None,
295
+ include_images: bool = None,
293
296
  categories: Sequence[Literal["Documentation", "Blog", "About", "Contact", "Pricing",
294
297
  "Careers", "E-Commerce", "Developers", "Partners",
295
298
  "Downloads", "Media", "Events"]] = None,
@@ -309,6 +312,7 @@ class AsyncTavilyClient:
309
312
  select_paths=select_paths,
310
313
  select_domains=select_domains,
311
314
  allow_external=allow_external,
315
+ include_images=include_images,
312
316
  categories=categories,
313
317
  extract_depth=extract_depth,
314
318
  timeout=timeout,
@@ -212,6 +212,7 @@ class TavilyClient:
212
212
  select_paths: Sequence[str] = None,
213
213
  select_domains: Sequence[str] = None,
214
214
  allow_external: bool = None,
215
+ include_images: bool = None,
215
216
  categories: Sequence[Literal["Documentation", "Blog", "About", "Contact", "Pricing",
216
217
  "Careers", "E-Commerce", "Developers", "Partners",
217
218
  "Downloads", "Media", "Events"]] = None,
@@ -231,6 +232,7 @@ class TavilyClient:
231
232
  "select_paths": select_paths,
232
233
  "select_domains": select_domains,
233
234
  "allow_external": allow_external,
235
+ "include_images": include_images,
234
236
  "categories": categories,
235
237
  "extract_depth": extract_depth,
236
238
  }
@@ -274,6 +276,7 @@ class TavilyClient:
274
276
  select_paths: Sequence[str] = None,
275
277
  select_domains: Sequence[str] = None,
276
278
  allow_external: bool = None,
279
+ include_images: bool = None,
277
280
  categories: Sequence[Literal["Documentation", "Blog", "About", "Contact", "Pricing",
278
281
  "Careers", "E-Commerce", "Developers", "Partners",
279
282
  "Downloads", "Media", "Events"]] = None,
@@ -293,6 +296,7 @@ class TavilyClient:
293
296
  select_paths=select_paths,
294
297
  select_domains=select_domains,
295
298
  allow_external=allow_external,
299
+ include_images=include_images,
296
300
  categories=categories,
297
301
  extract_depth=extract_depth,
298
302
  timeout=timeout,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tavily-python
3
- Version: 0.7.0
3
+ Version: 0.7.1
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