h2ogpte 1.6.45rc1__py3-none-any.whl → 1.6.51rc1__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.
h2ogpte/__init__.py CHANGED
@@ -3,7 +3,7 @@ from h2ogpte.h2ogpte import H2OGPTE
3
3
  from h2ogpte.h2ogpte_async import H2OGPTEAsync
4
4
  from h2ogpte.session_async import SessionAsync
5
5
 
6
- __version__ = "1.6.45rc1"
6
+ __version__ = "1.6.51rc1"
7
7
 
8
8
  __all__ = [
9
9
  "H2OGPTE",
h2ogpte/h2ogpte.py CHANGED
@@ -2587,13 +2587,13 @@ class H2OGPTE(H2OGPTESyncBase):
2587
2587
  Returns:
2588
2588
  List of secret IDs available for the specified connector type
2589
2589
  """
2590
- self._init_rest()
2591
2590
  header = self._get_auth_header()
2592
- response = _rest_to_client_exceptions(
2593
- lambda: self._secrets_api.list_secret_ids(
2594
- connector_type=connector_type, _headers=header
2591
+ with self._RESTClient(self) as rest_client:
2592
+ response = _rest_to_client_exceptions(
2593
+ lambda: rest_client.secrets_api.list_secret_ids(
2594
+ connector_type=connector_type, _headers=header
2595
+ )
2595
2596
  )
2596
- )
2597
2597
  return response.ids
2598
2598
 
2599
2599
  def get_secret(self, secret_id: str) -> Union[Dict[str, Any], None]:
@@ -2605,11 +2605,13 @@ class H2OGPTE(H2OGPTESyncBase):
2605
2605
  Returns:
2606
2606
  The secret object corresponding to the provided ID.
2607
2607
  """
2608
- self._init_rest()
2609
2608
  header = self._get_auth_header()
2610
- response = _rest_to_client_exceptions(
2611
- lambda: self._secrets_api.get_secret(secret_id=secret_id, _headers=header)
2612
- )
2609
+ with self._RESTClient(self) as rest_client:
2610
+ response = _rest_to_client_exceptions(
2611
+ lambda: rest_client.secrets_api.get_secret(
2612
+ secret_id=secret_id, _headers=header
2613
+ )
2614
+ )
2613
2615
  return response.to_dict()
2614
2616
 
2615
2617
  def get_secret_value(self, secret_id: str) -> Union[str, None]:
@@ -2621,13 +2623,13 @@ class H2OGPTE(H2OGPTESyncBase):
2621
2623
  Returns:
2622
2624
  The value of the secret corresponding to the provided ID.
2623
2625
  """
2624
- self._init_rest()
2625
2626
  header = self._get_auth_header()
2626
- response = _rest_to_client_exceptions(
2627
- lambda: self._secrets_api.get_secret_value(
2628
- secret_id=secret_id, _headers=header
2627
+ with self._RESTClient(self) as rest_client:
2628
+ response = _rest_to_client_exceptions(
2629
+ lambda: rest_client.secrets_api.get_secret_value(
2630
+ secret_id=secret_id, _headers=header
2631
+ )
2629
2632
  )
2630
- )
2631
2633
  return response.value if response else None
2632
2634
 
2633
2635
  def create_secret(self, secret: Dict[str, Any]) -> None:
@@ -2639,11 +2641,13 @@ class H2OGPTE(H2OGPTESyncBase):
2639
2641
  Returns:
2640
2642
  The ID of the newly created secret.
2641
2643
  """
2642
- self._init_rest()
2643
2644
  header = self._get_auth_header()
2644
- response = _rest_to_client_exceptions(
2645
- lambda: self._secrets_api.create_secret(secret=secret, _headers=header)
2646
- )
2645
+ with self._RESTClient(self) as rest_client:
2646
+ response = _rest_to_client_exceptions(
2647
+ lambda: rest_client.secrets_api.create_secret(
2648
+ secret=secret, _headers=header
2649
+ )
2650
+ )
2647
2651
  return response.id
2648
2652
 
2649
2653
  def update_secret(self, secret_id: str, secret: Dict[str, Any]) -> None:
@@ -2656,13 +2660,13 @@ class H2OGPTE(H2OGPTESyncBase):
2656
2660
  Returns:
2657
2661
  None
2658
2662
  """
2659
- self._init_rest()
2660
2663
  header = self._get_auth_header()
2661
- _rest_to_client_exceptions(
2662
- lambda: self._secrets_api.update_secret(
2663
- secret_id=secret_id, secret=secret, _headers=header
2664
+ with self._RESTClient(self) as rest_client:
2665
+ _rest_to_client_exceptions(
2666
+ lambda: rest_client.secrets_api.update_secret(
2667
+ secret_id=secret_id, secret=secret, _headers=header
2668
+ )
2664
2669
  )
2665
- )
2666
2670
 
2667
2671
  def delete_secret(self, secret_id: str) -> None:
2668
2672
  """Delete a secret from the SecureStore by its ID.
@@ -2673,13 +2677,13 @@ class H2OGPTE(H2OGPTESyncBase):
2673
2677
  Returns:
2674
2678
  None
2675
2679
  """
2676
- self._init_rest()
2677
2680
  header = self._get_auth_header()
2678
- _rest_to_client_exceptions(
2679
- lambda: self._secrets_api.delete_secret(
2680
- secret_id=secret_id, _headers=header
2681
+ with self._RESTClient(self) as rest_client:
2682
+ _rest_to_client_exceptions(
2683
+ lambda: rest_client.secrets_api.delete_secret(
2684
+ secret_id=secret_id, _headers=header
2685
+ )
2681
2686
  )
2682
- )
2683
2687
 
2684
2688
  def ingest_uploads(
2685
2689
  self,
h2ogpte/h2ogpte_async.py CHANGED
@@ -2789,13 +2789,13 @@ class H2OGPTEAsync:
2789
2789
  Returns:
2790
2790
  List of secret IDs available for the specified connector type
2791
2791
  """
2792
- await self._init_rest()
2793
2792
  header = await self._get_auth_header()
2794
- response = await _rest_to_client_exceptions(
2795
- self._secrets_api.list_secret_ids(
2796
- connector_type=connector_type, _headers=header
2793
+ async with self._RESTClient(self) as rest_client:
2794
+ response = await _rest_to_client_exceptions(
2795
+ rest_client.secrets_api.list_secret_ids(
2796
+ connector_type=connector_type, _headers=header
2797
+ )
2797
2798
  )
2798
- )
2799
2799
  return response.ids
2800
2800
 
2801
2801
  async def get_secret(self, secret_id: str) -> Union[Dict[str, Any], None]:
@@ -2807,11 +2807,11 @@ class H2OGPTEAsync:
2807
2807
  Returns:
2808
2808
  The secret object corresponding to the provided ID.
2809
2809
  """
2810
- await self._init_rest()
2811
2810
  header = await self._get_auth_header()
2812
- response = await _rest_to_client_exceptions(
2813
- self._secrets_api.get_secret(secret_id=secret_id, _headers=header)
2814
- )
2811
+ async with self._RESTClient(self) as rest_client:
2812
+ response = await _rest_to_client_exceptions(
2813
+ rest_client.secrets_api.get_secret(secret_id=secret_id, _headers=header)
2814
+ )
2815
2815
  return response.to_dict()
2816
2816
 
2817
2817
  async def get_secret_value(self, secret_id: str) -> Union[str, None]:
@@ -2823,11 +2823,13 @@ class H2OGPTEAsync:
2823
2823
  Returns:
2824
2824
  The value of the secret corresponding to the provided ID.
2825
2825
  """
2826
- await self._init_rest()
2827
2826
  header = await self._get_auth_header()
2828
- response = await _rest_to_client_exceptions(
2829
- self._secrets_api.get_secret_value(secret_id=secret_id, _headers=header)
2830
- )
2827
+ async with self._RESTClient(self) as rest_client:
2828
+ response = await _rest_to_client_exceptions(
2829
+ rest_client.secrets_api.get_secret_value(
2830
+ secret_id=secret_id, _headers=header
2831
+ )
2832
+ )
2831
2833
  return response.value if response else None
2832
2834
 
2833
2835
  async def create_secret(self, secret: Dict[str, Any]) -> None:
@@ -2839,11 +2841,11 @@ class H2OGPTEAsync:
2839
2841
  Returns:
2840
2842
  The ID of the newly created secret.
2841
2843
  """
2842
- await self._init_rest()
2843
2844
  header = await self._get_auth_header()
2844
- response = await _rest_to_client_exceptions(
2845
- self._secrets_api.create_secret(secret=secret, _headers=header)
2846
- )
2845
+ async with self._RESTClient(self) as rest_client:
2846
+ response = await _rest_to_client_exceptions(
2847
+ rest_client.secrets_api.create_secret(secret=secret, _headers=header)
2848
+ )
2847
2849
  return response.id
2848
2850
 
2849
2851
  async def update_secret(self, secret_id: str, secret: Dict[str, Any]) -> None:
@@ -2856,13 +2858,13 @@ class H2OGPTEAsync:
2856
2858
  Returns:
2857
2859
  None
2858
2860
  """
2859
- await self._init_rest()
2860
2861
  header = await self._get_auth_header()
2861
- await _rest_to_client_exceptions(
2862
- self._secrets_api.update_secret(
2863
- secret_id=secret_id, secret=secret, _headers=header
2862
+ async with self._RESTClient(self) as rest_client:
2863
+ await _rest_to_client_exceptions(
2864
+ rest_client.secrets_api.update_secret(
2865
+ secret_id=secret_id, secret=secret, _headers=header
2866
+ )
2864
2867
  )
2865
- )
2866
2868
 
2867
2869
  async def delete_secret(self, secret_id: str) -> None:
2868
2870
  """Delete a secret from the SecureStore by its ID.
@@ -2873,11 +2875,13 @@ class H2OGPTEAsync:
2873
2875
  Returns:
2874
2876
  None
2875
2877
  """
2876
- await self._init_rest()
2877
2878
  header = await self._get_auth_header()
2878
- await _rest_to_client_exceptions(
2879
- self._secrets_api.delete_secret(secret_id=secret_id, _headers=header)
2880
- )
2879
+ async with self._RESTClient(self) as rest_client:
2880
+ await _rest_to_client_exceptions(
2881
+ rest_client.secrets_api.delete_secret(
2882
+ secret_id=secret_id, _headers=header
2883
+ )
2884
+ )
2881
2885
 
2882
2886
  async def ingest_uploads(
2883
2887
  self,
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "1.6.45-dev1"
17
+ __version__ = "1.6.51-dev1"
18
18
 
19
19
  # import apis into sdk package
20
20
  from h2ogpte.rest_async.api.api_keys_api import APIKeysApi
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'OpenAPI-Generator/1.6.45-dev1/python'
93
+ self.user_agent = 'OpenAPI-Generator/1.6.51-dev1/python'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  async def __aenter__(self):
@@ -499,7 +499,7 @@ class Configuration:
499
499
  "OS: {env}\n"\
500
500
  "Python Version: {pyversion}\n"\
501
501
  "Version of the API: v1.0.0\n"\
502
- "SDK Package Version: 1.6.45-dev1".\
502
+ "SDK Package Version: 1.6.51-dev1".\
503
503
  format(env=sys.platform, pyversion=sys.version)
504
504
 
505
505
  def get_host_settings(self) -> List[HostSetting]:
@@ -18,7 +18,7 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, StrictStr
21
- from typing import Any, ClassVar, Dict, List, Optional
21
+ from typing import Any, ClassVar, Dict, List
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
24
24
 
@@ -26,7 +26,7 @@ class PromptTemplateChangeRequest(BaseModel):
26
26
  """
27
27
  PromptTemplateChangeRequest
28
28
  """ # noqa: E501
29
- prompt_template_id: Optional[StrictStr] = None
29
+ prompt_template_id: StrictStr
30
30
  __properties: ClassVar[List[str]] = ["prompt_template_id"]
31
31
 
32
32
  model_config = ConfigDict(
@@ -14,7 +14,7 @@
14
14
  """ # noqa: E501
15
15
 
16
16
 
17
- __version__ = "1.6.45-dev1"
17
+ __version__ = "1.6.51-dev1"
18
18
 
19
19
  # import apis into sdk package
20
20
  from h2ogpte.rest_sync.api.api_keys_api import APIKeysApi
@@ -90,7 +90,7 @@ class ApiClient:
90
90
  self.default_headers[header_name] = header_value
91
91
  self.cookie = cookie
92
92
  # Set default User-Agent.
93
- self.user_agent = 'OpenAPI-Generator/1.6.45-dev1/python'
93
+ self.user_agent = 'OpenAPI-Generator/1.6.51-dev1/python'
94
94
  self.client_side_validation = configuration.client_side_validation
95
95
 
96
96
  def __enter__(self):
@@ -503,7 +503,7 @@ class Configuration:
503
503
  "OS: {env}\n"\
504
504
  "Python Version: {pyversion}\n"\
505
505
  "Version of the API: v1.0.0\n"\
506
- "SDK Package Version: 1.6.45-dev1".\
506
+ "SDK Package Version: 1.6.51-dev1".\
507
507
  format(env=sys.platform, pyversion=sys.version)
508
508
 
509
509
  def get_host_settings(self) -> List[HostSetting]:
@@ -18,7 +18,7 @@ import re # noqa: F401
18
18
  import json
19
19
 
20
20
  from pydantic import BaseModel, ConfigDict, StrictStr
21
- from typing import Any, ClassVar, Dict, List, Optional
21
+ from typing import Any, ClassVar, Dict, List
22
22
  from typing import Optional, Set
23
23
  from typing_extensions import Self
24
24
 
@@ -26,7 +26,7 @@ class PromptTemplateChangeRequest(BaseModel):
26
26
  """
27
27
  PromptTemplateChangeRequest
28
28
  """ # noqa: E501
29
- prompt_template_id: Optional[StrictStr] = None
29
+ prompt_template_id: StrictStr
30
30
  __properties: ClassVar[List[str]] = ["prompt_template_id"]
31
31
 
32
32
  model_config = ConfigDict(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: h2ogpte
3
- Version: 1.6.45rc1
3
+ Version: 1.6.51rc1
4
4
  Summary: Client library for Enterprise h2oGPTe
5
5
  Author-email: "H2O.ai, Inc." <support@h2o.ai>
6
6
  Project-URL: Source, https://github.com/h2oai/h2ogpte
@@ -1,8 +1,8 @@
1
- h2ogpte/__init__.py,sha256=kGF4J4kRC931c5kVbGpCu_-tJHLaT-wdh5udM6iCl1o,1524
1
+ h2ogpte/__init__.py,sha256=lXGWeo5o2T31BLC81tnSC2rX3KiLbYzG3z6QLSIXdlo,1524
2
2
  h2ogpte/connectors.py,sha256=CRAEpkn9GotcCjWANfJjZ5Hq1cjGWJ4H_IO4eJgVWiI,8466
3
3
  h2ogpte/errors.py,sha256=XgLdfJO1fZ9Bf9rhUKpnvRzzvkNyan3Oc6WzGS6hCUA,1248
4
- h2ogpte/h2ogpte.py,sha256=AqwDkynS9kLDi231PgGiwKm8kzVUQZUYquMqMdiYEHQ,309478
5
- h2ogpte/h2ogpte_async.py,sha256=cfuKTU5T2rSYeYXDjTsJ_TbSAyglhoRr6kQoCc-8fgI,329391
4
+ h2ogpte/h2ogpte.py,sha256=QdGX0SKMv0kdU8C33un1DFvyRrqvSQnnERqm9gF4IN4,309850
5
+ h2ogpte/h2ogpte_async.py,sha256=yuR3OdgSMxUIvuzUmgE1BYP-Ki9bYmpaHI8fTI3K30o,329747
6
6
  h2ogpte/h2ogpte_sync_base.py,sha256=ftsVzpMqEsyi0UACMI-7H_EIYEx9JEdEUImbyjWy_Hc,15285
7
7
  h2ogpte/session.py,sha256=BqJg3mWVeyz_ZLUJC_olzZzeLnRSaJwCH1NkXXfhg54,32608
8
8
  h2ogpte/session_async.py,sha256=UzNijTn3kZjAUYl_Jn5Oji4QrPTOpdX9KKByTmhLlK8,31354
@@ -41,10 +41,10 @@ h2ogpte/cli/ui/prompts.py,sha256=bJvRe_32KppQTK5bqnsrPh0RS4JaY9KkiV7y-3v8PMQ,538
41
41
  h2ogpte/cli/ui/status_bar.py,sha256=hs2MLvkg-y3Aiu3gWRtgMXf3jv3DGe7Y47ucgoBAP7Y,3852
42
42
  h2ogpte/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
43
  h2ogpte/cli/utils/file_manager.py,sha256=ghNDX6G3Dr0vFvBYjbqx5o7qxq-pN8Vo2Rp1vyITfLo,13988
44
- h2ogpte/rest_async/__init__.py,sha256=TV_kYPdWXLjja01YvtVJGsvzt3DGXJOCqQvzG31ZPDw,15203
45
- h2ogpte/rest_async/api_client.py,sha256=_uVovgtr14YUpxy8T-hk8pVa6SA_wW-VQ5RykU-fSxk,29510
44
+ h2ogpte/rest_async/__init__.py,sha256=gaWjPIXbf7uaBQGVo9PYCP6bn2GcJ1jPg_fRoo1PP7k,15203
45
+ h2ogpte/rest_async/api_client.py,sha256=vcGeNOgIIoU4VuzqNt5TnNy0jlHqa7EWZdcNrg4yxtg,29510
46
46
  h2ogpte/rest_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
47
- h2ogpte/rest_async/configuration.py,sha256=k3NAp5Nqhg-lcJwab1cg7th01YVRJA2NH1aiQrBCrG0,19567
47
+ h2ogpte/rest_async/configuration.py,sha256=qcyPh0bYKOU5TLP023-8XuZCMzcO1MWFEXEbkAzd8vg,19567
48
48
  h2ogpte/rest_async/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
49
49
  h2ogpte/rest_async/rest.py,sha256=mdjDwzJ1kiaYtONUfDRqKsRPw5-tG6eyZV2P1yBuwRo,9147
50
50
  h2ogpte/rest_async/api/__init__.py,sha256=R_x57GGyaSgxZyrJOyOt551TodbRSQf3T7VrraQc-84,973
@@ -154,7 +154,7 @@ h2ogpte/rest_async/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT
154
154
  h2ogpte/rest_async/models/process_document_job_request.py,sha256=taTBKC6IzSTZjrw-EcDb7-sEYOIBZ-KggUJki-qm1Kc,17359
155
155
  h2ogpte/rest_async/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
156
156
  h2ogpte/rest_async/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
157
- h2ogpte/rest_async/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
157
+ h2ogpte/rest_async/models/prompt_template_change_request.py,sha256=mU01CYIGA1-iBvX1nrB4pQRN0RbKgk4J2ro1452zrgY,4479
158
158
  h2ogpte/rest_async/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
159
159
  h2ogpte/rest_async/models/qa_feedback.py,sha256=zDjk10nkg11uxpqOWesPAs3oLy2YtUAH-qEUPsI0JbQ,6639
160
160
  h2ogpte/rest_async/models/question_request.py,sha256=nukqmNJsBdyWTSvxvIPw7nKvgDdQSmMG0IELuGd5Bhg,15117
@@ -201,10 +201,10 @@ h2ogpte/rest_async/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJii
201
201
  h2ogpte/rest_async/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
202
202
  h2ogpte/rest_async/models/user_job_details.py,sha256=kzu8fLxVsRMgnyt6dLr0VWjlIoE3i1VRpGR9nDxFyk4,4985
203
203
  h2ogpte/rest_async/models/user_permission.py,sha256=1k74E7s2kD2waSZ79KPlgTupVYEacTKWMqcKxv2972A,4856
204
- h2ogpte/rest_sync/__init__.py,sha256=0JVi8yj1PQS5OlE6qBxiYTQKGEpJT0kdDjvw8ZbXJW0,15042
205
- h2ogpte/rest_sync/api_client.py,sha256=tcFlHi_NrZModRgmiTIyFZz8Q7Z8WzxZh8JQ4bXaLTA,29397
204
+ h2ogpte/rest_sync/__init__.py,sha256=9gDaJvl-MLIc9PzvCAIgytBbbtWXUTwmAlhLqrBmx8o,15042
205
+ h2ogpte/rest_sync/api_client.py,sha256=GTfgIJTslh95kVs37toTa6q8fXHYYvZpIWhJcoXzn8A,29397
206
206
  h2ogpte/rest_sync/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
207
- h2ogpte/rest_sync/configuration.py,sha256=ZrOdaZmQACEuDK6tKawgO_GEpePydYOUoHAABvUhHx4,19850
207
+ h2ogpte/rest_sync/configuration.py,sha256=CUlEiD60TXshtTcWLDoIjFu6RHz-lxD4ceWhUNgoUzo,19850
208
208
  h2ogpte/rest_sync/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
209
209
  h2ogpte/rest_sync/rest.py,sha256=evRzviTYC_fsrpTtFlGvruXmquH9C0jDn-oQrGrE5A0,11314
210
210
  h2ogpte/rest_sync/api/__init__.py,sha256=ZuLQQtyiXnP5UOwTlIOYLGLQq1BG_0PEkzC9s698vjM,958
@@ -314,7 +314,7 @@ h2ogpte/rest_sync/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6
314
314
  h2ogpte/rest_sync/models/process_document_job_request.py,sha256=Vh2EBRf0WQlQ8uRaKzY5ePIZaFPj39FmUvgA8fnwTKg,17358
315
315
  h2ogpte/rest_sync/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
316
316
  h2ogpte/rest_sync/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
317
- h2ogpte/rest_sync/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
317
+ h2ogpte/rest_sync/models/prompt_template_change_request.py,sha256=mU01CYIGA1-iBvX1nrB4pQRN0RbKgk4J2ro1452zrgY,4479
318
318
  h2ogpte/rest_sync/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
319
319
  h2ogpte/rest_sync/models/qa_feedback.py,sha256=zDjk10nkg11uxpqOWesPAs3oLy2YtUAH-qEUPsI0JbQ,6639
320
320
  h2ogpte/rest_sync/models/question_request.py,sha256=8ViwrJG_k2SBPGjSr-0sH4we4U-ILfjV6bhvpXoVNns,15116
@@ -361,8 +361,8 @@ h2ogpte/rest_sync/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiP
361
361
  h2ogpte/rest_sync/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
362
362
  h2ogpte/rest_sync/models/user_job_details.py,sha256=9cbhpgLMDpar-aTOaY5Ygud-8Kbi23cLNldTGab0Sd8,4984
363
363
  h2ogpte/rest_sync/models/user_permission.py,sha256=1k74E7s2kD2waSZ79KPlgTupVYEacTKWMqcKxv2972A,4856
364
- h2ogpte-1.6.45rc1.dist-info/METADATA,sha256=MEriMBJ1BMG6ISmJNLbr-_NdQbkM2EtNtrX-uexOsyw,8615
365
- h2ogpte-1.6.45rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
- h2ogpte-1.6.45rc1.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
367
- h2ogpte-1.6.45rc1.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
368
- h2ogpte-1.6.45rc1.dist-info/RECORD,,
364
+ h2ogpte-1.6.51rc1.dist-info/METADATA,sha256=6T3Edf5hZ0uYeo7dAtfteUqDB86YkgBlDJVilmn81tA,8615
365
+ h2ogpte-1.6.51rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
+ h2ogpte-1.6.51rc1.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
367
+ h2ogpte-1.6.51rc1.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
368
+ h2ogpte-1.6.51rc1.dist-info/RECORD,,