h2ogpte 1.6.42__py3-none-any.whl → 1.6.43rc1__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/cli/__init__.py +0 -0
- h2ogpte/cli/commands/__init__.py +0 -0
- h2ogpte/cli/commands/command_handlers/__init__.py +0 -0
- h2ogpte/cli/commands/command_handlers/agent.py +41 -0
- h2ogpte/cli/commands/command_handlers/chat.py +37 -0
- h2ogpte/cli/commands/command_handlers/clear.py +8 -0
- h2ogpte/cli/commands/command_handlers/collection.py +67 -0
- h2ogpte/cli/commands/command_handlers/config.py +113 -0
- h2ogpte/cli/commands/command_handlers/disconnect.py +36 -0
- h2ogpte/cli/commands/command_handlers/exit.py +37 -0
- h2ogpte/cli/commands/command_handlers/help.py +8 -0
- h2ogpte/cli/commands/command_handlers/history.py +29 -0
- h2ogpte/cli/commands/command_handlers/rag.py +146 -0
- h2ogpte/cli/commands/command_handlers/research_agent.py +45 -0
- h2ogpte/cli/commands/command_handlers/session.py +77 -0
- h2ogpte/cli/commands/command_handlers/status.py +33 -0
- h2ogpte/cli/commands/dispatcher.py +79 -0
- h2ogpte/cli/core/__init__.py +0 -0
- h2ogpte/cli/core/app.py +105 -0
- h2ogpte/cli/core/config.py +199 -0
- h2ogpte/cli/core/encryption.py +104 -0
- h2ogpte/cli/core/session.py +171 -0
- h2ogpte/cli/integrations/__init__.py +0 -0
- h2ogpte/cli/integrations/agent.py +338 -0
- h2ogpte/cli/integrations/rag.py +442 -0
- h2ogpte/cli/main.py +90 -0
- h2ogpte/cli/ui/__init__.py +0 -0
- h2ogpte/cli/ui/hbot_prompt.py +435 -0
- h2ogpte/cli/ui/prompts.py +129 -0
- h2ogpte/cli/ui/status_bar.py +133 -0
- h2ogpte/cli/utils/__init__.py +0 -0
- h2ogpte/cli/utils/file_manager.py +411 -0
- h2ogpte/h2ogpte.py +471 -67
- h2ogpte/h2ogpte_async.py +482 -68
- h2ogpte/h2ogpte_sync_base.py +8 -1
- h2ogpte/rest_async/__init__.py +6 -3
- h2ogpte/rest_async/api/chat_api.py +29 -0
- h2ogpte/rest_async/api/collections_api.py +293 -0
- h2ogpte/rest_async/api/extractors_api.py +2874 -70
- h2ogpte/rest_async/api/prompt_templates_api.py +32 -32
- h2ogpte/rest_async/api_client.py +1 -1
- h2ogpte/rest_async/configuration.py +1 -1
- h2ogpte/rest_async/models/__init__.py +5 -2
- h2ogpte/rest_async/models/chat_completion.py +4 -2
- h2ogpte/rest_async/models/chat_completion_delta.py +5 -3
- h2ogpte/rest_async/models/chat_completion_request.py +1 -1
- h2ogpte/rest_async/models/chat_session.py +4 -2
- h2ogpte/rest_async/models/chat_settings.py +1 -1
- h2ogpte/rest_async/models/collection.py +4 -2
- h2ogpte/rest_async/models/collection_create_request.py +4 -2
- h2ogpte/rest_async/models/create_chat_session_request.py +87 -0
- h2ogpte/rest_async/models/extraction_request.py +1 -1
- h2ogpte/rest_async/models/extractor.py +4 -2
- h2ogpte/rest_async/models/guardrails_settings.py +8 -4
- h2ogpte/rest_async/models/guardrails_settings_create_request.py +1 -1
- h2ogpte/rest_async/models/process_document_job_request.py +1 -1
- h2ogpte/rest_async/models/question_request.py +1 -1
- h2ogpte/rest_async/models/{reset_and_share_prompt_template_request.py → reset_and_share_request.py} +6 -6
- h2ogpte/{rest_sync/models/reset_and_share_prompt_template_with_groups_request.py → rest_async/models/reset_and_share_with_groups_request.py} +6 -6
- h2ogpte/rest_async/models/summarize_request.py +1 -1
- h2ogpte/rest_async/models/update_collection_workspace_request.py +87 -0
- h2ogpte/rest_async/models/update_extractor_privacy_request.py +87 -0
- h2ogpte/rest_sync/__init__.py +6 -3
- h2ogpte/rest_sync/api/chat_api.py +29 -0
- h2ogpte/rest_sync/api/collections_api.py +293 -0
- h2ogpte/rest_sync/api/extractors_api.py +2874 -70
- h2ogpte/rest_sync/api/prompt_templates_api.py +32 -32
- h2ogpte/rest_sync/api_client.py +1 -1
- h2ogpte/rest_sync/configuration.py +1 -1
- h2ogpte/rest_sync/models/__init__.py +5 -2
- h2ogpte/rest_sync/models/chat_completion.py +4 -2
- h2ogpte/rest_sync/models/chat_completion_delta.py +5 -3
- h2ogpte/rest_sync/models/chat_completion_request.py +1 -1
- h2ogpte/rest_sync/models/chat_session.py +4 -2
- h2ogpte/rest_sync/models/chat_settings.py +1 -1
- h2ogpte/rest_sync/models/collection.py +4 -2
- h2ogpte/rest_sync/models/collection_create_request.py +4 -2
- h2ogpte/rest_sync/models/create_chat_session_request.py +87 -0
- h2ogpte/rest_sync/models/extraction_request.py +1 -1
- h2ogpte/rest_sync/models/extractor.py +4 -2
- h2ogpte/rest_sync/models/guardrails_settings.py +8 -4
- h2ogpte/rest_sync/models/guardrails_settings_create_request.py +1 -1
- h2ogpte/rest_sync/models/process_document_job_request.py +1 -1
- h2ogpte/rest_sync/models/question_request.py +1 -1
- h2ogpte/rest_sync/models/{reset_and_share_prompt_template_request.py → reset_and_share_request.py} +6 -6
- h2ogpte/{rest_async/models/reset_and_share_prompt_template_with_groups_request.py → rest_sync/models/reset_and_share_with_groups_request.py} +6 -6
- h2ogpte/rest_sync/models/summarize_request.py +1 -1
- h2ogpte/rest_sync/models/update_collection_workspace_request.py +87 -0
- h2ogpte/rest_sync/models/update_extractor_privacy_request.py +87 -0
- h2ogpte/session.py +3 -2
- h2ogpte/session_async.py +22 -6
- h2ogpte/types.py +6 -0
- {h2ogpte-1.6.42.dist-info → h2ogpte-1.6.43rc1.dist-info}/METADATA +5 -1
- {h2ogpte-1.6.42.dist-info → h2ogpte-1.6.43rc1.dist-info}/RECORD +98 -59
- h2ogpte-1.6.43rc1.dist-info/entry_points.txt +2 -0
- {h2ogpte-1.6.42.dist-info → h2ogpte-1.6.43rc1.dist-info}/WHEEL +0 -0
- {h2ogpte-1.6.42.dist-info → h2ogpte-1.6.43rc1.dist-info}/top_level.txt +0 -0
h2ogpte/types.py
CHANGED
|
@@ -11,6 +11,7 @@ class JobKind(str, Enum):
|
|
|
11
11
|
IngestAgentOnlyToStandardJob = "IngestAgentOnlyToStandardJob"
|
|
12
12
|
IngestFromFileSystemJob = "IngestFromFileSystemJob"
|
|
13
13
|
IngestFromCloudStorageJob = "IngestFromCloudStorageJob"
|
|
14
|
+
IngestWithScheduledConnectorJob = "IngestWithScheduledConnectorJob"
|
|
14
15
|
IngestPlainTextJob = "IngestPlainTextJob"
|
|
15
16
|
IngestUploadsJob = "IngestUploadsJob"
|
|
16
17
|
IngestWebsiteJob = "IngestWebsiteJob"
|
|
@@ -150,6 +151,7 @@ class ChatSessionInfo(BaseModel):
|
|
|
150
151
|
collection_name: Optional[str] = None
|
|
151
152
|
prompt_template_id: Optional[str] = None
|
|
152
153
|
updated_at: datetime
|
|
154
|
+
workspace: Optional[str] = None
|
|
153
155
|
|
|
154
156
|
|
|
155
157
|
class QuestionReplyData(BaseModel):
|
|
@@ -244,6 +246,7 @@ class Collection(BaseModel):
|
|
|
244
246
|
expiry_date: Optional[datetime] = None
|
|
245
247
|
inactivity_interval: Optional[int] = None
|
|
246
248
|
size_limit: Optional[int] = None
|
|
249
|
+
workspace: Optional[str] = None
|
|
247
250
|
|
|
248
251
|
|
|
249
252
|
class CollectionCount(BaseModel):
|
|
@@ -267,6 +270,7 @@ class CollectionInfo(BaseModel):
|
|
|
267
270
|
archived_at: Optional[datetime] = None
|
|
268
271
|
size_limit: Optional[int] = None
|
|
269
272
|
metadata_dict: Optional[dict] = None
|
|
273
|
+
workspace: Optional[str] = None
|
|
270
274
|
|
|
271
275
|
|
|
272
276
|
class Document(BaseModel):
|
|
@@ -300,6 +304,7 @@ class Extractor(BaseModel):
|
|
|
300
304
|
llm: Optional[str] = None
|
|
301
305
|
# can't use name schema as it conflicts with BaseModel's internals
|
|
302
306
|
extractor_schema: Optional[Dict[str, Any]] = None
|
|
307
|
+
is_public: bool
|
|
303
308
|
|
|
304
309
|
|
|
305
310
|
class Tag(BaseModel):
|
|
@@ -476,6 +481,7 @@ class Meta(BaseModel):
|
|
|
476
481
|
user_configs: List[ConfigItem]
|
|
477
482
|
picture: Optional[str]
|
|
478
483
|
groups: Optional[List[str]]
|
|
484
|
+
workspaces: Optional[List[str]]
|
|
479
485
|
permissions: List[str]
|
|
480
486
|
ui_config: MetaUIConfig
|
|
481
487
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: h2ogpte
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.43rc1
|
|
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
|
|
@@ -34,6 +34,10 @@ Requires-Dist: h2o_authn
|
|
|
34
34
|
Requires-Dist: packaging
|
|
35
35
|
Requires-Dist: filetype
|
|
36
36
|
Requires-Dist: tzlocal
|
|
37
|
+
Requires-Dist: rich>=13.7.0
|
|
38
|
+
Requires-Dist: pathspec>=0.12.0
|
|
39
|
+
Requires-Dist: gitpython>=3.1.40
|
|
40
|
+
Requires-Dist: toml>=0.10.2
|
|
37
41
|
|
|
38
42
|
### Python Client and Documentation
|
|
39
43
|
|
|
@@ -1,37 +1,69 @@
|
|
|
1
|
-
h2ogpte/__init__.py,sha256=
|
|
1
|
+
h2ogpte/__init__.py,sha256=upCMM1CTW4i9GQ75JxSYOJddOtnCY1aSJcXTmBz5yoI,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=
|
|
6
|
-
h2ogpte/h2ogpte_sync_base.py,sha256=
|
|
7
|
-
h2ogpte/session.py,sha256=
|
|
8
|
-
h2ogpte/session_async.py,sha256=
|
|
4
|
+
h2ogpte/h2ogpte.py,sha256=-NZvdsBej4EviOP8V11lRVRhVc1Zeys9EZvSopohGlI,300977
|
|
5
|
+
h2ogpte/h2ogpte_async.py,sha256=MWQoOHEguw5ORY5waYkuhdNXTMc9JHNB5AsvUsD5MSY,320826
|
|
6
|
+
h2ogpte/h2ogpte_sync_base.py,sha256=ftsVzpMqEsyi0UACMI-7H_EIYEx9JEdEUImbyjWy_Hc,15285
|
|
7
|
+
h2ogpte/session.py,sha256=slX7fmxoQGSxf3e19LFPOly5w6vsTvarVUWxCtQwg-s,30957
|
|
8
|
+
h2ogpte/session_async.py,sha256=3IWTrwILYGAeWhnWlPNiejqq4_XxZnJ7kluzlcmiwyQ,29703
|
|
9
9
|
h2ogpte/shared_client.py,sha256=Zh24myL--5JDdrKoJPW4aeprHX6a_oB9o461Ho3hnU8,14691
|
|
10
|
-
h2ogpte/types.py,sha256=
|
|
10
|
+
h2ogpte/types.py,sha256=9-Qjag0PTo3rf8ICVQKzqRIo63DHthUzn9HagPB--SY,15132
|
|
11
11
|
h2ogpte/utils.py,sha256=Z9n57xxPu0KtsCzkJ9V_VgTW--oG_aXTLBgmXDWSdnM,3201
|
|
12
|
-
h2ogpte/
|
|
13
|
-
h2ogpte/
|
|
12
|
+
h2ogpte/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
h2ogpte/cli/main.py,sha256=Upf3t_5m1RqLh1jKGB6Gbyp3n9sujVny7sY-qxh2PYo,2722
|
|
14
|
+
h2ogpte/cli/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
h2ogpte/cli/commands/dispatcher.py,sha256=OOIfVW6qNyyjTGiJNDkBmTLwjbMDQ4v52xXNl-FcsNQ,2759
|
|
16
|
+
h2ogpte/cli/commands/command_handlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
+
h2ogpte/cli/commands/command_handlers/agent.py,sha256=pWZFTDN0VGa5UXjl2XN0ij9DQVudp8Tr6Jy-lxe8YNM,1436
|
|
18
|
+
h2ogpte/cli/commands/command_handlers/chat.py,sha256=GBBsslXu9boERPrFeHCc1scZQ0foIwJQYyK6WFRImsg,1268
|
|
19
|
+
h2ogpte/cli/commands/command_handlers/clear.py,sha256=USSDI9M4fOBE4tqLAJr5iTLsAsMp_FhCPn1oZ-Okwiw,175
|
|
20
|
+
h2ogpte/cli/commands/command_handlers/collection.py,sha256=uMWyJD6QkjXJ4E_NmRdgDqatkQYjadIPdsXyEvn_RwA,2237
|
|
21
|
+
h2ogpte/cli/commands/command_handlers/config.py,sha256=DBJiRyYikd62Tw7w7uH8wccnSIntXFW0yPFrvl5RYPg,4188
|
|
22
|
+
h2ogpte/cli/commands/command_handlers/disconnect.py,sha256=KmroGy5SiNvHvg6edYXiAqL0f-zR3tl55sVMTwjNBJM,980
|
|
23
|
+
h2ogpte/cli/commands/command_handlers/exit.py,sha256=8GivT8HuS-WGQBjWrgsXqIapS4JfsM1AvNGZmXErsGw,1075
|
|
24
|
+
h2ogpte/cli/commands/command_handlers/help.py,sha256=lce_0W_-2mrQm0zGSEsLGuolY2XrrXj9maJQCh2jrJ0,180
|
|
25
|
+
h2ogpte/cli/commands/command_handlers/history.py,sha256=m1M0pTvidybnixXbPZwP7UKsJOODYN0cW2Ei-XDBGOw,956
|
|
26
|
+
h2ogpte/cli/commands/command_handlers/rag.py,sha256=EVyKYXmC9hnlmHjQaE8A7sTs_sAW2-eQdrbclw1LrJE,4378
|
|
27
|
+
h2ogpte/cli/commands/command_handlers/research_agent.py,sha256=3LfGJICzhihkod5CdfB9GntqyEbRuf8gAvnIBieN-8c,1559
|
|
28
|
+
h2ogpte/cli/commands/command_handlers/session.py,sha256=O3u8BC-3-QNy39EZUips7Oy9DgWk1WBVPfwVAdhSQHs,2130
|
|
29
|
+
h2ogpte/cli/commands/command_handlers/status.py,sha256=unkWIiJR43khlr_9lU_gjcHJj_9nuIWIVkQWK8DyTL0,875
|
|
30
|
+
h2ogpte/cli/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
+
h2ogpte/cli/core/app.py,sha256=TBf7nWd7TVpZbcmc10MoEpF-39WkrCK3OZ_ZaT1NiYI,3409
|
|
32
|
+
h2ogpte/cli/core/config.py,sha256=RIZs_Bpke9sYJq1EBCxw6yYp3JxjmE9NOEmOfkHVS1k,6915
|
|
33
|
+
h2ogpte/cli/core/encryption.py,sha256=gjWD5XI5N55dFYYDBsE3T1erRJ-w54PRa0SocwSOQRk,3421
|
|
34
|
+
h2ogpte/cli/core/session.py,sha256=62gCBr_JbESUbCT9Lz8Xvy3jVPkwQrNjKWeqvlStJHM,5890
|
|
35
|
+
h2ogpte/cli/integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
h2ogpte/cli/integrations/agent.py,sha256=vS4Njj0u2YJMMq2aMIM47NdpNMwym-T6YkfL4g-sCKc,11770
|
|
37
|
+
h2ogpte/cli/integrations/rag.py,sha256=2EdHph0QYZanNgYqCiPUz7TcWpOvHM3AXzZ-Bn2OJyI,16814
|
|
38
|
+
h2ogpte/cli/ui/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
h2ogpte/cli/ui/hbot_prompt.py,sha256=um7eZ3PKzbVep9Dnz0zo7vo2pB10eoASg9umGZjvIDY,18058
|
|
40
|
+
h2ogpte/cli/ui/prompts.py,sha256=bJvRe_32KppQTK5bqnsrPh0RS4JaY9KkiV7y-3v8PMQ,5384
|
|
41
|
+
h2ogpte/cli/ui/status_bar.py,sha256=hs2MLvkg-y3Aiu3gWRtgMXf3jv3DGe7Y47ucgoBAP7Y,3852
|
|
42
|
+
h2ogpte/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
+
h2ogpte/cli/utils/file_manager.py,sha256=ghNDX6G3Dr0vFvBYjbqx5o7qxq-pN8Vo2Rp1vyITfLo,13988
|
|
44
|
+
h2ogpte/rest_async/__init__.py,sha256=-EgRHSuMXBnMjN76waCl9Eu9ZaWk_Bj_-aRKsDkAwUM,15029
|
|
45
|
+
h2ogpte/rest_async/api_client.py,sha256=1e8Y6BXo5EEjYd46iZ4cp6uGNRhksmifZF2qytbvRJw,29510
|
|
14
46
|
h2ogpte/rest_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
15
|
-
h2ogpte/rest_async/configuration.py,sha256=
|
|
47
|
+
h2ogpte/rest_async/configuration.py,sha256=OTN_1ZMkbz8s_6534_yK4bgiiz6L_B1Gj-60uAnaq5U,19567
|
|
16
48
|
h2ogpte/rest_async/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
|
|
17
49
|
h2ogpte/rest_async/rest.py,sha256=mdjDwzJ1kiaYtONUfDRqKsRPw5-tG6eyZV2P1yBuwRo,9147
|
|
18
50
|
h2ogpte/rest_async/api/__init__.py,sha256=R_x57GGyaSgxZyrJOyOt551TodbRSQf3T7VrraQc-84,973
|
|
19
51
|
h2ogpte/rest_async/api/agents_api.py,sha256=_-7Y1h3ssEqqgjriUmuDnngbimbVifva75Z7ks3-wNw,177547
|
|
20
52
|
h2ogpte/rest_async/api/api_keys_api.py,sha256=hgywNjCWaIrhFRJacKuPkJSKDEltIK8B9fi-4xMWLgs,58244
|
|
21
|
-
h2ogpte/rest_async/api/chat_api.py,sha256=
|
|
22
|
-
h2ogpte/rest_async/api/collections_api.py,sha256=
|
|
53
|
+
h2ogpte/rest_async/api/chat_api.py,sha256=bJDJqTIXiTYW4anTkqE4XYuEqRDcRW8LcwlMgXyQQS4,295852
|
|
54
|
+
h2ogpte/rest_async/api/collections_api.py,sha256=fvB_HNR41uaS986lzitfIZ350grq6cAqsPZ2ZsvNY0A,639458
|
|
23
55
|
h2ogpte/rest_async/api/configurations_api.py,sha256=H9I2hukGC8ACin3cSUR3pAqtghJs0OUPJAzC9nOlkGY,127865
|
|
24
56
|
h2ogpte/rest_async/api/document_ingestion_api.py,sha256=otoR4L-DyWtShCr1aUiLHLz_KTr8pEwUXlyTLC0IS5c,435895
|
|
25
57
|
h2ogpte/rest_async/api/documents_api.py,sha256=X-w5x4bX2wHXlxb_97XgWdgNi5qAkdksoqz7bHKG5fA,261595
|
|
26
|
-
h2ogpte/rest_async/api/extractors_api.py,sha256=
|
|
58
|
+
h2ogpte/rest_async/api/extractors_api.py,sha256=BJXOzn14HruFfkGh0MlXm4zFGoxijcIrA0NZmjru-yE,161348
|
|
27
59
|
h2ogpte/rest_async/api/jobs_api.py,sha256=xXxqeDGy3ZA9KTF0Aowd5Rlt-gu2mXfD1S5Y6_-ST68,72519
|
|
28
60
|
h2ogpte/rest_async/api/models_api.py,sha256=oSJgvLsjPypYs3gIwElCl1IFx_gvjSokNTstHvWl5rM,221092
|
|
29
61
|
h2ogpte/rest_async/api/permissions_api.py,sha256=ykcgCy2vc4xUwvo-IkZk4p9UFslGNPbU5nrj7lzRJc0,369442
|
|
30
|
-
h2ogpte/rest_async/api/prompt_templates_api.py,sha256=
|
|
62
|
+
h2ogpte/rest_async/api/prompt_templates_api.py,sha256=RJnYC3jfhvx2L_vpTlU6kCqujs55aPf0kSDe0AG1zow,226547
|
|
31
63
|
h2ogpte/rest_async/api/secrets_api.py,sha256=MTtmpYO2IOXuCklK-BxVyF9aBNZebgWuQenada-uM7o,68122
|
|
32
64
|
h2ogpte/rest_async/api/system_api.py,sha256=wXxO1lFEnrPHO0JRCgg13j6CpRKb3nou81dk8nA31v0,12532
|
|
33
65
|
h2ogpte/rest_async/api/tags_api.py,sha256=VwamxhJKsuBu3UeslsZ0vflxbnV1FmUV2pbWvIBwvFk,56168
|
|
34
|
-
h2ogpte/rest_async/models/__init__.py,sha256=
|
|
66
|
+
h2ogpte/rest_async/models/__init__.py,sha256=77BO8yVb2Na42vIU9k0XTd-3jJqa8WzQ7QAbdaGOx5U,13518
|
|
35
67
|
h2ogpte/rest_async/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
|
|
36
68
|
h2ogpte/rest_async/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
|
|
37
69
|
h2ogpte/rest_async/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
|
|
@@ -46,21 +78,21 @@ h2ogpte/rest_async/models/api_key_info.py,sha256=5MgI1Yb68A4ixVEjQ9JrpQXE7LWG4jg
|
|
|
46
78
|
h2ogpte/rest_async/models/api_key_result.py,sha256=QhpQZ29WTkw8OiAfincxStqo_TDgM2SkPrm1J4r8NCU,4844
|
|
47
79
|
h2ogpte/rest_async/models/api_key_update_expiry_request.py,sha256=GTMkaqLOUqUpjxlCW6s31bM7md_YYC6sCozc7qd-lyA,4611
|
|
48
80
|
h2ogpte/rest_async/models/azure_credentials.py,sha256=hy6hv5Uf5CIGgO5S-2jVbO5N25QvEkiUxXnvItESoBA,4620
|
|
49
|
-
h2ogpte/rest_async/models/chat_completion.py,sha256=
|
|
50
|
-
h2ogpte/rest_async/models/chat_completion_delta.py,sha256=
|
|
51
|
-
h2ogpte/rest_async/models/chat_completion_request.py,sha256=
|
|
81
|
+
h2ogpte/rest_async/models/chat_completion.py,sha256=iVTiDzWJ7v5p_j37PO5aRdLrKhY98J_cl7eXTsymudU,4524
|
|
82
|
+
h2ogpte/rest_async/models/chat_completion_delta.py,sha256=TGEeMoSgBIph1YzTJYN2lYekboFo4btRRGtDbd5HHtw,4745
|
|
83
|
+
h2ogpte/rest_async/models/chat_completion_request.py,sha256=Z5IxW4YUaF0srK070pz-1_hqBZh2rBchQR8huaTGw3k,18814
|
|
52
84
|
h2ogpte/rest_async/models/chat_error.py,sha256=Ob1UB0nhrKdEGA5Z63VD_TdxokV-8CyA5m-NDgnwqt4,4355
|
|
53
85
|
h2ogpte/rest_async/models/chat_message.py,sha256=D46MmPf86LPKkcTJKcPyH-EFyMMkPRNOCC1jfQu0xYE,5768
|
|
54
86
|
h2ogpte/rest_async/models/chat_message_meta.py,sha256=dgM0NIDSdB6_MN7lEiR4frDFCVZa7C58UATW0SiJB2s,4484
|
|
55
87
|
h2ogpte/rest_async/models/chat_message_reference.py,sha256=P5_jxbgfNcwdzC7OgND27EbVemPKiZay0jsCYn8qqTs,5248
|
|
56
|
-
h2ogpte/rest_async/models/chat_session.py,sha256=
|
|
88
|
+
h2ogpte/rest_async/models/chat_session.py,sha256=RVvL2IvMzIQPJ2W6lheUJyN3i6kaffQ80ox66sivq_M,5199
|
|
57
89
|
h2ogpte/rest_async/models/chat_session_update_request.py,sha256=yiH14-IrQfbZ0qINIAyGgtrmhgDr-E-cmd9_5OVVHKU,4411
|
|
58
|
-
h2ogpte/rest_async/models/chat_settings.py,sha256=
|
|
90
|
+
h2ogpte/rest_async/models/chat_settings.py,sha256=IBRKuKy2sTfaadOpEc2nyNM2LJknDigGhw9NwCgbtxs,16712
|
|
59
91
|
h2ogpte/rest_async/models/chunk.py,sha256=4t2oms4W29WEYKi7KvzCArsLOaCOLYyyQRrJttlDUAU,4759
|
|
60
92
|
h2ogpte/rest_async/models/chunk_search_result.py,sha256=keifMKId0YhLFGzh5nv3jNCtQt7YciiwUd6-DsNckAs,4985
|
|
61
|
-
h2ogpte/rest_async/models/collection.py,sha256=
|
|
93
|
+
h2ogpte/rest_async/models/collection.py,sha256=NR9Ze5D8PNTDbSKWD3J5y9OiF_KdHEJnJmZKQJCkg00,9181
|
|
62
94
|
h2ogpte/rest_async/models/collection_change_request.py,sha256=CIb51wkIjmud3RPSqaEri7V7BB5Qa6kPPvL9nj6l4ao,4443
|
|
63
|
-
h2ogpte/rest_async/models/collection_create_request.py,sha256=
|
|
95
|
+
h2ogpte/rest_async/models/collection_create_request.py,sha256=PvIs2w1Brl8GsQwc__5GA-RSXR1wtbNcenl8kRETHeI,5926
|
|
64
96
|
h2ogpte/rest_async/models/collection_settings.py,sha256=u9t3OtsOYR-H1JKHX7nW7dalk-Kn0i3W8mvfYYcSoGk,9466
|
|
65
97
|
h2ogpte/rest_async/models/collection_update_request.py,sha256=Y2ojg5NqGbR_Lm_Pf-Aig46HyZ9OKBN4-iwT_PdAWco,6332
|
|
66
98
|
h2ogpte/rest_async/models/confirm_user_deletion_request.py,sha256=6L99MbScW_qbvxHKTv8dNJIQyY2L5ak13nYxvL4vBcs,4527
|
|
@@ -69,6 +101,7 @@ h2ogpte/rest_async/models/count_with_queue_details.py,sha256=6lj1DTij6PgabJ0aoa-
|
|
|
69
101
|
h2ogpte/rest_async/models/create_agent_key_request.py,sha256=fr6C3x6iDzF77bRsEwMDDO1MFSJxKEpm23VhJ2JGXtM,4927
|
|
70
102
|
h2ogpte/rest_async/models/create_agent_tool_key_associations_request.py,sha256=ufgon4AAWmh3zvAb-Mkp2zeLmEsmnE5cVm63Dvlc4ho,5013
|
|
71
103
|
h2ogpte/rest_async/models/create_agent_tool_request.py,sha256=0bsJAjZfGifvpPYrQtOA1ldAqtMSKYYJv6nGaM7bYdw,5213
|
|
104
|
+
h2ogpte/rest_async/models/create_chat_session_request.py,sha256=tj5pZ9ge-ZIq7Qer3pOuS1PnDO5iIvUAwrnlMgklZkg,4624
|
|
72
105
|
h2ogpte/rest_async/models/create_import_collection_to_collection_job_request.py,sha256=NgxLr2wTyvuFiHBn-Srp7mrdRyqKHEA2M9v6eSxEnqg,4622
|
|
73
106
|
h2ogpte/rest_async/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
|
|
74
107
|
h2ogpte/rest_async/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
|
|
@@ -84,16 +117,16 @@ h2ogpte/rest_async/models/document_update_request.py,sha256=5SGd54ZqiHSqPbT_wggl
|
|
|
84
117
|
h2ogpte/rest_async/models/embedding_model.py,sha256=Az8OIiycqS9iuFX9li2MKN01om-L6XNdJlTftf_NAns,4838
|
|
85
118
|
h2ogpte/rest_async/models/encode_chunks_for_retrieval_request.py,sha256=pNt-ysMzqNyXbKFI3Repuq6ciaF1jFkADMxGvZjF518,4453
|
|
86
119
|
h2ogpte/rest_async/models/endpoint_error.py,sha256=jzaoCDJO1O_CtfdBQCsJCFhzzJDJQQnGxTpVq7cdH50,4533
|
|
87
|
-
h2ogpte/rest_async/models/extraction_request.py,sha256=
|
|
88
|
-
h2ogpte/rest_async/models/extractor.py,sha256=
|
|
120
|
+
h2ogpte/rest_async/models/extraction_request.py,sha256=ZEiwpPblCBogu5IbRTPd0YBz3lnPi5nCuGe9K4GqjGE,14333
|
|
121
|
+
h2ogpte/rest_async/models/extractor.py,sha256=pAFE_9ktgBah_h6GITkoqnuWYhZWb8PlUb2KxMwm9j0,5401
|
|
89
122
|
h2ogpte/rest_async/models/extractor_create_request.py,sha256=xvDXyXOUcKTLxYMljOBGgt6d-w7m5gdCIXXf220sVb8,4911
|
|
90
123
|
h2ogpte/rest_async/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
|
|
91
124
|
h2ogpte/rest_async/models/global_configuration_item.py,sha256=MnA0ysC34KZue6R3zDVERQPbQGglz47kMNFSlXH0_CM,4980
|
|
92
125
|
h2ogpte/rest_async/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
|
|
93
126
|
h2ogpte/rest_async/models/group_info.py,sha256=H3fTrANe9edylqnoDGLmGmL84TQLGdif2XKH1YDdEJA,4528
|
|
94
127
|
h2ogpte/rest_async/models/group_share_permission.py,sha256=k79A1zbMKie-zKPfBOfpMsOc453oHVh6Ixwf4dnTkuQ,4537
|
|
95
|
-
h2ogpte/rest_async/models/guardrails_settings.py,sha256=
|
|
96
|
-
h2ogpte/rest_async/models/guardrails_settings_create_request.py,sha256=
|
|
128
|
+
h2ogpte/rest_async/models/guardrails_settings.py,sha256=l7LpRz9w97LtoVyYMxoY8cXx6saMzXLqkDMRnAYA3SA,10884
|
|
129
|
+
h2ogpte/rest_async/models/guardrails_settings_create_request.py,sha256=6DMke_u-1mt8DwtsGoW3n6U9FCq-rqmuyM4VSOnZyZk,6715
|
|
97
130
|
h2ogpte/rest_async/models/h2_ogpt_system_info.py,sha256=6pBoTwU-QOh3oSk48drmuFhOcv9zEEzsWXvn-P4LIHk,8652
|
|
98
131
|
h2ogpte/rest_async/models/h2_ogptgpu_info.py,sha256=gUdC0izDgwpyRBJa9_bua6BYnJo8K0H9nG_E4kO_pNE,5124
|
|
99
132
|
h2ogpte/rest_async/models/ingest_from_azure_blob_storage_body.py,sha256=ouEUrdMYJU8kcjTOD8FfzPiaZYwU6RJFP6DYfY9oNyk,5470
|
|
@@ -116,16 +149,16 @@ h2ogpte/rest_async/models/new_key_association.py,sha256=zHJl6QiKz0WQmcxXuHaIvX9C
|
|
|
116
149
|
h2ogpte/rest_async/models/performance_stats_per_model.py,sha256=4qwgWTxcd3DBWb-xXe3EA-c9UUI2yW0c6uXPXqGOEqg,5027
|
|
117
150
|
h2ogpte/rest_async/models/permission_check_request.py,sha256=pcriKBIP-ezilS_j-IhMdRu_s-vLcbPDnXRqr9cT918,4427
|
|
118
151
|
h2ogpte/rest_async/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6H0yPWK8O-RVgAYtpM0m3PPc,4453
|
|
119
|
-
h2ogpte/rest_async/models/process_document_job_request.py,sha256=
|
|
152
|
+
h2ogpte/rest_async/models/process_document_job_request.py,sha256=5Irk2_XvyzFe2fzXCPgQqKPGmCEHZld4rzAepVYcscg,17130
|
|
120
153
|
h2ogpte/rest_async/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
|
|
121
154
|
h2ogpte/rest_async/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
|
|
122
155
|
h2ogpte/rest_async/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
|
|
123
156
|
h2ogpte/rest_async/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
|
|
124
157
|
h2ogpte/rest_async/models/qa_feedback.py,sha256=zDjk10nkg11uxpqOWesPAs3oLy2YtUAH-qEUPsI0JbQ,6639
|
|
125
|
-
h2ogpte/rest_async/models/question_request.py,sha256=
|
|
158
|
+
h2ogpte/rest_async/models/question_request.py,sha256=d9jocPzGZnEjq6glsg2w_Jfcx4eA_pxCeuv4nIjDH34,14888
|
|
126
159
|
h2ogpte/rest_async/models/queue_details.py,sha256=ffvSZXw07Zzy-MNwwUtN2Ws_4C_d-rG7dUj5iU7a-bs,4447
|
|
127
|
-
h2ogpte/rest_async/models/
|
|
128
|
-
h2ogpte/rest_async/models/
|
|
160
|
+
h2ogpte/rest_async/models/reset_and_share_request.py,sha256=HgEEFRR4zKecqCGaGnzrY6Cow0gYOlVqbDHmaPIRvKw,4421
|
|
161
|
+
h2ogpte/rest_async/models/reset_and_share_with_groups_request.py,sha256=6IwfFIjAAlGNqjEhmHO7_2yKk64qkxvDz9ZqRrWIUrg,4449
|
|
129
162
|
h2ogpte/rest_async/models/role_create_request.py,sha256=UayaEOpH_Qx8AYff5cFALodAmbTaO4YphBsMM2lHHFI,4476
|
|
130
163
|
h2ogpte/rest_async/models/role_info.py,sha256=gCcSiqjkux4zFt0cR9CQDaeWgSneVQJ11JgthdtQUms,4633
|
|
131
164
|
h2ogpte/rest_async/models/roles_reset_request.py,sha256=W5cKp897NVOwlWX-GR9OZ1THtqWDhjmCibadKZSa9i4,4409
|
|
@@ -139,7 +172,7 @@ h2ogpte/rest_async/models/set_user_configuration_request.py,sha256=SugNBbL7tBz8r
|
|
|
139
172
|
h2ogpte/rest_async/models/share_collection_request.py,sha256=OPuk_vuXLmsPr3QnpMHDQqAEzEiaJtgAlOrcCGLJRt4,4557
|
|
140
173
|
h2ogpte/rest_async/models/share_permission.py,sha256=-pHNoUt8SzKCpq7b8WiODhQenzWcDA5fxiqywVDrb6k,4517
|
|
141
174
|
h2ogpte/rest_async/models/suggested_question.py,sha256=RcXlzaTsj-GFtT5gGuiHkNHtNXqlE5MsO-P6S1y2YgI,4399
|
|
142
|
-
h2ogpte/rest_async/models/summarize_request.py,sha256=
|
|
175
|
+
h2ogpte/rest_async/models/summarize_request.py,sha256=n4oH7RobynTo5ozF-gCCzZneJTtzWN6LzD1_GBwTYIM,14653
|
|
143
176
|
h2ogpte/rest_async/models/tag.py,sha256=rnE0UXIzF3tqM9EWXRZ1oY3OU1Piq5MOU9t2svwgk3w,4594
|
|
144
177
|
h2ogpte/rest_async/models/tag_create_request.py,sha256=jETninpugqtUUkwHmcUZj3hj1qbSqcb7xLxnHkB1CCE,4379
|
|
145
178
|
h2ogpte/rest_async/models/tag_update_request.py,sha256=QD9iUZIqaUsuobauQF_f6OkyRE2bTG3O6f1N2pqBnBM,4524
|
|
@@ -148,9 +181,11 @@ h2ogpte/rest_async/models/update_agent_tool_preference_request.py,sha256=GguSv4q
|
|
|
148
181
|
h2ogpte/rest_async/models/update_collection_expiry_date_request.py,sha256=k05IhX5JNxQFYDohULzszbCMQtaQ6pKdqdocKEzTNqc,4763
|
|
149
182
|
h2ogpte/rest_async/models/update_collection_inactivity_interval_request.py,sha256=6qa2f28otYxlHQymupYtUkK_HtJCX_J0wzQ3DeeUSCQ,4623
|
|
150
183
|
h2ogpte/rest_async/models/update_collection_privacy_request.py,sha256=58BglOQ_GM1MYe89oKL99XOKYUwuEtY1XqmyPo9QBzg,4548
|
|
184
|
+
h2ogpte/rest_async/models/update_collection_workspace_request.py,sha256=rpEBNrojj88KR8g-FfckKktPPTTJD4ZsrRVcQ-Qkt4U,4557
|
|
151
185
|
h2ogpte/rest_async/models/update_custom_agent_tool200_response.py,sha256=aNpqXIPr9J0PC2XGAhQBDXu2aWjXf2yuwDeImkChjeY,4611
|
|
152
186
|
h2ogpte/rest_async/models/update_custom_agent_tool_request.py,sha256=Wz6nEziQ_8Po0MRTmkDVVHRJqMWW3tipBgbONX_Bisk,4515
|
|
153
187
|
h2ogpte/rest_async/models/update_default_prompt_template_visibility_request.py,sha256=VqM5DHrSuTDJlZRmMP2h9s0gz_2f4-XdJ6g2sBY32RE,4627
|
|
188
|
+
h2ogpte/rest_async/models/update_extractor_privacy_request.py,sha256=G9BWe2TKasvH6sf1dOx0v3sybRV2YMlEtFNvSL07DWM,4543
|
|
154
189
|
h2ogpte/rest_async/models/update_prompt_template_privacy_request.py,sha256=IEddiGtA3kWZmOshripk-leV_c4GqXp2emPJl4zygsg,4569
|
|
155
190
|
h2ogpte/rest_async/models/update_qa_feedback_request.py,sha256=m5MtLO5sZwyv52IQdPzhOpK9uLS6pC7rhDKwp29ypv8,4548
|
|
156
191
|
h2ogpte/rest_async/models/update_secret_request.py,sha256=85cHQ1zCxSOobvqFKrvL1T4p2sS3wmdiOG-Rm8n5iNU,4473
|
|
@@ -164,29 +199,29 @@ h2ogpte/rest_async/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJii
|
|
|
164
199
|
h2ogpte/rest_async/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
|
|
165
200
|
h2ogpte/rest_async/models/user_job_details.py,sha256=kzu8fLxVsRMgnyt6dLr0VWjlIoE3i1VRpGR9nDxFyk4,4985
|
|
166
201
|
h2ogpte/rest_async/models/user_permission.py,sha256=9ffijaF3U3SYz_T_kcqHPJUfIZFkpCH0vBGboPjsg2o,4646
|
|
167
|
-
h2ogpte/rest_sync/__init__.py,sha256=
|
|
168
|
-
h2ogpte/rest_sync/api_client.py,sha256=
|
|
202
|
+
h2ogpte/rest_sync/__init__.py,sha256=MykSNFMQjC94YsYWOqGgUVpI8csu_7UB9wUwgIj9OTs,14870
|
|
203
|
+
h2ogpte/rest_sync/api_client.py,sha256=Q6lpPlvNEo6o8Dk7g8zttR4mtejmFCS8S7YfYDZHGhE,29397
|
|
169
204
|
h2ogpte/rest_sync/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
170
|
-
h2ogpte/rest_sync/configuration.py,sha256=
|
|
205
|
+
h2ogpte/rest_sync/configuration.py,sha256=TwXDNM1x6keqdnSulJo5y4FvzXxK4YGtE9W7Q__pI-A,19850
|
|
171
206
|
h2ogpte/rest_sync/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
|
|
172
207
|
h2ogpte/rest_sync/rest.py,sha256=evRzviTYC_fsrpTtFlGvruXmquH9C0jDn-oQrGrE5A0,11314
|
|
173
208
|
h2ogpte/rest_sync/api/__init__.py,sha256=ZuLQQtyiXnP5UOwTlIOYLGLQq1BG_0PEkzC9s698vjM,958
|
|
174
209
|
h2ogpte/rest_sync/api/agents_api.py,sha256=zWzPXtqHbhBe6xVZZKYl93bFLDVzNw2KmAJG5xIW6i0,176763
|
|
175
210
|
h2ogpte/rest_sync/api/api_keys_api.py,sha256=MueDC8Z4VUC61IVIBem0kD0Wpgh35MvhoilUtPVLrN0,57997
|
|
176
|
-
h2ogpte/rest_sync/api/chat_api.py,sha256=
|
|
177
|
-
h2ogpte/rest_sync/api/collections_api.py,sha256=
|
|
211
|
+
h2ogpte/rest_sync/api/chat_api.py,sha256=9DoF08mTxi3D7sYRkvOM76qB4crS13lb5QmTXtJIV1U,294582
|
|
212
|
+
h2ogpte/rest_sync/api/collections_api.py,sha256=3oTV2IuRV9l_8Wjb9ivQX7bQ6Ay6uFO6zIjbre1bSXs,636980
|
|
178
213
|
h2ogpte/rest_sync/api/configurations_api.py,sha256=B39KQB3fRknMZ8PtDNBxWVX2aVGTQSmaE2nq6Ya8VkE,127330
|
|
179
214
|
h2ogpte/rest_sync/api/document_ingestion_api.py,sha256=DppDRB7eAdh7k89q0_gRTiqmb2h0D71Vi2ymf5K1Tg8,435068
|
|
180
215
|
h2ogpte/rest_sync/api/documents_api.py,sha256=qRDBXrQaZWp_hGxg-7mqAFUMeeWd1EB2M_xIlzHh6rw,260474
|
|
181
|
-
h2ogpte/rest_sync/api/extractors_api.py,sha256=
|
|
216
|
+
h2ogpte/rest_sync/api/extractors_api.py,sha256=Dz7RCbNRIuraNszzMOLVYzBxwMJwFsqwFIXreMr7B-Y,160666
|
|
182
217
|
h2ogpte/rest_sync/api/jobs_api.py,sha256=LM9erEymF1SgEg8j4ePeNbUeJtwAGTMCI3Z4zRESehE,72177
|
|
183
218
|
h2ogpte/rest_sync/api/models_api.py,sha256=a5DuGNAEXeynqnPuFcvIWHtIBYfGKhn5uFi43aXSBgA,220111
|
|
184
219
|
h2ogpte/rest_sync/api/permissions_api.py,sha256=MiXD2duhCsA-QS-xR_uoY_piLmuYvw9gxr6HIGY3JPo,367795
|
|
185
|
-
h2ogpte/rest_sync/api/prompt_templates_api.py,sha256=
|
|
220
|
+
h2ogpte/rest_sync/api/prompt_templates_api.py,sha256=157y9lzY7Ky_ALu8TEemi0rfYzXrd4SJU1GxooXGJdg,225622
|
|
186
221
|
h2ogpte/rest_sync/api/secrets_api.py,sha256=5rAikvrX7n3Cj9M0ME-cPjISLpqrEFh2LmW23mvGk4g,67828
|
|
187
222
|
h2ogpte/rest_sync/api/system_api.py,sha256=knhP97lzeZt-YFTpcNJm9NdnqjoSg_Oh0yMGowiV1IM,12480
|
|
188
223
|
h2ogpte/rest_sync/api/tags_api.py,sha256=oCBsrFFLk0su8mz4wnCGSR_NxpCQgwEx18IwJKsOKrA,55921
|
|
189
|
-
h2ogpte/rest_sync/models/__init__.py,sha256=
|
|
224
|
+
h2ogpte/rest_sync/models/__init__.py,sha256=JJXT9QP_tMADlXrR_kXPdiqNDbT55OO1x_ahr8gn2Q4,13383
|
|
190
225
|
h2ogpte/rest_sync/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
|
|
191
226
|
h2ogpte/rest_sync/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
|
|
192
227
|
h2ogpte/rest_sync/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
|
|
@@ -201,21 +236,21 @@ h2ogpte/rest_sync/models/api_key_info.py,sha256=5MgI1Yb68A4ixVEjQ9JrpQXE7LWG4jgq
|
|
|
201
236
|
h2ogpte/rest_sync/models/api_key_result.py,sha256=LqAFDYGbIZCnOPKkKQD3PUvYhl5zKCWzS1ljLV5QJTU,4843
|
|
202
237
|
h2ogpte/rest_sync/models/api_key_update_expiry_request.py,sha256=GTMkaqLOUqUpjxlCW6s31bM7md_YYC6sCozc7qd-lyA,4611
|
|
203
238
|
h2ogpte/rest_sync/models/azure_credentials.py,sha256=hy6hv5Uf5CIGgO5S-2jVbO5N25QvEkiUxXnvItESoBA,4620
|
|
204
|
-
h2ogpte/rest_sync/models/chat_completion.py,sha256=
|
|
205
|
-
h2ogpte/rest_sync/models/chat_completion_delta.py,sha256=
|
|
206
|
-
h2ogpte/rest_sync/models/chat_completion_request.py,sha256=
|
|
239
|
+
h2ogpte/rest_sync/models/chat_completion.py,sha256=iVTiDzWJ7v5p_j37PO5aRdLrKhY98J_cl7eXTsymudU,4524
|
|
240
|
+
h2ogpte/rest_sync/models/chat_completion_delta.py,sha256=TGEeMoSgBIph1YzTJYN2lYekboFo4btRRGtDbd5HHtw,4745
|
|
241
|
+
h2ogpte/rest_sync/models/chat_completion_request.py,sha256=Z5IxW4YUaF0srK070pz-1_hqBZh2rBchQR8huaTGw3k,18814
|
|
207
242
|
h2ogpte/rest_sync/models/chat_error.py,sha256=Ob1UB0nhrKdEGA5Z63VD_TdxokV-8CyA5m-NDgnwqt4,4355
|
|
208
243
|
h2ogpte/rest_sync/models/chat_message.py,sha256=OLBO6sF7Wn8NC2Qf2anxGZYJ7YpWQTf8oI7ENcOSmQ8,5767
|
|
209
244
|
h2ogpte/rest_sync/models/chat_message_meta.py,sha256=dgM0NIDSdB6_MN7lEiR4frDFCVZa7C58UATW0SiJB2s,4484
|
|
210
245
|
h2ogpte/rest_sync/models/chat_message_reference.py,sha256=P5_jxbgfNcwdzC7OgND27EbVemPKiZay0jsCYn8qqTs,5248
|
|
211
|
-
h2ogpte/rest_sync/models/chat_session.py,sha256=
|
|
246
|
+
h2ogpte/rest_sync/models/chat_session.py,sha256=RVvL2IvMzIQPJ2W6lheUJyN3i6kaffQ80ox66sivq_M,5199
|
|
212
247
|
h2ogpte/rest_sync/models/chat_session_update_request.py,sha256=yiH14-IrQfbZ0qINIAyGgtrmhgDr-E-cmd9_5OVVHKU,4411
|
|
213
|
-
h2ogpte/rest_sync/models/chat_settings.py,sha256=
|
|
248
|
+
h2ogpte/rest_sync/models/chat_settings.py,sha256=IBRKuKy2sTfaadOpEc2nyNM2LJknDigGhw9NwCgbtxs,16712
|
|
214
249
|
h2ogpte/rest_sync/models/chunk.py,sha256=4t2oms4W29WEYKi7KvzCArsLOaCOLYyyQRrJttlDUAU,4759
|
|
215
250
|
h2ogpte/rest_sync/models/chunk_search_result.py,sha256=keifMKId0YhLFGzh5nv3jNCtQt7YciiwUd6-DsNckAs,4985
|
|
216
|
-
h2ogpte/rest_sync/models/collection.py,sha256=
|
|
251
|
+
h2ogpte/rest_sync/models/collection.py,sha256=NR9Ze5D8PNTDbSKWD3J5y9OiF_KdHEJnJmZKQJCkg00,9181
|
|
217
252
|
h2ogpte/rest_sync/models/collection_change_request.py,sha256=CIb51wkIjmud3RPSqaEri7V7BB5Qa6kPPvL9nj6l4ao,4443
|
|
218
|
-
h2ogpte/rest_sync/models/collection_create_request.py,sha256=
|
|
253
|
+
h2ogpte/rest_sync/models/collection_create_request.py,sha256=CUKFj3psED3tsIUMB8QXhsc-lsYGFzeqhaM17csK4gk,5924
|
|
219
254
|
h2ogpte/rest_sync/models/collection_settings.py,sha256=Q-yDvnVnZBlnH7gLgXP5rsnxZLVM4lxX2FEa40qb45o,9465
|
|
220
255
|
h2ogpte/rest_sync/models/collection_update_request.py,sha256=Y2ojg5NqGbR_Lm_Pf-Aig46HyZ9OKBN4-iwT_PdAWco,6332
|
|
221
256
|
h2ogpte/rest_sync/models/confirm_user_deletion_request.py,sha256=6L99MbScW_qbvxHKTv8dNJIQyY2L5ak13nYxvL4vBcs,4527
|
|
@@ -224,6 +259,7 @@ h2ogpte/rest_sync/models/count_with_queue_details.py,sha256=6FDySSWe7AuZRXql8tK5
|
|
|
224
259
|
h2ogpte/rest_sync/models/create_agent_key_request.py,sha256=fr6C3x6iDzF77bRsEwMDDO1MFSJxKEpm23VhJ2JGXtM,4927
|
|
225
260
|
h2ogpte/rest_sync/models/create_agent_tool_key_associations_request.py,sha256=AnGuikgliGQ3uMYuaHM6IpbeMiurIzzLdDDPwslcEfA,5012
|
|
226
261
|
h2ogpte/rest_sync/models/create_agent_tool_request.py,sha256=0bsJAjZfGifvpPYrQtOA1ldAqtMSKYYJv6nGaM7bYdw,5213
|
|
262
|
+
h2ogpte/rest_sync/models/create_chat_session_request.py,sha256=tj5pZ9ge-ZIq7Qer3pOuS1PnDO5iIvUAwrnlMgklZkg,4624
|
|
227
263
|
h2ogpte/rest_sync/models/create_import_collection_to_collection_job_request.py,sha256=NgxLr2wTyvuFiHBn-Srp7mrdRyqKHEA2M9v6eSxEnqg,4622
|
|
228
264
|
h2ogpte/rest_sync/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
|
|
229
265
|
h2ogpte/rest_sync/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
|
|
@@ -239,16 +275,16 @@ h2ogpte/rest_sync/models/document_update_request.py,sha256=5SGd54ZqiHSqPbT_wgglU
|
|
|
239
275
|
h2ogpte/rest_sync/models/embedding_model.py,sha256=Az8OIiycqS9iuFX9li2MKN01om-L6XNdJlTftf_NAns,4838
|
|
240
276
|
h2ogpte/rest_sync/models/encode_chunks_for_retrieval_request.py,sha256=pNt-ysMzqNyXbKFI3Repuq6ciaF1jFkADMxGvZjF518,4453
|
|
241
277
|
h2ogpte/rest_sync/models/endpoint_error.py,sha256=jzaoCDJO1O_CtfdBQCsJCFhzzJDJQQnGxTpVq7cdH50,4533
|
|
242
|
-
h2ogpte/rest_sync/models/extraction_request.py,sha256=
|
|
243
|
-
h2ogpte/rest_sync/models/extractor.py,sha256=
|
|
278
|
+
h2ogpte/rest_sync/models/extraction_request.py,sha256=pjROQA0yxtGDHBCjYkmhMiV2X7XQOwhUz_R8VWBIDV4,14332
|
|
279
|
+
h2ogpte/rest_sync/models/extractor.py,sha256=pAFE_9ktgBah_h6GITkoqnuWYhZWb8PlUb2KxMwm9j0,5401
|
|
244
280
|
h2ogpte/rest_sync/models/extractor_create_request.py,sha256=xvDXyXOUcKTLxYMljOBGgt6d-w7m5gdCIXXf220sVb8,4911
|
|
245
281
|
h2ogpte/rest_sync/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
|
|
246
282
|
h2ogpte/rest_sync/models/global_configuration_item.py,sha256=MnA0ysC34KZue6R3zDVERQPbQGglz47kMNFSlXH0_CM,4980
|
|
247
283
|
h2ogpte/rest_sync/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
|
|
248
284
|
h2ogpte/rest_sync/models/group_info.py,sha256=H3fTrANe9edylqnoDGLmGmL84TQLGdif2XKH1YDdEJA,4528
|
|
249
285
|
h2ogpte/rest_sync/models/group_share_permission.py,sha256=k79A1zbMKie-zKPfBOfpMsOc453oHVh6Ixwf4dnTkuQ,4537
|
|
250
|
-
h2ogpte/rest_sync/models/guardrails_settings.py,sha256=
|
|
251
|
-
h2ogpte/rest_sync/models/guardrails_settings_create_request.py,sha256=
|
|
286
|
+
h2ogpte/rest_sync/models/guardrails_settings.py,sha256=l7LpRz9w97LtoVyYMxoY8cXx6saMzXLqkDMRnAYA3SA,10884
|
|
287
|
+
h2ogpte/rest_sync/models/guardrails_settings_create_request.py,sha256=W3-vZsU0CuI6A2WAbbEZ0aZXIADxlVVh9jztGGnjWoc,6714
|
|
252
288
|
h2ogpte/rest_sync/models/h2_ogpt_system_info.py,sha256=eaFSINplInnPIW-dRO9K25AbQouNYngBI_JXX-AuY_w,8651
|
|
253
289
|
h2ogpte/rest_sync/models/h2_ogptgpu_info.py,sha256=gUdC0izDgwpyRBJa9_bua6BYnJo8K0H9nG_E4kO_pNE,5124
|
|
254
290
|
h2ogpte/rest_sync/models/ingest_from_azure_blob_storage_body.py,sha256=G_0SInDzFcpWWwnOEByjDir3QkMBiMxU4D-rGKeBSUU,5469
|
|
@@ -271,16 +307,16 @@ h2ogpte/rest_sync/models/new_key_association.py,sha256=zHJl6QiKz0WQmcxXuHaIvX9C8
|
|
|
271
307
|
h2ogpte/rest_sync/models/performance_stats_per_model.py,sha256=4qwgWTxcd3DBWb-xXe3EA-c9UUI2yW0c6uXPXqGOEqg,5027
|
|
272
308
|
h2ogpte/rest_sync/models/permission_check_request.py,sha256=pcriKBIP-ezilS_j-IhMdRu_s-vLcbPDnXRqr9cT918,4427
|
|
273
309
|
h2ogpte/rest_sync/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6H0yPWK8O-RVgAYtpM0m3PPc,4453
|
|
274
|
-
h2ogpte/rest_sync/models/process_document_job_request.py,sha256=
|
|
310
|
+
h2ogpte/rest_sync/models/process_document_job_request.py,sha256=wbRbLh2gvfiXHelvom81CTFJTMHna-vcaNr-nZufMf0,17129
|
|
275
311
|
h2ogpte/rest_sync/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
|
|
276
312
|
h2ogpte/rest_sync/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
|
|
277
313
|
h2ogpte/rest_sync/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
|
|
278
314
|
h2ogpte/rest_sync/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
|
|
279
315
|
h2ogpte/rest_sync/models/qa_feedback.py,sha256=zDjk10nkg11uxpqOWesPAs3oLy2YtUAH-qEUPsI0JbQ,6639
|
|
280
|
-
h2ogpte/rest_sync/models/question_request.py,sha256=
|
|
316
|
+
h2ogpte/rest_sync/models/question_request.py,sha256=ogu_5uVRpCuXY14s66onTs4MhIkrTXNGgMU88NgofcI,14887
|
|
281
317
|
h2ogpte/rest_sync/models/queue_details.py,sha256=ffvSZXw07Zzy-MNwwUtN2Ws_4C_d-rG7dUj5iU7a-bs,4447
|
|
282
|
-
h2ogpte/rest_sync/models/
|
|
283
|
-
h2ogpte/rest_sync/models/
|
|
318
|
+
h2ogpte/rest_sync/models/reset_and_share_request.py,sha256=HgEEFRR4zKecqCGaGnzrY6Cow0gYOlVqbDHmaPIRvKw,4421
|
|
319
|
+
h2ogpte/rest_sync/models/reset_and_share_with_groups_request.py,sha256=6IwfFIjAAlGNqjEhmHO7_2yKk64qkxvDz9ZqRrWIUrg,4449
|
|
284
320
|
h2ogpte/rest_sync/models/role_create_request.py,sha256=UayaEOpH_Qx8AYff5cFALodAmbTaO4YphBsMM2lHHFI,4476
|
|
285
321
|
h2ogpte/rest_sync/models/role_info.py,sha256=gCcSiqjkux4zFt0cR9CQDaeWgSneVQJ11JgthdtQUms,4633
|
|
286
322
|
h2ogpte/rest_sync/models/roles_reset_request.py,sha256=W5cKp897NVOwlWX-GR9OZ1THtqWDhjmCibadKZSa9i4,4409
|
|
@@ -294,7 +330,7 @@ h2ogpte/rest_sync/models/set_user_configuration_request.py,sha256=SugNBbL7tBz8r5
|
|
|
294
330
|
h2ogpte/rest_sync/models/share_collection_request.py,sha256=OPuk_vuXLmsPr3QnpMHDQqAEzEiaJtgAlOrcCGLJRt4,4557
|
|
295
331
|
h2ogpte/rest_sync/models/share_permission.py,sha256=-pHNoUt8SzKCpq7b8WiODhQenzWcDA5fxiqywVDrb6k,4517
|
|
296
332
|
h2ogpte/rest_sync/models/suggested_question.py,sha256=RcXlzaTsj-GFtT5gGuiHkNHtNXqlE5MsO-P6S1y2YgI,4399
|
|
297
|
-
h2ogpte/rest_sync/models/summarize_request.py,sha256=
|
|
333
|
+
h2ogpte/rest_sync/models/summarize_request.py,sha256=IsSpxjBagYTBsSXdew3vbN-gZkcnm_HyI4qmxWr41Wk,14652
|
|
298
334
|
h2ogpte/rest_sync/models/tag.py,sha256=rnE0UXIzF3tqM9EWXRZ1oY3OU1Piq5MOU9t2svwgk3w,4594
|
|
299
335
|
h2ogpte/rest_sync/models/tag_create_request.py,sha256=jETninpugqtUUkwHmcUZj3hj1qbSqcb7xLxnHkB1CCE,4379
|
|
300
336
|
h2ogpte/rest_sync/models/tag_update_request.py,sha256=QD9iUZIqaUsuobauQF_f6OkyRE2bTG3O6f1N2pqBnBM,4524
|
|
@@ -303,9 +339,11 @@ h2ogpte/rest_sync/models/update_agent_tool_preference_request.py,sha256=GguSv4qE
|
|
|
303
339
|
h2ogpte/rest_sync/models/update_collection_expiry_date_request.py,sha256=k05IhX5JNxQFYDohULzszbCMQtaQ6pKdqdocKEzTNqc,4763
|
|
304
340
|
h2ogpte/rest_sync/models/update_collection_inactivity_interval_request.py,sha256=6qa2f28otYxlHQymupYtUkK_HtJCX_J0wzQ3DeeUSCQ,4623
|
|
305
341
|
h2ogpte/rest_sync/models/update_collection_privacy_request.py,sha256=58BglOQ_GM1MYe89oKL99XOKYUwuEtY1XqmyPo9QBzg,4548
|
|
342
|
+
h2ogpte/rest_sync/models/update_collection_workspace_request.py,sha256=rpEBNrojj88KR8g-FfckKktPPTTJD4ZsrRVcQ-Qkt4U,4557
|
|
306
343
|
h2ogpte/rest_sync/models/update_custom_agent_tool200_response.py,sha256=aNpqXIPr9J0PC2XGAhQBDXu2aWjXf2yuwDeImkChjeY,4611
|
|
307
344
|
h2ogpte/rest_sync/models/update_custom_agent_tool_request.py,sha256=Wz6nEziQ_8Po0MRTmkDVVHRJqMWW3tipBgbONX_Bisk,4515
|
|
308
345
|
h2ogpte/rest_sync/models/update_default_prompt_template_visibility_request.py,sha256=VqM5DHrSuTDJlZRmMP2h9s0gz_2f4-XdJ6g2sBY32RE,4627
|
|
346
|
+
h2ogpte/rest_sync/models/update_extractor_privacy_request.py,sha256=G9BWe2TKasvH6sf1dOx0v3sybRV2YMlEtFNvSL07DWM,4543
|
|
309
347
|
h2ogpte/rest_sync/models/update_prompt_template_privacy_request.py,sha256=IEddiGtA3kWZmOshripk-leV_c4GqXp2emPJl4zygsg,4569
|
|
310
348
|
h2ogpte/rest_sync/models/update_qa_feedback_request.py,sha256=m5MtLO5sZwyv52IQdPzhOpK9uLS6pC7rhDKwp29ypv8,4548
|
|
311
349
|
h2ogpte/rest_sync/models/update_secret_request.py,sha256=85cHQ1zCxSOobvqFKrvL1T4p2sS3wmdiOG-Rm8n5iNU,4473
|
|
@@ -319,7 +357,8 @@ h2ogpte/rest_sync/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiP
|
|
|
319
357
|
h2ogpte/rest_sync/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
|
|
320
358
|
h2ogpte/rest_sync/models/user_job_details.py,sha256=9cbhpgLMDpar-aTOaY5Ygud-8Kbi23cLNldTGab0Sd8,4984
|
|
321
359
|
h2ogpte/rest_sync/models/user_permission.py,sha256=9ffijaF3U3SYz_T_kcqHPJUfIZFkpCH0vBGboPjsg2o,4646
|
|
322
|
-
h2ogpte-1.6.
|
|
323
|
-
h2ogpte-1.6.
|
|
324
|
-
h2ogpte-1.6.
|
|
325
|
-
h2ogpte-1.6.
|
|
360
|
+
h2ogpte-1.6.43rc1.dist-info/METADATA,sha256=fU5YKBDNxiMuO69wl9mARJah3XcGr-vWJMT-LdFXIY0,8615
|
|
361
|
+
h2ogpte-1.6.43rc1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
362
|
+
h2ogpte-1.6.43rc1.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
|
|
363
|
+
h2ogpte-1.6.43rc1.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
|
|
364
|
+
h2ogpte-1.6.43rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|