futurehouse-client 0.4.2.dev11__tar.gz → 0.4.3.dev3__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 (39) hide show
  1. {futurehouse_client-0.4.2.dev11/futurehouse_client.egg-info → futurehouse_client-0.4.3.dev3}/PKG-INFO +8 -1
  2. futurehouse_client-0.4.3.dev3/data_storage.md +706 -0
  3. futurehouse_client-0.4.3.dev3/futurehouse_client/clients/data_storage_methods.py +2585 -0
  4. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/clients/job_client.py +50 -0
  5. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/clients/rest_client.py +148 -69
  6. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/models/__init__.py +2 -1
  7. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/models/client.py +5 -1
  8. futurehouse_client-0.4.3.dev3/futurehouse_client/models/data_storage_methods.py +355 -0
  9. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/models/rest.py +48 -7
  10. futurehouse_client-0.4.3.dev3/futurehouse_client/utils/general.py +92 -0
  11. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/utils/world_model_tools.py +21 -2
  12. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/version.py +3 -3
  13. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3/futurehouse_client.egg-info}/PKG-INFO +8 -1
  14. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client.egg-info/SOURCES.txt +9 -1
  15. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client.egg-info/requires.txt +7 -0
  16. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/pyproject.toml +7 -0
  17. futurehouse_client-0.4.3.dev3/tests/test_data/test_file.txt +1 -0
  18. futurehouse_client-0.4.3.dev3/tests/test_data/test_information.txt +1 -0
  19. futurehouse_client-0.4.3.dev3/tests/test_data/test_manifest.yaml +6 -0
  20. futurehouse_client-0.4.3.dev3/tests/test_data_storage_e2e.py +484 -0
  21. futurehouse_client-0.4.3.dev3/tests/test_data_storage_methods.py +1612 -0
  22. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/tests/test_rest.py +82 -3
  23. futurehouse_client-0.4.2.dev11/futurehouse_client/utils/general.py +0 -29
  24. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/LICENSE +0 -0
  25. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/README.md +0 -0
  26. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/docs/__init__.py +0 -0
  27. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/docs/client_notebook.ipynb +0 -0
  28. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/__init__.py +0 -0
  29. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/clients/__init__.py +0 -0
  30. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/models/app.py +0 -0
  31. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/py.typed +0 -0
  32. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/utils/__init__.py +0 -0
  33. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/utils/auth.py +0 -0
  34. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/utils/module_utils.py +0 -0
  35. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client/utils/monitoring.py +0 -0
  36. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client.egg-info/dependency_links.txt +0 -0
  37. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/futurehouse_client.egg-info/top_level.txt +0 -0
  38. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/setup.cfg +0 -0
  39. {futurehouse_client-0.4.2.dev11 → futurehouse_client-0.4.3.dev3}/tests/test_client.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: futurehouse-client
3
- Version: 0.4.2.dev11
3
+ Version: 0.4.3.dev3
4
4
  Summary: A client for interacting with endpoints of the FutureHouse service.
5
5
  Author-email: FutureHouse technical staff <hello@futurehouse.org>
6
6
  License: Apache License
@@ -213,18 +213,23 @@ Classifier: Programming Language :: Python
213
213
  Requires-Python: <3.14,>=3.11
214
214
  Description-Content-Type: text/markdown
215
215
  License-File: LICENSE
216
+ Requires-Dist: aiofiles
216
217
  Requires-Dist: cloudpickle
217
218
  Requires-Dist: fhaviary
219
+ Requires-Dist: google-resumable-media[aiohttp]
218
220
  Requires-Dist: httpx
219
221
  Requires-Dist: ldp>=0.22.0
220
222
  Requires-Dist: litellm
223
+ Requires-Dist: openai<1.100.0,>=1
221
224
  Requires-Dist: pydantic
222
225
  Requires-Dist: python-dotenv
226
+ Requires-Dist: requests
223
227
  Requires-Dist: tenacity
224
228
  Requires-Dist: tqdm>=4.62
225
229
  Provides-Extra: dev
226
230
  Requires-Dist: black; extra == "dev"
227
231
  Requires-Dist: futurehouse-client[monitoring,typing]; extra == "dev"
232
+ Requires-Dist: ipykernel; extra == "dev"
228
233
  Requires-Dist: jupyter; extra == "dev"
229
234
  Requires-Dist: jupyterlab; extra == "dev"
230
235
  Requires-Dist: mypy; extra == "dev"
@@ -244,6 +249,8 @@ Requires-Dist: setuptools_scm; extra == "dev"
244
249
  Provides-Extra: monitoring
245
250
  Requires-Dist: newrelic>=8.8.0; extra == "monitoring"
246
251
  Provides-Extra: typing
252
+ Requires-Dist: types-PyYAML; extra == "typing"
253
+ Requires-Dist: types-aiofiles; extra == "typing"
247
254
  Requires-Dist: types-requests; extra == "typing"
248
255
  Requires-Dist: types-tqdm; extra == "typing"
249
256
  Dynamic: license-file