h2ogpte 1.6.38rc3__py3-none-any.whl → 1.6.40rc1__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 +1 -1
- h2ogpte/h2ogpte.py +122 -0
- h2ogpte/h2ogpte_async.py +123 -0
- h2ogpte/rest_async/__init__.py +8 -1
- h2ogpte/rest_async/api/agents_api.py +1181 -22
- h2ogpte/rest_async/api/permissions_api.py +550 -2
- h2ogpte/rest_async/api_client.py +1 -1
- h2ogpte/rest_async/configuration.py +1 -1
- h2ogpte/rest_async/models/__init__.py +7 -0
- h2ogpte/rest_async/models/add_custom_agent_tool201_response_inner.py +87 -0
- h2ogpte/rest_async/models/confirm_user_deletion_request.py +87 -0
- h2ogpte/rest_async/models/create_agent_tool_request.py +103 -0
- h2ogpte/rest_async/models/list_custom_agent_tools200_response_inner.py +95 -0
- h2ogpte/rest_async/models/prompt_template.py +3 -1
- h2ogpte/rest_async/models/update_custom_agent_tool200_response.py +87 -0
- h2ogpte/rest_async/models/update_custom_agent_tool_request.py +87 -0
- h2ogpte/rest_async/models/user_deletion_request.py +87 -0
- h2ogpte/rest_sync/__init__.py +8 -1
- h2ogpte/rest_sync/api/agents_api.py +1181 -22
- h2ogpte/rest_sync/api/permissions_api.py +550 -2
- h2ogpte/rest_sync/api_client.py +1 -1
- h2ogpte/rest_sync/configuration.py +1 -1
- h2ogpte/rest_sync/models/__init__.py +7 -0
- h2ogpte/rest_sync/models/add_custom_agent_tool201_response_inner.py +87 -0
- h2ogpte/rest_sync/models/confirm_user_deletion_request.py +87 -0
- h2ogpte/rest_sync/models/create_agent_tool_request.py +103 -0
- h2ogpte/rest_sync/models/list_custom_agent_tools200_response_inner.py +95 -0
- h2ogpte/rest_sync/models/prompt_template.py +3 -1
- h2ogpte/rest_sync/models/update_custom_agent_tool200_response.py +87 -0
- h2ogpte/rest_sync/models/update_custom_agent_tool_request.py +87 -0
- h2ogpte/rest_sync/models/user_deletion_request.py +87 -0
- {h2ogpte-1.6.38rc3.dist-info → h2ogpte-1.6.40rc1.dist-info}/METADATA +1 -1
- {h2ogpte-1.6.38rc3.dist-info → h2ogpte-1.6.40rc1.dist-info}/RECORD +35 -21
- {h2ogpte-1.6.38rc3.dist-info → h2ogpte-1.6.40rc1.dist-info}/WHEEL +0 -0
- {h2ogpte-1.6.38rc3.dist-info → h2ogpte-1.6.40rc1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
h2oGPTe REST API
|
|
5
|
+
|
|
6
|
+
# Overview Users can easily interact with the h2oGPTe API through its REST API, allowing HTTP requests from any programming language. ## Authorization: Getting an API key Sign up/in at Enterprise h2oGPTe and generate one of the following two types of API keys: - **Global API key**: If a Collection is not specified when creating a new API Key, that key is considered to be a global API Key. Use global API Keys to grant full user impersonation and system-wide access to all of your work. Anyone with access to one of your global API Keys can create, delete, or interact with any of your past, current, and future Collections, Documents, Chats, and settings. - **Collection-specific API key**: Use Collection-specific API Keys to grant external access to only Chat with a specified Collection and make related API calls to it. Collection-specific API keys do not allow other API calls, such as creation, deletion, or access to other Collections or Chats. Access Enterprise h2oGPTe through your [H2O Generative AI](https://genai.h2o.ai/appstore) app store account, available with a freemium tier. ## Authorization: Using an API key All h2oGPTe REST API requests must include an API Key in the \"Authorization\" HTTP header, formatted as follows: ``` Authorization: Bearer sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX ``` ```sh curl -X 'POST' \\ 'https://h2ogpte.genai.h2o.ai/api/v1/collections' \\ -H 'accept: application/json' \\ -H 'Content-Type: application/json' \\ -H 'Authorization: Bearer sk-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX' \\ -d '{ \"name\": \"The name of my Collection\", \"description\": \"The description of my Collection\", \"embedding_model\": \"BAAI/bge-large-en-v1.5\" }' ``` ## Interactive h2oGPTe API testing This page only showcases the h2oGPTe REST API; you can test it directly in the [Swagger UI](https://h2ogpte.genai.h2o.ai/swagger-ui/). Ensure that you are logged into your Enterprise h2oGPTe account.
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: v1.0.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
from __future__ import annotations
|
|
16
|
+
import pprint
|
|
17
|
+
import re # noqa: F401
|
|
18
|
+
import json
|
|
19
|
+
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List
|
|
22
|
+
from typing import Optional, Set
|
|
23
|
+
from typing_extensions import Self
|
|
24
|
+
|
|
25
|
+
class UserDeletionRequest(BaseModel):
|
|
26
|
+
"""
|
|
27
|
+
UserDeletionRequest
|
|
28
|
+
""" # noqa: E501
|
|
29
|
+
delete_id: StrictStr = Field(description="Unique identifier for the deletion request. Must be used within 5 minutes to confirm deletion.")
|
|
30
|
+
__properties: ClassVar[List[str]] = ["delete_id"]
|
|
31
|
+
|
|
32
|
+
model_config = ConfigDict(
|
|
33
|
+
populate_by_name=True,
|
|
34
|
+
validate_assignment=True,
|
|
35
|
+
protected_namespaces=(),
|
|
36
|
+
)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
def to_str(self) -> str:
|
|
40
|
+
"""Returns the string representation of the model using alias"""
|
|
41
|
+
return pprint.pformat(self.model_dump(by_alias=True))
|
|
42
|
+
|
|
43
|
+
def to_json(self) -> str:
|
|
44
|
+
"""Returns the JSON representation of the model using alias"""
|
|
45
|
+
# TODO: pydantic v2: use .model_dump_json(by_alias=True, exclude_unset=True) instead
|
|
46
|
+
return json.dumps(self.to_dict())
|
|
47
|
+
|
|
48
|
+
@classmethod
|
|
49
|
+
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
+
"""Create an instance of UserDeletionRequest from a JSON string"""
|
|
51
|
+
return cls.from_dict(json.loads(json_str))
|
|
52
|
+
|
|
53
|
+
def to_dict(self) -> Dict[str, Any]:
|
|
54
|
+
"""Return the dictionary representation of the model using alias.
|
|
55
|
+
|
|
56
|
+
This has the following differences from calling pydantic's
|
|
57
|
+
`self.model_dump(by_alias=True)`:
|
|
58
|
+
|
|
59
|
+
* `None` is only added to the output dict for nullable fields that
|
|
60
|
+
were set at model initialization. Other fields with value `None`
|
|
61
|
+
are ignored.
|
|
62
|
+
"""
|
|
63
|
+
excluded_fields: Set[str] = set([
|
|
64
|
+
])
|
|
65
|
+
|
|
66
|
+
_dict = self.model_dump(
|
|
67
|
+
by_alias=True,
|
|
68
|
+
exclude=excluded_fields,
|
|
69
|
+
exclude_none=True,
|
|
70
|
+
)
|
|
71
|
+
return _dict
|
|
72
|
+
|
|
73
|
+
@classmethod
|
|
74
|
+
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
+
"""Create an instance of UserDeletionRequest from a dict"""
|
|
76
|
+
if obj is None:
|
|
77
|
+
return None
|
|
78
|
+
|
|
79
|
+
if not isinstance(obj, dict):
|
|
80
|
+
return cls.model_validate(obj)
|
|
81
|
+
|
|
82
|
+
_obj = cls.model_validate({
|
|
83
|
+
"delete_id": obj.get("delete_id")
|
|
84
|
+
})
|
|
85
|
+
return _obj
|
|
86
|
+
|
|
87
|
+
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
h2ogpte/__init__.py,sha256=
|
|
1
|
+
h2ogpte/__init__.py,sha256=4qTsslQkcgiY4ZfI23AvT3DSNM1bnSi7vejAGbNsihw,1524
|
|
2
2
|
h2ogpte/connectors.py,sha256=nKUK6rWeFoI4VTonh4xvAfLMHFqeYgVgSydRTYUzTZg,7728
|
|
3
3
|
h2ogpte/errors.py,sha256=XgLdfJO1fZ9Bf9rhUKpnvRzzvkNyan3Oc6WzGS6hCUA,1248
|
|
4
|
-
h2ogpte/h2ogpte.py,sha256=
|
|
5
|
-
h2ogpte/h2ogpte_async.py,sha256=
|
|
4
|
+
h2ogpte/h2ogpte.py,sha256=5ma_DviWt4FI2z_dmRafyDp2-kkzz19SB8DLfk204WA,277615
|
|
5
|
+
h2ogpte/h2ogpte_async.py,sha256=itGTI4_3m-ui__BrQAVMsL3xjfgSFfjV3oVlwuiyQYw,296596
|
|
6
6
|
h2ogpte/h2ogpte_sync_base.py,sha256=QDv7wq05NC4FVJujFFHmn5D5FbjmsF4Ydf_XqLQTRpc,14656
|
|
7
7
|
h2ogpte/session.py,sha256=VIWltdMBjwHZoekGJ9SOkQj-DD0lcQox-Z9Q-MKAOcQ,30683
|
|
8
8
|
h2ogpte/session_async.py,sha256=gHb0Do_HbN8cL3-83dTuMKx680LOk84WwiJekE2nDyI,28877
|
|
9
9
|
h2ogpte/shared_client.py,sha256=Zh24myL--5JDdrKoJPW4aeprHX6a_oB9o461Ho3hnU8,14691
|
|
10
10
|
h2ogpte/types.py,sha256=DLUvdxXADi1OohgrFXwtLu9iCbch6x6YoocCgWlfY8M,14476
|
|
11
11
|
h2ogpte/utils.py,sha256=Z9n57xxPu0KtsCzkJ9V_VgTW--oG_aXTLBgmXDWSdnM,3201
|
|
12
|
-
h2ogpte/rest_async/__init__.py,sha256=
|
|
13
|
-
h2ogpte/rest_async/api_client.py,sha256=
|
|
12
|
+
h2ogpte/rest_async/__init__.py,sha256=PYYIBrFBwgMdKE8eTxciWerEcN0etI7Q6G6hn5KQMMk,14582
|
|
13
|
+
h2ogpte/rest_async/api_client.py,sha256=UfihyqAQqZBxu4EB1S8BVx5lz0VcRmzRAArx7NtfCzg,29510
|
|
14
14
|
h2ogpte/rest_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
15
|
-
h2ogpte/rest_async/configuration.py,sha256=
|
|
15
|
+
h2ogpte/rest_async/configuration.py,sha256=wuMn8S9VDF6dZ5DCrZnXHKjJxWKhg8sOF1Y2dxKWR24,19567
|
|
16
16
|
h2ogpte/rest_async/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
|
|
17
17
|
h2ogpte/rest_async/rest.py,sha256=mdjDwzJ1kiaYtONUfDRqKsRPw5-tG6eyZV2P1yBuwRo,9147
|
|
18
18
|
h2ogpte/rest_async/api/__init__.py,sha256=l4UOcqn7RsyOZPJX7UOqSiUYn9E300bYvkyI21b6YJI,909
|
|
19
|
-
h2ogpte/rest_async/api/agents_api.py,sha256=
|
|
19
|
+
h2ogpte/rest_async/api/agents_api.py,sha256=_-7Y1h3ssEqqgjriUmuDnngbimbVifva75Z7ks3-wNw,177547
|
|
20
20
|
h2ogpte/rest_async/api/api_keys_api.py,sha256=hgywNjCWaIrhFRJacKuPkJSKDEltIK8B9fi-4xMWLgs,58244
|
|
21
21
|
h2ogpte/rest_async/api/chat_api.py,sha256=i7vijHVYsAN-pW5yvf5LmizuOOnklfww2dpw0DFZuho,294352
|
|
22
22
|
h2ogpte/rest_async/api/collections_api.py,sha256=pYcvKH63YNDDmiR8oXnarZutet3zmpXXV7WTYhhe4Lo,627189
|
|
@@ -25,12 +25,13 @@ h2ogpte/rest_async/api/document_ingestion_api.py,sha256=otoR4L-DyWtShCr1aUiLHLz_
|
|
|
25
25
|
h2ogpte/rest_async/api/documents_api.py,sha256=X-w5x4bX2wHXlxb_97XgWdgNi5qAkdksoqz7bHKG5fA,261595
|
|
26
26
|
h2ogpte/rest_async/api/jobs_api.py,sha256=xXxqeDGy3ZA9KTF0Aowd5Rlt-gu2mXfD1S5Y6_-ST68,72519
|
|
27
27
|
h2ogpte/rest_async/api/models_api.py,sha256=oSJgvLsjPypYs3gIwElCl1IFx_gvjSokNTstHvWl5rM,221092
|
|
28
|
-
h2ogpte/rest_async/api/permissions_api.py,sha256=
|
|
28
|
+
h2ogpte/rest_async/api/permissions_api.py,sha256=ykcgCy2vc4xUwvo-IkZk4p9UFslGNPbU5nrj7lzRJc0,369442
|
|
29
29
|
h2ogpte/rest_async/api/prompt_templates_api.py,sha256=EO7eBU-1-8CXOSR7yTWCfO--KrikPhtthYfuSLZdvhc,227351
|
|
30
30
|
h2ogpte/rest_async/api/secrets_api.py,sha256=MTtmpYO2IOXuCklK-BxVyF9aBNZebgWuQenada-uM7o,68122
|
|
31
31
|
h2ogpte/rest_async/api/system_api.py,sha256=wXxO1lFEnrPHO0JRCgg13j6CpRKb3nou81dk8nA31v0,12532
|
|
32
32
|
h2ogpte/rest_async/api/tags_api.py,sha256=VwamxhJKsuBu3UeslsZ0vflxbnV1FmUV2pbWvIBwvFk,56168
|
|
33
|
-
h2ogpte/rest_async/models/__init__.py,sha256=
|
|
33
|
+
h2ogpte/rest_async/models/__init__.py,sha256=bqzB2oIuFeIoCO00XLyjiNH9vGW6-K8bMOv0gYOQjgQ,13135
|
|
34
|
+
h2ogpte/rest_async/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
|
|
34
35
|
h2ogpte/rest_async/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
|
|
35
36
|
h2ogpte/rest_async/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
|
|
36
37
|
h2ogpte/rest_async/models/agent_server_directory_stats.py,sha256=0oCZJztMf3ywpYEzQuPFHrcvafhSDfU022PRXt81L8k,7090
|
|
@@ -61,10 +62,12 @@ h2ogpte/rest_async/models/collection_change_request.py,sha256=CIb51wkIjmud3RPSqa
|
|
|
61
62
|
h2ogpte/rest_async/models/collection_create_request.py,sha256=OzL8KGOOpbMbfJMn6G7t5tGLchYNJYKjkepRUDTLkhM,5604
|
|
62
63
|
h2ogpte/rest_async/models/collection_settings.py,sha256=u9t3OtsOYR-H1JKHX7nW7dalk-Kn0i3W8mvfYYcSoGk,9466
|
|
63
64
|
h2ogpte/rest_async/models/collection_update_request.py,sha256=Y2ojg5NqGbR_Lm_Pf-Aig46HyZ9OKBN4-iwT_PdAWco,6332
|
|
65
|
+
h2ogpte/rest_async/models/confirm_user_deletion_request.py,sha256=6L99MbScW_qbvxHKTv8dNJIQyY2L5ak13nYxvL4vBcs,4527
|
|
64
66
|
h2ogpte/rest_async/models/count.py,sha256=1mm5PQtrJHl3ky5w9UfO0MneaohqucGk2cK74fjL0Ig,4339
|
|
65
67
|
h2ogpte/rest_async/models/count_with_queue_details.py,sha256=6lj1DTij6PgabJ0aoa-KDURtgy76qJW8w545Uc9XW3c,5016
|
|
66
68
|
h2ogpte/rest_async/models/create_agent_key_request.py,sha256=fr6C3x6iDzF77bRsEwMDDO1MFSJxKEpm23VhJ2JGXtM,4927
|
|
67
69
|
h2ogpte/rest_async/models/create_agent_tool_key_associations_request.py,sha256=ufgon4AAWmh3zvAb-Mkp2zeLmEsmnE5cVm63Dvlc4ho,5013
|
|
70
|
+
h2ogpte/rest_async/models/create_agent_tool_request.py,sha256=0bsJAjZfGifvpPYrQtOA1ldAqtMSKYYJv6nGaM7bYdw,5213
|
|
68
71
|
h2ogpte/rest_async/models/create_import_collection_to_collection_job_request.py,sha256=NgxLr2wTyvuFiHBn-Srp7mrdRyqKHEA2M9v6eSxEnqg,4622
|
|
69
72
|
h2ogpte/rest_async/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
|
|
70
73
|
h2ogpte/rest_async/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
|
|
@@ -99,6 +102,7 @@ h2ogpte/rest_async/models/ingest_upload_body.py,sha256=m9Z4VQ9h8ncmz6DrH9iPk4g7r
|
|
|
99
102
|
h2ogpte/rest_async/models/job_details.py,sha256=50fo53VJStR-3Wy4BzuFQ81w18uBX-gEl5l5JWUcD10,6883
|
|
100
103
|
h2ogpte/rest_async/models/job_details_status.py,sha256=m20gWrbmwh-W71qeEgXprEojwTYuUysAa5Xa6lvFIK0,4444
|
|
101
104
|
h2ogpte/rest_async/models/key_association.py,sha256=WnxTrqFr8W-UTAXrTkqjG5tSdNwCu8hR3KR6tKd5l1c,4748
|
|
105
|
+
h2ogpte/rest_async/models/list_custom_agent_tools200_response_inner.py,sha256=L3frs8q1BV65u10Bi0kka1OO0cXfhMa3p0jRkMOclCc,5167
|
|
102
106
|
h2ogpte/rest_async/models/match_collection_chunks_request.py,sha256=GP2-yP-VAjnHpLvE6BzXSqu9p3o-bxmnBXGIgATPFeI,5413
|
|
103
107
|
h2ogpte/rest_async/models/message_vote_update_request.py,sha256=mK1_OWtDKKS-gOODIHSiwnQi1-a8n3AGFmfytop01Sg,4415
|
|
104
108
|
h2ogpte/rest_async/models/model.py,sha256=mQ3bPeye9CMxRxnO3EI-2dwnPXHxvOTtyK2_ceUvbgw,5110
|
|
@@ -110,7 +114,7 @@ h2ogpte/rest_async/models/performance_stats_per_model.py,sha256=4qwgWTxcd3DBWb-x
|
|
|
110
114
|
h2ogpte/rest_async/models/permission_check_request.py,sha256=pcriKBIP-ezilS_j-IhMdRu_s-vLcbPDnXRqr9cT918,4427
|
|
111
115
|
h2ogpte/rest_async/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6H0yPWK8O-RVgAYtpM0m3PPc,4453
|
|
112
116
|
h2ogpte/rest_async/models/process_document_job_request.py,sha256=XcARcaq-sVweSoSJiHRupRheRUZqeZO5OoSMu3duSKA,16880
|
|
113
|
-
h2ogpte/rest_async/models/prompt_template.py,sha256=
|
|
117
|
+
h2ogpte/rest_async/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
|
|
114
118
|
h2ogpte/rest_async/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
|
|
115
119
|
h2ogpte/rest_async/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
|
|
116
120
|
h2ogpte/rest_async/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
|
|
@@ -141,6 +145,8 @@ h2ogpte/rest_async/models/update_agent_tool_preference_request.py,sha256=GguSv4q
|
|
|
141
145
|
h2ogpte/rest_async/models/update_collection_expiry_date_request.py,sha256=k05IhX5JNxQFYDohULzszbCMQtaQ6pKdqdocKEzTNqc,4763
|
|
142
146
|
h2ogpte/rest_async/models/update_collection_inactivity_interval_request.py,sha256=6qa2f28otYxlHQymupYtUkK_HtJCX_J0wzQ3DeeUSCQ,4623
|
|
143
147
|
h2ogpte/rest_async/models/update_collection_privacy_request.py,sha256=58BglOQ_GM1MYe89oKL99XOKYUwuEtY1XqmyPo9QBzg,4548
|
|
148
|
+
h2ogpte/rest_async/models/update_custom_agent_tool200_response.py,sha256=aNpqXIPr9J0PC2XGAhQBDXu2aWjXf2yuwDeImkChjeY,4611
|
|
149
|
+
h2ogpte/rest_async/models/update_custom_agent_tool_request.py,sha256=Wz6nEziQ_8Po0MRTmkDVVHRJqMWW3tipBgbONX_Bisk,4515
|
|
144
150
|
h2ogpte/rest_async/models/update_default_prompt_template_visibility_request.py,sha256=VqM5DHrSuTDJlZRmMP2h9s0gz_2f4-XdJ6g2sBY32RE,4627
|
|
145
151
|
h2ogpte/rest_async/models/update_prompt_template_privacy_request.py,sha256=IEddiGtA3kWZmOshripk-leV_c4GqXp2emPJl4zygsg,4569
|
|
146
152
|
h2ogpte/rest_async/models/update_qa_feedback_request.py,sha256=m5MtLO5sZwyv52IQdPzhOpK9uLS6pC7rhDKwp29ypv8,4548
|
|
@@ -151,17 +157,18 @@ h2ogpte/rest_async/models/usage_stats_per_model.py,sha256=6sueQPGVAni3VfxssZCDJf
|
|
|
151
157
|
h2ogpte/rest_async/models/usage_stats_per_model_and_user.py,sha256=c8wGVKZ6TF585-vYYaKpmRaA6MhQyljzjRneksDzpqY,5554
|
|
152
158
|
h2ogpte/rest_async/models/usage_stats_per_user.py,sha256=qi6E8wUO3fm5YTFjddZztHswRZuh4Pzyqh5XBE-3k84,5160
|
|
153
159
|
h2ogpte/rest_async/models/user_configuration_item.py,sha256=hDcCkPjzWeFIu1iGgPpWMgYKTDMrzkqOsn9OK84bbQ8,4601
|
|
160
|
+
h2ogpte/rest_async/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiPOZS2QPW8qQk3vEZdwslQ,4536
|
|
154
161
|
h2ogpte/rest_async/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
|
|
155
162
|
h2ogpte/rest_async/models/user_job_details.py,sha256=kzu8fLxVsRMgnyt6dLr0VWjlIoE3i1VRpGR9nDxFyk4,4985
|
|
156
163
|
h2ogpte/rest_async/models/user_permission.py,sha256=9ffijaF3U3SYz_T_kcqHPJUfIZFkpCH0vBGboPjsg2o,4646
|
|
157
|
-
h2ogpte/rest_sync/__init__.py,sha256=
|
|
158
|
-
h2ogpte/rest_sync/api_client.py,sha256=
|
|
164
|
+
h2ogpte/rest_sync/__init__.py,sha256=oLbUaS9bj6dgQIgznnNu-3JQUNR_2Rj5A5ZmsTJvlGo,14429
|
|
165
|
+
h2ogpte/rest_sync/api_client.py,sha256=zhueT1rtHT2wTOydgdin6ZU2LicViaOJr2Ed0QNTgS8,29397
|
|
159
166
|
h2ogpte/rest_sync/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
160
|
-
h2ogpte/rest_sync/configuration.py,sha256=
|
|
167
|
+
h2ogpte/rest_sync/configuration.py,sha256=CqCJmMbu0Sd-UbBk_ivUOAQenQ2m-tqkbd18BFRAoGY,19850
|
|
161
168
|
h2ogpte/rest_sync/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
|
|
162
169
|
h2ogpte/rest_sync/rest.py,sha256=evRzviTYC_fsrpTtFlGvruXmquH9C0jDn-oQrGrE5A0,11314
|
|
163
170
|
h2ogpte/rest_sync/api/__init__.py,sha256=dHcQUPeqF3jrOEx8vDWG3an_HpOwQFU8id_s9GC_o0E,895
|
|
164
|
-
h2ogpte/rest_sync/api/agents_api.py,sha256=
|
|
171
|
+
h2ogpte/rest_sync/api/agents_api.py,sha256=zWzPXtqHbhBe6xVZZKYl93bFLDVzNw2KmAJG5xIW6i0,176763
|
|
165
172
|
h2ogpte/rest_sync/api/api_keys_api.py,sha256=MueDC8Z4VUC61IVIBem0kD0Wpgh35MvhoilUtPVLrN0,57997
|
|
166
173
|
h2ogpte/rest_sync/api/chat_api.py,sha256=aQwXN3QBuC-DjTAedtc1JzImMrXFoChAjhWqp1rioas,293083
|
|
167
174
|
h2ogpte/rest_sync/api/collections_api.py,sha256=mwVKnE3xxSinJhPWUcr7ERVpKBqs-PTudHgA-MCV1ss,624760
|
|
@@ -170,12 +177,13 @@ h2ogpte/rest_sync/api/document_ingestion_api.py,sha256=DppDRB7eAdh7k89q0_gRTiqmb
|
|
|
170
177
|
h2ogpte/rest_sync/api/documents_api.py,sha256=qRDBXrQaZWp_hGxg-7mqAFUMeeWd1EB2M_xIlzHh6rw,260474
|
|
171
178
|
h2ogpte/rest_sync/api/jobs_api.py,sha256=LM9erEymF1SgEg8j4ePeNbUeJtwAGTMCI3Z4zRESehE,72177
|
|
172
179
|
h2ogpte/rest_sync/api/models_api.py,sha256=a5DuGNAEXeynqnPuFcvIWHtIBYfGKhn5uFi43aXSBgA,220111
|
|
173
|
-
h2ogpte/rest_sync/api/permissions_api.py,sha256=
|
|
180
|
+
h2ogpte/rest_sync/api/permissions_api.py,sha256=MiXD2duhCsA-QS-xR_uoY_piLmuYvw9gxr6HIGY3JPo,367795
|
|
174
181
|
h2ogpte/rest_sync/api/prompt_templates_api.py,sha256=2CwEN4zT6gMKvX3lvC1KMwrfk_eQq3uni_xyA9TuiVg,226426
|
|
175
182
|
h2ogpte/rest_sync/api/secrets_api.py,sha256=5rAikvrX7n3Cj9M0ME-cPjISLpqrEFh2LmW23mvGk4g,67828
|
|
176
183
|
h2ogpte/rest_sync/api/system_api.py,sha256=knhP97lzeZt-YFTpcNJm9NdnqjoSg_Oh0yMGowiV1IM,12480
|
|
177
184
|
h2ogpte/rest_sync/api/tags_api.py,sha256=oCBsrFFLk0su8mz4wnCGSR_NxpCQgwEx18IwJKsOKrA,55921
|
|
178
|
-
h2ogpte/rest_sync/models/__init__.py,sha256=
|
|
185
|
+
h2ogpte/rest_sync/models/__init__.py,sha256=lLoyClyQeUP4FXsXV-XI-QWf5hMOQqtx3AE6j6S0cWQ,13005
|
|
186
|
+
h2ogpte/rest_sync/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
|
|
179
187
|
h2ogpte/rest_sync/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
|
|
180
188
|
h2ogpte/rest_sync/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
|
|
181
189
|
h2ogpte/rest_sync/models/agent_server_directory_stats.py,sha256=D8Ek6yCIJUj-7AnCkg8KNzqn10dFf1dWTG6j63C60xQ,7089
|
|
@@ -206,10 +214,12 @@ h2ogpte/rest_sync/models/collection_change_request.py,sha256=CIb51wkIjmud3RPSqaE
|
|
|
206
214
|
h2ogpte/rest_sync/models/collection_create_request.py,sha256=otM2rAbwlc5oMalskauTJXFyAz9Eud9DB4DsxA7zI3Q,5602
|
|
207
215
|
h2ogpte/rest_sync/models/collection_settings.py,sha256=Q-yDvnVnZBlnH7gLgXP5rsnxZLVM4lxX2FEa40qb45o,9465
|
|
208
216
|
h2ogpte/rest_sync/models/collection_update_request.py,sha256=Y2ojg5NqGbR_Lm_Pf-Aig46HyZ9OKBN4-iwT_PdAWco,6332
|
|
217
|
+
h2ogpte/rest_sync/models/confirm_user_deletion_request.py,sha256=6L99MbScW_qbvxHKTv8dNJIQyY2L5ak13nYxvL4vBcs,4527
|
|
209
218
|
h2ogpte/rest_sync/models/count.py,sha256=1mm5PQtrJHl3ky5w9UfO0MneaohqucGk2cK74fjL0Ig,4339
|
|
210
219
|
h2ogpte/rest_sync/models/count_with_queue_details.py,sha256=6FDySSWe7AuZRXql8tK5vip135J8YvI73YYdKJd45C4,5015
|
|
211
220
|
h2ogpte/rest_sync/models/create_agent_key_request.py,sha256=fr6C3x6iDzF77bRsEwMDDO1MFSJxKEpm23VhJ2JGXtM,4927
|
|
212
221
|
h2ogpte/rest_sync/models/create_agent_tool_key_associations_request.py,sha256=AnGuikgliGQ3uMYuaHM6IpbeMiurIzzLdDDPwslcEfA,5012
|
|
222
|
+
h2ogpte/rest_sync/models/create_agent_tool_request.py,sha256=0bsJAjZfGifvpPYrQtOA1ldAqtMSKYYJv6nGaM7bYdw,5213
|
|
213
223
|
h2ogpte/rest_sync/models/create_import_collection_to_collection_job_request.py,sha256=NgxLr2wTyvuFiHBn-Srp7mrdRyqKHEA2M9v6eSxEnqg,4622
|
|
214
224
|
h2ogpte/rest_sync/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
|
|
215
225
|
h2ogpte/rest_sync/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
|
|
@@ -244,6 +254,7 @@ h2ogpte/rest_sync/models/ingest_upload_body.py,sha256=m9Z4VQ9h8ncmz6DrH9iPk4g7rP
|
|
|
244
254
|
h2ogpte/rest_sync/models/job_details.py,sha256=SJ6bj2SH72kEhG12tAsyTCYWySI9YIWDL_djEHRBvgg,6882
|
|
245
255
|
h2ogpte/rest_sync/models/job_details_status.py,sha256=m20gWrbmwh-W71qeEgXprEojwTYuUysAa5Xa6lvFIK0,4444
|
|
246
256
|
h2ogpte/rest_sync/models/key_association.py,sha256=WnxTrqFr8W-UTAXrTkqjG5tSdNwCu8hR3KR6tKd5l1c,4748
|
|
257
|
+
h2ogpte/rest_sync/models/list_custom_agent_tools200_response_inner.py,sha256=L3frs8q1BV65u10Bi0kka1OO0cXfhMa3p0jRkMOclCc,5167
|
|
247
258
|
h2ogpte/rest_sync/models/match_collection_chunks_request.py,sha256=GP2-yP-VAjnHpLvE6BzXSqu9p3o-bxmnBXGIgATPFeI,5413
|
|
248
259
|
h2ogpte/rest_sync/models/message_vote_update_request.py,sha256=mK1_OWtDKKS-gOODIHSiwnQi1-a8n3AGFmfytop01Sg,4415
|
|
249
260
|
h2ogpte/rest_sync/models/model.py,sha256=mQ3bPeye9CMxRxnO3EI-2dwnPXHxvOTtyK2_ceUvbgw,5110
|
|
@@ -255,7 +266,7 @@ h2ogpte/rest_sync/models/performance_stats_per_model.py,sha256=4qwgWTxcd3DBWb-xX
|
|
|
255
266
|
h2ogpte/rest_sync/models/permission_check_request.py,sha256=pcriKBIP-ezilS_j-IhMdRu_s-vLcbPDnXRqr9cT918,4427
|
|
256
267
|
h2ogpte/rest_sync/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6H0yPWK8O-RVgAYtpM0m3PPc,4453
|
|
257
268
|
h2ogpte/rest_sync/models/process_document_job_request.py,sha256=Iik2hNW9WJBVDUqtIsdNrpbqfXgNtlbauPbBVI83x50,16879
|
|
258
|
-
h2ogpte/rest_sync/models/prompt_template.py,sha256=
|
|
269
|
+
h2ogpte/rest_sync/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
|
|
259
270
|
h2ogpte/rest_sync/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
|
|
260
271
|
h2ogpte/rest_sync/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
|
|
261
272
|
h2ogpte/rest_sync/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
|
|
@@ -286,6 +297,8 @@ h2ogpte/rest_sync/models/update_agent_tool_preference_request.py,sha256=GguSv4qE
|
|
|
286
297
|
h2ogpte/rest_sync/models/update_collection_expiry_date_request.py,sha256=k05IhX5JNxQFYDohULzszbCMQtaQ6pKdqdocKEzTNqc,4763
|
|
287
298
|
h2ogpte/rest_sync/models/update_collection_inactivity_interval_request.py,sha256=6qa2f28otYxlHQymupYtUkK_HtJCX_J0wzQ3DeeUSCQ,4623
|
|
288
299
|
h2ogpte/rest_sync/models/update_collection_privacy_request.py,sha256=58BglOQ_GM1MYe89oKL99XOKYUwuEtY1XqmyPo9QBzg,4548
|
|
300
|
+
h2ogpte/rest_sync/models/update_custom_agent_tool200_response.py,sha256=aNpqXIPr9J0PC2XGAhQBDXu2aWjXf2yuwDeImkChjeY,4611
|
|
301
|
+
h2ogpte/rest_sync/models/update_custom_agent_tool_request.py,sha256=Wz6nEziQ_8Po0MRTmkDVVHRJqMWW3tipBgbONX_Bisk,4515
|
|
289
302
|
h2ogpte/rest_sync/models/update_default_prompt_template_visibility_request.py,sha256=VqM5DHrSuTDJlZRmMP2h9s0gz_2f4-XdJ6g2sBY32RE,4627
|
|
290
303
|
h2ogpte/rest_sync/models/update_prompt_template_privacy_request.py,sha256=IEddiGtA3kWZmOshripk-leV_c4GqXp2emPJl4zygsg,4569
|
|
291
304
|
h2ogpte/rest_sync/models/update_qa_feedback_request.py,sha256=m5MtLO5sZwyv52IQdPzhOpK9uLS6pC7rhDKwp29ypv8,4548
|
|
@@ -296,10 +309,11 @@ h2ogpte/rest_sync/models/usage_stats_per_model.py,sha256=6sueQPGVAni3VfxssZCDJfi
|
|
|
296
309
|
h2ogpte/rest_sync/models/usage_stats_per_model_and_user.py,sha256=aSFQ2BW1BUlS37-uU2dH9W8K_oFMcXM9-TlVfS9oPpM,5553
|
|
297
310
|
h2ogpte/rest_sync/models/usage_stats_per_user.py,sha256=kE4nAS1dk6ysZwlE8_TEV77BjG78MpxipPq20ahPPMo,5159
|
|
298
311
|
h2ogpte/rest_sync/models/user_configuration_item.py,sha256=hDcCkPjzWeFIu1iGgPpWMgYKTDMrzkqOsn9OK84bbQ8,4601
|
|
312
|
+
h2ogpte/rest_sync/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiPOZS2QPW8qQk3vEZdwslQ,4536
|
|
299
313
|
h2ogpte/rest_sync/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
|
|
300
314
|
h2ogpte/rest_sync/models/user_job_details.py,sha256=9cbhpgLMDpar-aTOaY5Ygud-8Kbi23cLNldTGab0Sd8,4984
|
|
301
315
|
h2ogpte/rest_sync/models/user_permission.py,sha256=9ffijaF3U3SYz_T_kcqHPJUfIZFkpCH0vBGboPjsg2o,4646
|
|
302
|
-
h2ogpte-1.6.
|
|
303
|
-
h2ogpte-1.6.
|
|
304
|
-
h2ogpte-1.6.
|
|
305
|
-
h2ogpte-1.6.
|
|
316
|
+
h2ogpte-1.6.40rc1.dist-info/METADATA,sha256=82_5r4_0SAkMV9PSx3NhWa6KqUm_RBswXQ3T-ewotv0,7521
|
|
317
|
+
h2ogpte-1.6.40rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
318
|
+
h2ogpte-1.6.40rc1.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
|
|
319
|
+
h2ogpte-1.6.40rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|