exa-py 1.2.0__tar.gz → 1.2.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.
Potentially problematic release.
This version of exa-py might be problematic. Click here for more details.
- {exa_py-1.2.0 → exa_py-1.2.1}/PKG-INFO +1 -1
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py/api.py +1 -3
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py.egg-info/PKG-INFO +1 -1
- {exa_py-1.2.0 → exa_py-1.2.1}/setup.py +1 -1
- {exa_py-1.2.0 → exa_py-1.2.1}/README.md +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py/__init__.py +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py/py.typed +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py/utils.py +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py.egg-info/SOURCES.txt +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py.egg-info/dependency_links.txt +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py.egg-info/requires.txt +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/exa_py.egg-info/top_level.txt +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/pyproject.toml +0 -0
- {exa_py-1.2.0 → exa_py-1.2.1}/setup.cfg +0 -0
|
@@ -233,7 +233,6 @@ class _Result:
|
|
|
233
233
|
score: Optional[float] = None
|
|
234
234
|
published_date: Optional[str] = None
|
|
235
235
|
author: Optional[str] = None
|
|
236
|
-
image: Optional[str] = None
|
|
237
236
|
|
|
238
237
|
def __str__(self):
|
|
239
238
|
return (
|
|
@@ -243,7 +242,6 @@ class _Result:
|
|
|
243
242
|
f"Score: {self.score}\n"
|
|
244
243
|
f"Published Date: {self.published_date}\n"
|
|
245
244
|
f"Author: {self.author}\n"
|
|
246
|
-
f"Image: {self.image}\n"
|
|
247
245
|
)
|
|
248
246
|
|
|
249
247
|
|
|
@@ -468,7 +466,7 @@ class Exa:
|
|
|
468
466
|
self,
|
|
469
467
|
api_key: Optional[str],
|
|
470
468
|
base_url: str = "https://api.exa.ai",
|
|
471
|
-
user_agent: str = "exa-py 1.2.
|
|
469
|
+
user_agent: str = "exa-py 1.2.1",
|
|
472
470
|
):
|
|
473
471
|
"""Initialize the Exa client with the provided API key and optional base URL and user agent.
|
|
474
472
|
|
|
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
|