futurehouse-client 0.4.2.dev274__tar.gz → 0.4.3__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.
- {futurehouse_client-0.4.2.dev274/futurehouse_client.egg-info → futurehouse_client-0.4.3}/PKG-INFO +3 -1
- futurehouse_client-0.4.3/data_storage.md +706 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/docs/client_notebook.ipynb +3 -2
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/pyproject.toml +7 -2
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/clients/data_storage_methods.py +844 -127
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/clients/rest_client.py +110 -41
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/models/client.py +5 -1
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/models/data_storage_methods.py +24 -10
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/models/rest.py +39 -7
- futurehouse_client-0.4.3/src/futurehouse_client/utils/general.py +92 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/utils/world_model_tools.py +21 -2
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/version.py +3 -3
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src/futurehouse_client.egg-info}/PKG-INFO +3 -1
- futurehouse_client-0.4.3/src/futurehouse_client.egg-info/SOURCES.txt +36 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client.egg-info/requires.txt +2 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/tests/test_client.py +5 -4
- futurehouse_client-0.4.3/tests/test_data/test_file.txt +1 -0
- futurehouse_client-0.4.3/tests/test_data/test_information.txt +1 -0
- futurehouse_client-0.4.3/tests/test_data/test_manifest.yaml +6 -0
- futurehouse_client-0.4.3/tests/test_data_storage_e2e.py +509 -0
- futurehouse_client-0.4.3/tests/test_data_storage_methods.py +1591 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/tests/test_rest.py +100 -18
- futurehouse_client-0.4.2.dev274/futurehouse_client/utils/general.py +0 -63
- futurehouse_client-0.4.2.dev274/futurehouse_client.egg-info/SOURCES.txt +0 -30
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/LICENSE +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/README.md +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/docs/__init__.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3}/setup.cfg +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/__init__.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/clients/__init__.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/clients/job_client.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/models/__init__.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/models/app.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/py.typed +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/utils/__init__.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/utils/auth.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/utils/module_utils.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client/utils/monitoring.py +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client.egg-info/dependency_links.txt +0 -0
- {futurehouse_client-0.4.2.dev274 → futurehouse_client-0.4.3/src}/futurehouse_client.egg-info/top_level.txt +0 -0
{futurehouse_client-0.4.2.dev274/futurehouse_client.egg-info → futurehouse_client-0.4.3}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: futurehouse-client
|
3
|
-
Version: 0.4.
|
3
|
+
Version: 0.4.3
|
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
|
@@ -220,6 +220,7 @@ Requires-Dist: google-resumable-media[aiohttp]
|
|
220
220
|
Requires-Dist: httpx
|
221
221
|
Requires-Dist: ldp>=0.22.0
|
222
222
|
Requires-Dist: litellm
|
223
|
+
Requires-Dist: openai<1.100.0,>=1
|
223
224
|
Requires-Dist: pydantic
|
224
225
|
Requires-Dist: python-dotenv
|
225
226
|
Requires-Dist: requests
|
@@ -249,6 +250,7 @@ Provides-Extra: monitoring
|
|
249
250
|
Requires-Dist: newrelic>=8.8.0; extra == "monitoring"
|
250
251
|
Provides-Extra: typing
|
251
252
|
Requires-Dist: types-PyYAML; extra == "typing"
|
253
|
+
Requires-Dist: types-aiofiles; extra == "typing"
|
252
254
|
Requires-Dist: types-requests; extra == "typing"
|
253
255
|
Requires-Dist: types-tqdm; extra == "typing"
|
254
256
|
Dynamic: license-file
|