futurehouse-client 0.3.20.dev266__tar.gz → 0.3.20.dev411__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.3.20.dev266/futurehouse_client.egg-info → futurehouse_client-0.3.20.dev411}/PKG-INFO +6 -1
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/__init__.py +8 -0
- futurehouse_client-0.3.20.dev411/futurehouse_client/clients/data_storage_methods.py +1867 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/clients/rest_client.py +247 -33
- futurehouse_client-0.3.20.dev411/futurehouse_client/models/data_storage_methods.py +333 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/models/rest.py +15 -0
- futurehouse_client-0.3.20.dev411/futurehouse_client/utils/general.py +63 -0
- futurehouse_client-0.3.20.dev411/futurehouse_client/utils/world_model_tools.py +69 -0
- futurehouse_client-0.3.20.dev411/futurehouse_client/version.py +34 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411/futurehouse_client.egg-info}/PKG-INFO +6 -1
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client.egg-info/SOURCES.txt +3 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client.egg-info/requires.txt +5 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/pyproject.toml +5 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/tests/test_rest.py +5 -11
- futurehouse_client-0.3.20.dev266/futurehouse_client/utils/general.py +0 -29
- futurehouse_client-0.3.20.dev266/futurehouse_client/version.py +0 -21
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/LICENSE +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/README.md +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/docs/__init__.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/docs/client_notebook.ipynb +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/clients/__init__.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/clients/job_client.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/models/__init__.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/models/app.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/models/client.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/py.typed +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/utils/__init__.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/utils/auth.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/utils/module_utils.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/utils/monitoring.py +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client.egg-info/dependency_links.txt +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client.egg-info/top_level.txt +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/setup.cfg +0 -0
- {futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/tests/test_client.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: futurehouse-client
|
3
|
-
Version: 0.3.20.
|
3
|
+
Version: 0.3.20.dev411
|
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,22 @@ 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
|
221
223
|
Requires-Dist: pydantic
|
222
224
|
Requires-Dist: python-dotenv
|
225
|
+
Requires-Dist: requests
|
223
226
|
Requires-Dist: tenacity
|
224
227
|
Requires-Dist: tqdm>=4.62
|
225
228
|
Provides-Extra: dev
|
226
229
|
Requires-Dist: black; extra == "dev"
|
227
230
|
Requires-Dist: futurehouse-client[monitoring,typing]; extra == "dev"
|
231
|
+
Requires-Dist: ipykernel; extra == "dev"
|
228
232
|
Requires-Dist: jupyter; extra == "dev"
|
229
233
|
Requires-Dist: jupyterlab; extra == "dev"
|
230
234
|
Requires-Dist: mypy; extra == "dev"
|
@@ -244,6 +248,7 @@ Requires-Dist: setuptools_scm; extra == "dev"
|
|
244
248
|
Provides-Extra: monitoring
|
245
249
|
Requires-Dist: newrelic>=8.8.0; extra == "monitoring"
|
246
250
|
Provides-Extra: typing
|
251
|
+
Requires-Dist: types-PyYAML; extra == "typing"
|
247
252
|
Requires-Dist: types-requests; extra == "typing"
|
248
253
|
Requires-Dist: types-tqdm; extra == "typing"
|
249
254
|
Dynamic: license-file
|
{futurehouse_client-0.3.20.dev266 → futurehouse_client-0.3.20.dev411}/futurehouse_client/__init__.py
RENAMED
@@ -8,6 +8,11 @@ from .models.app import (
|
|
8
8
|
TaskResponse,
|
9
9
|
TaskResponseVerbose,
|
10
10
|
)
|
11
|
+
from .utils.world_model_tools import (
|
12
|
+
create_world_model_tool,
|
13
|
+
make_world_model_tools,
|
14
|
+
search_world_model_tool,
|
15
|
+
)
|
11
16
|
|
12
17
|
__all__ = [
|
13
18
|
"FinchTaskResponse",
|
@@ -19,4 +24,7 @@ __all__ = [
|
|
19
24
|
"TaskRequest",
|
20
25
|
"TaskResponse",
|
21
26
|
"TaskResponseVerbose",
|
27
|
+
"create_world_model_tool",
|
28
|
+
"make_world_model_tools",
|
29
|
+
"search_world_model_tool",
|
22
30
|
]
|