exa-py 1.12.4__tar.gz → 1.12.5__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.

Files changed (24) hide show
  1. {exa_py-1.12.4 → exa_py-1.12.5}/PKG-INFO +1 -1
  2. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/core/base.py +1 -1
  3. {exa_py-1.12.4 → exa_py-1.12.5}/pyproject.toml +1 -1
  4. {exa_py-1.12.4 → exa_py-1.12.5}/README.md +0 -0
  5. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/__init__.py +0 -0
  6. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/api.py +0 -0
  7. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/py.typed +0 -0
  8. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/research/__init__.py +0 -0
  9. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/research/client.py +0 -0
  10. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/research/models.py +0 -0
  11. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/utils.py +0 -0
  12. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/__init__.py +0 -0
  13. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/_generator/pydantic/BaseModel.jinja2 +0 -0
  14. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/client.py +0 -0
  15. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/core/__init__.py +0 -0
  16. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/enrichments/__init__.py +0 -0
  17. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/enrichments/client.py +0 -0
  18. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/items/__init__.py +0 -0
  19. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/items/client.py +0 -0
  20. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/searches/__init__.py +0 -0
  21. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/searches/client.py +0 -0
  22. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/types.py +0 -0
  23. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/webhooks/__init__.py +0 -0
  24. {exa_py-1.12.4 → exa_py-1.12.5}/exa_py/websets/webhooks/client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: exa-py
3
- Version: 1.12.4
3
+ Version: 1.12.5
4
4
  Summary: Python SDK for Exa API.
5
5
  License: MIT
6
6
  Author: Exa AI
@@ -29,7 +29,7 @@ class ExaBaseModel(BaseModel):
29
29
  str_to_upper=False, # Don't convert strings to uppercase
30
30
  from_attributes=True, # Allow initialization from attributes
31
31
  validate_assignment=True, # Validate on assignment
32
- extra='forbid', # Forbid extra fields
32
+ extra='allow',
33
33
  json_encoders={AnyUrl: str} # Convert AnyUrl to string when serializing to JSON
34
34
  )
35
35
 
@@ -32,7 +32,7 @@ in-project = true
32
32
 
33
33
  [project]
34
34
  name = "exa-py"
35
- version = "1.12.4"
35
+ version = "1.12.5"
36
36
  description = "Python SDK for Exa API."
37
37
  readme = "README.md"
38
38
  requires-python = ">=3.9"
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes