futurehouse-client 0.4.4.dev1__py3-none-any.whl → 0.4.5.dev49__py3-none-any.whl

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.
@@ -779,6 +779,7 @@ class DataStorageMethods:
779
779
  ignore_patterns: list[str] | None = None,
780
780
  ignore_filename: str = ".gitignore",
781
781
  project_id: UUID | None = None,
782
+ tags: list[str] | None = None,
782
783
  ) -> DataStorageResponse:
783
784
  """Upload a directory as a single zip file collection.
784
785
 
@@ -790,6 +791,7 @@ class DataStorageMethods:
790
791
  ignore_patterns: List of patterns to ignore when zipping
791
792
  ignore_filename: Name of ignore file to read from directory
792
793
  project_id: ID of the project this data storage entry belongs to
794
+ tags: List of tags to associate with the data storage entry
793
795
 
794
796
  Returns:
795
797
  DataStorageResponse for the uploaded zip file
@@ -810,6 +812,7 @@ class DataStorageMethods:
810
812
  path=zip_gcs_path,
811
813
  is_collection=True,
812
814
  project_id=project_id,
815
+ tags=tags,
813
816
  )
814
817
 
815
818
  logger.debug(
@@ -859,6 +862,7 @@ class DataStorageMethods:
859
862
  ignore_patterns: list[str] | None = None,
860
863
  ignore_filename: str = ".gitignore",
861
864
  project_id: UUID | None = None,
865
+ tags: list[str] | None = None,
862
866
  ) -> DataStorageResponse:
863
867
  """Asynchronously upload a directory as a single zip file.
864
868
 
@@ -870,6 +874,7 @@ class DataStorageMethods:
870
874
  ignore_patterns: List of patterns to ignore when zipping
871
875
  ignore_filename: Name of ignore file to read from directory
872
876
  project_id: ID of the project this data storage entry belongs to
877
+ tags: List of tags to associate with the data storage entry
873
878
 
874
879
  Returns:
875
880
  DataStorageResponse for the uploaded zip file
@@ -890,6 +895,7 @@ class DataStorageMethods:
890
895
  path=zip_gcs_path,
891
896
  is_collection=True,
892
897
  project_id=project_id,
898
+ tags=tags,
893
899
  )
894
900
 
895
901
  data_storage_response = await self._acreate_data_storage_entry(payload)
@@ -151,6 +151,10 @@ class DataStorageRequestPayload(BaseModel):
151
151
  existing_location: DataStorageLocationPayload | None = Field(
152
152
  default=None, description="Target storage metadata"
153
153
  )
154
+ tags: list[str] | None = Field(
155
+ default=None,
156
+ description="List of tags associated with the data storage entry",
157
+ )
154
158
 
155
159
 
156
160
  class CreateDatasetPayload(BaseModel):
@@ -67,7 +67,8 @@ class SearchOperator(StrEnum):
67
67
  """Operators for structured search criteria."""
68
68
 
69
69
  EQUALS = "equals"
70
- CONTAINS = "contains"
70
+ CONTAINS = "contains" # Exact phrase/substring matching
71
+ FULLTEXT = "fulltext" # Tokenized full-text search (match query)
71
72
  STARTS_WITH = "starts_with"
72
73
  ENDS_WITH = "ends_with"
73
74
  GREATER_THAN = "greater_than"
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.4.4.dev1'
32
- __version_tuple__ = version_tuple = (0, 4, 4, 'dev1')
31
+ __version__ = version = '0.4.5.dev49'
32
+ __version_tuple__ = version_tuple = (0, 4, 5, 'dev49')
33
33
 
34
34
  __commit_id__ = commit_id = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: futurehouse-client
3
- Version: 0.4.4.dev1
3
+ Version: 0.4.5.dev49
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
@@ -1,23 +1,23 @@
1
1
  futurehouse_client/__init__.py,sha256=PvFTkocA-hobsWoDEBEdrUgLIbuVbDs_0nvMdImJmHk,707
2
2
  futurehouse_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- futurehouse_client/version.py,sha256=BxZgBdyE0uyvHuv-VdQ1w9gsFCUVeItMk8dKQsNmNs0,717
3
+ futurehouse_client/version.py,sha256=0fTIuRsiUoxr-NFJaezh7gevHU-qV_oY3hDg8BKD-i8,719
4
4
  futurehouse_client/clients/__init__.py,sha256=-HXNj-XJ3LRO5XM6MZ709iPs29YpApss0Q2YYg1qMZw,280
5
- futurehouse_client/clients/data_storage_methods.py,sha256=VESdX0J_frITd0QAjQ5UMPiqYvpToo0ooDCrS-U4uH8,99535
5
+ futurehouse_client/clients/data_storage_methods.py,sha256=yxtrZUFaVw6nwjAoRtOlyqr67M3tDJiFRjFtiFpJXHs,99811
6
6
  futurehouse_client/clients/job_client.py,sha256=b5gpzulZpxpv9R337r3UKItnMdtd6CGlI1sV3_VQJso,13985
7
7
  futurehouse_client/clients/rest_client.py,sha256=RdyFEipvADDCHyY5XFy565IoL9-N1myJjF0G8x2wlK8,103183
8
8
  futurehouse_client/models/__init__.py,sha256=0YlzKGymbY1g4cXxnUc0BUnthTkVBf12bCZlGUcMQqk,701
9
9
  futurehouse_client/models/app.py,sha256=UUg17I3zk6cH_7mrdojHGYvQfm_SeDkuUxsPlRyIYz0,31895
10
10
  futurehouse_client/models/client.py,sha256=n4HD0KStKLm6Ek9nL9ylP-bkK10yzAaD1uIDF83Qp_A,1828
11
- futurehouse_client/models/data_storage_methods.py,sha256=GS1FbuMsUJSh7Evjt86vOri-95hfiLyASBS1xG7erNk,12793
12
- futurehouse_client/models/rest.py,sha256=Fqw0_ypULzd7IV93PKooSG9W5_g7fGFsdW9jNVVImHA,4514
11
+ futurehouse_client/models/data_storage_methods.py,sha256=9L1C-BDaGJiWhr8Ps4P5kS4f0IuzXowCVeU2hYqore8,12932
12
+ futurehouse_client/models/rest.py,sha256=Ze7Jwllkfsvu32ekqYqqBzLqv9LOmWIsjYlxamofM2s,4619
13
13
  futurehouse_client/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
14
  futurehouse_client/utils/auth.py,sha256=tgWELjKfg8eWme_qdcRmc8TjQN9DVZuHHaVXZNHLchk,2960
15
15
  futurehouse_client/utils/general.py,sha256=PIkGLCSA3kUvc6mwR-prEB7YnMdKILOIm6cPowSZzzs,2532
16
16
  futurehouse_client/utils/module_utils.py,sha256=aFyd-X-pDARXz9GWpn8SSViUVYdSbuy9vSkrzcVIaGI,4955
17
17
  futurehouse_client/utils/monitoring.py,sha256=UjRlufe67kI3VxRHOd5fLtJmlCbVA2Wqwpd4uZhXkQM,8728
18
18
  futurehouse_client/utils/world_model_tools.py,sha256=v2krZGrco0ur2a_pcRMtnQL05SxlIoBXuJ5R1JkQNws,2921
19
- futurehouse_client-0.4.4.dev1.dist-info/licenses/LICENSE,sha256=oQ9ZHjUi-_6GfP3gs14FlPb0OlGwE1QCCKFGnJ4LD2I,11341
20
- futurehouse_client-0.4.4.dev1.dist-info/METADATA,sha256=ez62zZde6VSXTSkCJgP_L6JPZ3LUvzVOxZN0FI-soLk,27059
21
- futurehouse_client-0.4.4.dev1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
- futurehouse_client-0.4.4.dev1.dist-info/top_level.txt,sha256=TRuLUCt_qBnggdFHCX4O_BoCu1j2X43lKfIZC-ElwWY,19
23
- futurehouse_client-0.4.4.dev1.dist-info/RECORD,,
19
+ futurehouse_client-0.4.5.dev49.dist-info/licenses/LICENSE,sha256=oQ9ZHjUi-_6GfP3gs14FlPb0OlGwE1QCCKFGnJ4LD2I,11341
20
+ futurehouse_client-0.4.5.dev49.dist-info/METADATA,sha256=XmAENG6NzYv8fxDYEiilIst3WyNPfS-HawsJjfC3TWU,27060
21
+ futurehouse_client-0.4.5.dev49.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
+ futurehouse_client-0.4.5.dev49.dist-info/top_level.txt,sha256=TRuLUCt_qBnggdFHCX4O_BoCu1j2X43lKfIZC-ElwWY,19
23
+ futurehouse_client-0.4.5.dev49.dist-info/RECORD,,