h2ogpte 1.6.41rc5__py3-none-any.whl → 1.6.43__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.
Files changed (107) hide show
  1. h2ogpte/__init__.py +1 -1
  2. h2ogpte/cli/__init__.py +0 -0
  3. h2ogpte/cli/commands/__init__.py +0 -0
  4. h2ogpte/cli/commands/command_handlers/__init__.py +0 -0
  5. h2ogpte/cli/commands/command_handlers/agent.py +41 -0
  6. h2ogpte/cli/commands/command_handlers/chat.py +37 -0
  7. h2ogpte/cli/commands/command_handlers/clear.py +8 -0
  8. h2ogpte/cli/commands/command_handlers/collection.py +67 -0
  9. h2ogpte/cli/commands/command_handlers/config.py +113 -0
  10. h2ogpte/cli/commands/command_handlers/disconnect.py +36 -0
  11. h2ogpte/cli/commands/command_handlers/exit.py +37 -0
  12. h2ogpte/cli/commands/command_handlers/help.py +8 -0
  13. h2ogpte/cli/commands/command_handlers/history.py +29 -0
  14. h2ogpte/cli/commands/command_handlers/rag.py +146 -0
  15. h2ogpte/cli/commands/command_handlers/research_agent.py +45 -0
  16. h2ogpte/cli/commands/command_handlers/session.py +77 -0
  17. h2ogpte/cli/commands/command_handlers/status.py +33 -0
  18. h2ogpte/cli/commands/dispatcher.py +79 -0
  19. h2ogpte/cli/core/__init__.py +0 -0
  20. h2ogpte/cli/core/app.py +105 -0
  21. h2ogpte/cli/core/config.py +199 -0
  22. h2ogpte/cli/core/encryption.py +104 -0
  23. h2ogpte/cli/core/session.py +171 -0
  24. h2ogpte/cli/integrations/__init__.py +0 -0
  25. h2ogpte/cli/integrations/agent.py +338 -0
  26. h2ogpte/cli/integrations/rag.py +442 -0
  27. h2ogpte/cli/main.py +90 -0
  28. h2ogpte/cli/ui/__init__.py +0 -0
  29. h2ogpte/cli/ui/hbot_prompt.py +435 -0
  30. h2ogpte/cli/ui/prompts.py +129 -0
  31. h2ogpte/cli/ui/status_bar.py +133 -0
  32. h2ogpte/cli/utils/__init__.py +0 -0
  33. h2ogpte/cli/utils/file_manager.py +411 -0
  34. h2ogpte/connectors.py +11 -0
  35. h2ogpte/h2ogpte.py +619 -69
  36. h2ogpte/h2ogpte_async.py +631 -70
  37. h2ogpte/h2ogpte_sync_base.py +8 -1
  38. h2ogpte/rest_async/__init__.py +8 -3
  39. h2ogpte/rest_async/api/chat_api.py +29 -0
  40. h2ogpte/rest_async/api/collections_api.py +293 -0
  41. h2ogpte/rest_async/api/document_ingestion_api.py +1365 -436
  42. h2ogpte/rest_async/api/extractors_api.py +2874 -70
  43. h2ogpte/rest_async/api/prompt_templates_api.py +32 -32
  44. h2ogpte/rest_async/api_client.py +1 -1
  45. h2ogpte/rest_async/configuration.py +1 -1
  46. h2ogpte/rest_async/models/__init__.py +7 -2
  47. h2ogpte/rest_async/models/chat_completion.py +4 -2
  48. h2ogpte/rest_async/models/chat_completion_delta.py +5 -3
  49. h2ogpte/rest_async/models/chat_completion_request.py +1 -1
  50. h2ogpte/rest_async/models/chat_session.py +4 -2
  51. h2ogpte/rest_async/models/chat_settings.py +1 -1
  52. h2ogpte/rest_async/models/collection.py +4 -2
  53. h2ogpte/rest_async/models/collection_create_request.py +4 -2
  54. h2ogpte/rest_async/models/confluence_credentials.py +89 -0
  55. h2ogpte/rest_async/models/create_chat_session_request.py +87 -0
  56. h2ogpte/rest_async/models/extraction_request.py +1 -1
  57. h2ogpte/rest_async/models/extractor.py +4 -2
  58. h2ogpte/rest_async/models/guardrails_settings.py +8 -4
  59. h2ogpte/rest_async/models/guardrails_settings_create_request.py +1 -1
  60. h2ogpte/rest_async/models/ingest_from_confluence_body.py +97 -0
  61. h2ogpte/rest_async/models/process_document_job_request.py +1 -1
  62. h2ogpte/rest_async/models/question_request.py +1 -1
  63. h2ogpte/rest_async/models/{reset_and_share_prompt_template_request.py → reset_and_share_request.py} +6 -6
  64. 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
  65. h2ogpte/rest_async/models/summarize_request.py +1 -1
  66. h2ogpte/rest_async/models/update_collection_privacy_request.py +6 -4
  67. h2ogpte/rest_async/models/update_collection_workspace_request.py +87 -0
  68. h2ogpte/rest_async/models/update_extractor_privacy_request.py +87 -0
  69. h2ogpte/rest_sync/__init__.py +8 -3
  70. h2ogpte/rest_sync/api/chat_api.py +29 -0
  71. h2ogpte/rest_sync/api/collections_api.py +293 -0
  72. h2ogpte/rest_sync/api/document_ingestion_api.py +1365 -436
  73. h2ogpte/rest_sync/api/extractors_api.py +2874 -70
  74. h2ogpte/rest_sync/api/prompt_templates_api.py +32 -32
  75. h2ogpte/rest_sync/api_client.py +1 -1
  76. h2ogpte/rest_sync/configuration.py +1 -1
  77. h2ogpte/rest_sync/models/__init__.py +7 -2
  78. h2ogpte/rest_sync/models/chat_completion.py +4 -2
  79. h2ogpte/rest_sync/models/chat_completion_delta.py +5 -3
  80. h2ogpte/rest_sync/models/chat_completion_request.py +1 -1
  81. h2ogpte/rest_sync/models/chat_session.py +4 -2
  82. h2ogpte/rest_sync/models/chat_settings.py +1 -1
  83. h2ogpte/rest_sync/models/collection.py +4 -2
  84. h2ogpte/rest_sync/models/collection_create_request.py +4 -2
  85. h2ogpte/rest_sync/models/confluence_credentials.py +89 -0
  86. h2ogpte/rest_sync/models/create_chat_session_request.py +87 -0
  87. h2ogpte/rest_sync/models/extraction_request.py +1 -1
  88. h2ogpte/rest_sync/models/extractor.py +4 -2
  89. h2ogpte/rest_sync/models/guardrails_settings.py +8 -4
  90. h2ogpte/rest_sync/models/guardrails_settings_create_request.py +1 -1
  91. h2ogpte/rest_sync/models/ingest_from_confluence_body.py +97 -0
  92. h2ogpte/rest_sync/models/process_document_job_request.py +1 -1
  93. h2ogpte/rest_sync/models/question_request.py +1 -1
  94. h2ogpte/rest_sync/models/{reset_and_share_prompt_template_request.py → reset_and_share_request.py} +6 -6
  95. 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
  96. h2ogpte/rest_sync/models/summarize_request.py +1 -1
  97. h2ogpte/rest_sync/models/update_collection_privacy_request.py +6 -4
  98. h2ogpte/rest_sync/models/update_collection_workspace_request.py +87 -0
  99. h2ogpte/rest_sync/models/update_extractor_privacy_request.py +87 -0
  100. h2ogpte/session.py +14 -2
  101. h2ogpte/session_async.py +33 -6
  102. h2ogpte/types.py +9 -1
  103. {h2ogpte-1.6.41rc5.dist-info → h2ogpte-1.6.43.dist-info}/METADATA +5 -1
  104. {h2ogpte-1.6.41rc5.dist-info → h2ogpte-1.6.43.dist-info}/RECORD +107 -64
  105. h2ogpte-1.6.43.dist-info/entry_points.txt +2 -0
  106. {h2ogpte-1.6.41rc5.dist-info → h2ogpte-1.6.43.dist-info}/WHEEL +0 -0
  107. {h2ogpte-1.6.41rc5.dist-info → h2ogpte-1.6.43.dist-info}/top_level.txt +0 -0
@@ -1,37 +1,69 @@
1
- h2ogpte/__init__.py,sha256=eFSr73ts1dZ3jX4H75qh82YPy3vBRx_494P1OMy3Nlg,1524
2
- h2ogpte/connectors.py,sha256=nKUK6rWeFoI4VTonh4xvAfLMHFqeYgVgSydRTYUzTZg,7728
1
+ h2ogpte/__init__.py,sha256=vVPwcZRVo3vpxLLPwJTS-BhwwZ3K46UUIW0OOTCqV78,1521
2
+ h2ogpte/connectors.py,sha256=vkILsfW-tsLUn6KB6zgu_kjps4NMGgJpZ3OOaIjji04,8057
3
3
  h2ogpte/errors.py,sha256=XgLdfJO1fZ9Bf9rhUKpnvRzzvkNyan3Oc6WzGS6hCUA,1248
4
- h2ogpte/h2ogpte.py,sha256=DaEAEH4w8czmEXEfttvqZkKIzsPFCkBTHJ4fGA2fIPk,282677
5
- h2ogpte/h2ogpte_async.py,sha256=vPXzdTWmY59C1Ae6euOFmpoz-T-kXYIIfukznzLN9Y4,302178
6
- h2ogpte/h2ogpte_sync_base.py,sha256=RJSt_2CSyhKr0bahrso__KjQ_8rTvhTWGiwj1Z-wWs8,15141
7
- h2ogpte/session.py,sha256=tvj7agUM_oHjSz09Gpd4iHdXABzTdq_T2i6faw843z8,30705
8
- h2ogpte/session_async.py,sha256=qXWpfNF-gV8HkJ3rpSsFvmOwsB9VfINgq9ziO_C2Az4,28984
4
+ h2ogpte/h2ogpte.py,sha256=qUGUWHllcS-yYYIoR1TKW_8AuIOLqxWQ1aEfbYzAPPw,308265
5
+ h2ogpte/h2ogpte_async.py,sha256=f2LQUXhuW7UjqQJ6kwgB0fF1XhQyW5sGem5xOU_IY3Q,328162
6
+ h2ogpte/h2ogpte_sync_base.py,sha256=ftsVzpMqEsyi0UACMI-7H_EIYEx9JEdEUImbyjWy_Hc,15285
7
+ h2ogpte/session.py,sha256=BqJg3mWVeyz_ZLUJC_olzZzeLnRSaJwCH1NkXXfhg54,32608
8
+ h2ogpte/session_async.py,sha256=UzNijTn3kZjAUYl_Jn5Oji4QrPTOpdX9KKByTmhLlK8,31354
9
9
  h2ogpte/shared_client.py,sha256=Zh24myL--5JDdrKoJPW4aeprHX6a_oB9o461Ho3hnU8,14691
10
- h2ogpte/types.py,sha256=co2G3AjIj_QR4gLH9HZP96Lakg10b_kg1_73LTv1HrY,14896
10
+ h2ogpte/types.py,sha256=umPY5ymhpLBxfLSqKY5cTDhmPxeDRIw_GT-yyXY3yng,15226
11
11
  h2ogpte/utils.py,sha256=Z9n57xxPu0KtsCzkJ9V_VgTW--oG_aXTLBgmXDWSdnM,3201
12
- h2ogpte/rest_async/__init__.py,sha256=vffnQRymdK5pybUy7YjM7EkMyP887wBXU1M7wLoLOsg,14790
13
- h2ogpte/rest_async/api_client.py,sha256=IBgV2JxjF45gdnCaRr6ZyLbaHhx9JZwfKnlx9-44uLI,29510
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=2EhY6XGIKdBrhm0qDO955Ffci8T1EW65gOBF7sIQxmc,15198
45
+ h2ogpte/rest_async/api_client.py,sha256=lrFIrxnHrxP1AQFnG0zi40H59kGScnZuDEpK90Z7iwk,29505
14
46
  h2ogpte/rest_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
15
- h2ogpte/rest_async/configuration.py,sha256=aCjtW7lo6HwOKcWYSt-se1Q74xI1dcnfa-4di94VYC4,19567
47
+ h2ogpte/rest_async/configuration.py,sha256=4C2Z0t9Dblagc3HBJzZfgx0BSPDyCWCXAzvjI7qadIA,19562
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=i7vijHVYsAN-pW5yvf5LmizuOOnklfww2dpw0DFZuho,294352
22
- h2ogpte/rest_async/api/collections_api.py,sha256=pYcvKH63YNDDmiR8oXnarZutet3zmpXXV7WTYhhe4Lo,627189
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
- h2ogpte/rest_async/api/document_ingestion_api.py,sha256=otoR4L-DyWtShCr1aUiLHLz_KTr8pEwUXlyTLC0IS5c,435895
56
+ h2ogpte/rest_async/api/document_ingestion_api.py,sha256=K8iIH9yPEwZlJdySLnEQkSen2uneR2kEUHZXzJyc0JA,489154
25
57
  h2ogpte/rest_async/api/documents_api.py,sha256=X-w5x4bX2wHXlxb_97XgWdgNi5qAkdksoqz7bHKG5fA,261595
26
- h2ogpte/rest_async/api/extractors_api.py,sha256=JlIzcXsROi4TGZGqWyJO6j-ymEtFe38XEde6xp5k3wk,46919
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=EO7eBU-1-8CXOSR7yTWCfO--KrikPhtthYfuSLZdvhc,227351
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=J0wnBsYARhTgjZEXeORrteAH6Pvqbp7N4SicmZYwfLM,13279
66
+ h2ogpte/rest_async/models/__init__.py,sha256=UKQwRSTiPYtkg58_uJiCXnCKmPdYp0qtIv6Vb1F1h4M,13692
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,29 +78,31 @@ 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=p596m4hA7Ip76xxz-9-BeMFZzd2-DBYsvJlY-SlQQ6o,4371
50
- h2ogpte/rest_async/models/chat_completion_delta.py,sha256=9LF4p9T9u9xAemZ0IReV9kjTL4cLHcgziamHVY71vpM,4485
51
- h2ogpte/rest_async/models/chat_completion_request.py,sha256=jbgC8wKOLWSLOzah4yLphJAEr8SOAqhrg7w-HUIdxew,18564
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=PlVLv-ySy3ukMwtNzgrxTDwDYj1yXwfd6-wGFoFhPbk,19043
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=_bTDNoclga0NPtNiFh4DUM7e6AmnTjzhpS10BGw_nmQ,5097
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=NpYErhHXwM7YNjR0DWX0S9NGwW9btmUaXNFbE4Q4Zmw,16462
90
+ h2ogpte/rest_async/models/chat_settings.py,sha256=YLHuEGRtD_ZrpJOalogiSHcFHMHGHFt8uXirMYuDfjA,16941
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=aPx0PvCvlrx1lZ6foo1dKUZ8KpL761i1sKZYFcrEZOA,9003
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=ZvvbmK7IQzeDA2qXJAFkFvn57mktjBPAQZyWaIXMgr8,5824
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
99
+ h2ogpte/rest_async/models/confluence_credentials.py,sha256=y8mNDsU7XGOQSdtMEZsG42SCK6oxr3zM_wZVdlScqIU,4617
67
100
  h2ogpte/rest_async/models/count.py,sha256=1mm5PQtrJHl3ky5w9UfO0MneaohqucGk2cK74fjL0Ig,4339
68
101
  h2ogpte/rest_async/models/count_with_queue_details.py,sha256=6lj1DTij6PgabJ0aoa-KDURtgy76qJW8w545Uc9XW3c,5016
69
102
  h2ogpte/rest_async/models/create_agent_key_request.py,sha256=fr6C3x6iDzF77bRsEwMDDO1MFSJxKEpm23VhJ2JGXtM,4927
70
103
  h2ogpte/rest_async/models/create_agent_tool_key_associations_request.py,sha256=ufgon4AAWmh3zvAb-Mkp2zeLmEsmnE5cVm63Dvlc4ho,5013
71
104
  h2ogpte/rest_async/models/create_agent_tool_request.py,sha256=0bsJAjZfGifvpPYrQtOA1ldAqtMSKYYJv6nGaM7bYdw,5213
105
+ h2ogpte/rest_async/models/create_chat_session_request.py,sha256=tj5pZ9ge-ZIq7Qer3pOuS1PnDO5iIvUAwrnlMgklZkg,4624
72
106
  h2ogpte/rest_async/models/create_import_collection_to_collection_job_request.py,sha256=NgxLr2wTyvuFiHBn-Srp7mrdRyqKHEA2M9v6eSxEnqg,4622
73
107
  h2ogpte/rest_async/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
74
108
  h2ogpte/rest_async/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
@@ -84,19 +118,20 @@ h2ogpte/rest_async/models/document_update_request.py,sha256=5SGd54ZqiHSqPbT_wggl
84
118
  h2ogpte/rest_async/models/embedding_model.py,sha256=Az8OIiycqS9iuFX9li2MKN01om-L6XNdJlTftf_NAns,4838
85
119
  h2ogpte/rest_async/models/encode_chunks_for_retrieval_request.py,sha256=pNt-ysMzqNyXbKFI3Repuq6ciaF1jFkADMxGvZjF518,4453
86
120
  h2ogpte/rest_async/models/endpoint_error.py,sha256=jzaoCDJO1O_CtfdBQCsJCFhzzJDJQQnGxTpVq7cdH50,4533
87
- h2ogpte/rest_async/models/extraction_request.py,sha256=TPXSDaAF2cWiOnjm8YAubMnUeRMC8xqEAIV1hThbxnY,14083
88
- h2ogpte/rest_async/models/extractor.py,sha256=c1PqRP8CNOAzTZEi7XPFRIjd_SB8bFFNfiYRCkSyEkE,5237
121
+ h2ogpte/rest_async/models/extraction_request.py,sha256=HlhsMtMSnpdwkzyPiKVMZvaHVqEvLite7-snp5DqLQI,14562
122
+ h2ogpte/rest_async/models/extractor.py,sha256=pAFE_9ktgBah_h6GITkoqnuWYhZWb8PlUb2KxMwm9j0,5401
89
123
  h2ogpte/rest_async/models/extractor_create_request.py,sha256=xvDXyXOUcKTLxYMljOBGgt6d-w7m5gdCIXXf220sVb8,4911
90
124
  h2ogpte/rest_async/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
91
125
  h2ogpte/rest_async/models/global_configuration_item.py,sha256=MnA0ysC34KZue6R3zDVERQPbQGglz47kMNFSlXH0_CM,4980
92
126
  h2ogpte/rest_async/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
93
127
  h2ogpte/rest_async/models/group_info.py,sha256=H3fTrANe9edylqnoDGLmGmL84TQLGdif2XKH1YDdEJA,4528
94
128
  h2ogpte/rest_async/models/group_share_permission.py,sha256=k79A1zbMKie-zKPfBOfpMsOc453oHVh6Ixwf4dnTkuQ,4537
95
- h2ogpte/rest_async/models/guardrails_settings.py,sha256=z7Ce-yw3o5c4xleGwCxuuMGrn6YGuEmw8uzzZu5N_zw,10159
96
- h2ogpte/rest_async/models/guardrails_settings_create_request.py,sha256=9eGLzxHbpNHj55BWALiOg8jgc0gWvx50BpyOvOsMWE4,6733
129
+ h2ogpte/rest_async/models/guardrails_settings.py,sha256=l7LpRz9w97LtoVyYMxoY8cXx6saMzXLqkDMRnAYA3SA,10884
130
+ h2ogpte/rest_async/models/guardrails_settings_create_request.py,sha256=6DMke_u-1mt8DwtsGoW3n6U9FCq-rqmuyM4VSOnZyZk,6715
97
131
  h2ogpte/rest_async/models/h2_ogpt_system_info.py,sha256=6pBoTwU-QOh3oSk48drmuFhOcv9zEEzsWXvn-P4LIHk,8652
98
132
  h2ogpte/rest_async/models/h2_ogptgpu_info.py,sha256=gUdC0izDgwpyRBJa9_bua6BYnJo8K0H9nG_E4kO_pNE,5124
99
133
  h2ogpte/rest_async/models/ingest_from_azure_blob_storage_body.py,sha256=ouEUrdMYJU8kcjTOD8FfzPiaZYwU6RJFP6DYfY9oNyk,5470
134
+ h2ogpte/rest_async/models/ingest_from_confluence_body.py,sha256=7nViW05VVPkyBCVmy3cVn8oLdjfJaT6oE5hbjdwsLD0,5250
100
135
  h2ogpte/rest_async/models/ingest_from_file_system_body.py,sha256=JnbjY-PxMxaLZXvHRjKdfNTZDtJj9CfPpRPG1QVyBjU,4655
101
136
  h2ogpte/rest_async/models/ingest_from_gcs_body.py,sha256=ygQsntThO7SHxzHlwsftFvPvZQsGj6qHMCDp5HOdipg,5079
102
137
  h2ogpte/rest_async/models/ingest_from_s3_body.py,sha256=n7nuAHbMBQpFPerWspgxy5Pua-Bvkc3axcYgFEg33mU,5311
@@ -116,16 +151,16 @@ h2ogpte/rest_async/models/new_key_association.py,sha256=zHJl6QiKz0WQmcxXuHaIvX9C
116
151
  h2ogpte/rest_async/models/performance_stats_per_model.py,sha256=4qwgWTxcd3DBWb-xXe3EA-c9UUI2yW0c6uXPXqGOEqg,5027
117
152
  h2ogpte/rest_async/models/permission_check_request.py,sha256=pcriKBIP-ezilS_j-IhMdRu_s-vLcbPDnXRqr9cT918,4427
118
153
  h2ogpte/rest_async/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6H0yPWK8O-RVgAYtpM0m3PPc,4453
119
- h2ogpte/rest_async/models/process_document_job_request.py,sha256=XcARcaq-sVweSoSJiHRupRheRUZqeZO5OoSMu3duSKA,16880
154
+ h2ogpte/rest_async/models/process_document_job_request.py,sha256=taTBKC6IzSTZjrw-EcDb7-sEYOIBZ-KggUJki-qm1Kc,17359
120
155
  h2ogpte/rest_async/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
121
156
  h2ogpte/rest_async/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
122
157
  h2ogpte/rest_async/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
123
158
  h2ogpte/rest_async/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
124
159
  h2ogpte/rest_async/models/qa_feedback.py,sha256=zDjk10nkg11uxpqOWesPAs3oLy2YtUAH-qEUPsI0JbQ,6639
125
- h2ogpte/rest_async/models/question_request.py,sha256=e-t-Lsfl5egznj_S00SCy8jFUyF6wvipHW5-Fn4j0hc,14638
160
+ h2ogpte/rest_async/models/question_request.py,sha256=nukqmNJsBdyWTSvxvIPw7nKvgDdQSmMG0IELuGd5Bhg,15117
126
161
  h2ogpte/rest_async/models/queue_details.py,sha256=ffvSZXw07Zzy-MNwwUtN2Ws_4C_d-rG7dUj5iU7a-bs,4447
127
- h2ogpte/rest_async/models/reset_and_share_prompt_template_request.py,sha256=Bi0ap4WHhiqbRHlYTZ0zzhpGtdSJtz-I_-z7_av-JOM,4504
128
- h2ogpte/rest_async/models/reset_and_share_prompt_template_with_groups_request.py,sha256=jVFtfgqglzNU8aV-iinSnoXCMEX1KrCZlidVfNC32q4,4532
162
+ h2ogpte/rest_async/models/reset_and_share_request.py,sha256=HgEEFRR4zKecqCGaGnzrY6Cow0gYOlVqbDHmaPIRvKw,4421
163
+ h2ogpte/rest_async/models/reset_and_share_with_groups_request.py,sha256=6IwfFIjAAlGNqjEhmHO7_2yKk64qkxvDz9ZqRrWIUrg,4449
129
164
  h2ogpte/rest_async/models/role_create_request.py,sha256=UayaEOpH_Qx8AYff5cFALodAmbTaO4YphBsMM2lHHFI,4476
130
165
  h2ogpte/rest_async/models/role_info.py,sha256=gCcSiqjkux4zFt0cR9CQDaeWgSneVQJ11JgthdtQUms,4633
131
166
  h2ogpte/rest_async/models/roles_reset_request.py,sha256=W5cKp897NVOwlWX-GR9OZ1THtqWDhjmCibadKZSa9i4,4409
@@ -139,7 +174,7 @@ h2ogpte/rest_async/models/set_user_configuration_request.py,sha256=SugNBbL7tBz8r
139
174
  h2ogpte/rest_async/models/share_collection_request.py,sha256=OPuk_vuXLmsPr3QnpMHDQqAEzEiaJtgAlOrcCGLJRt4,4557
140
175
  h2ogpte/rest_async/models/share_permission.py,sha256=-pHNoUt8SzKCpq7b8WiODhQenzWcDA5fxiqywVDrb6k,4517
141
176
  h2ogpte/rest_async/models/suggested_question.py,sha256=RcXlzaTsj-GFtT5gGuiHkNHtNXqlE5MsO-P6S1y2YgI,4399
142
- h2ogpte/rest_async/models/summarize_request.py,sha256=WxBg1i5K8JCgMkpK7HZIgkC5RY8bHsi9xixUkfo5kIk,14403
177
+ h2ogpte/rest_async/models/summarize_request.py,sha256=LpiWC-XTgxaXvezCoJdCCvl_cM7vy6f7ocEZZUsgaYU,14882
143
178
  h2ogpte/rest_async/models/tag.py,sha256=rnE0UXIzF3tqM9EWXRZ1oY3OU1Piq5MOU9t2svwgk3w,4594
144
179
  h2ogpte/rest_async/models/tag_create_request.py,sha256=jETninpugqtUUkwHmcUZj3hj1qbSqcb7xLxnHkB1CCE,4379
145
180
  h2ogpte/rest_async/models/tag_update_request.py,sha256=QD9iUZIqaUsuobauQF_f6OkyRE2bTG3O6f1N2pqBnBM,4524
@@ -147,10 +182,12 @@ h2ogpte/rest_async/models/update_agent_key_request.py,sha256=7EqlI-kZw0U2fyTnJum
147
182
  h2ogpte/rest_async/models/update_agent_tool_preference_request.py,sha256=GguSv4qEmF7OJZRm8vMZJ-9Md2Ce_hgModJ4PE4OruU,4493
148
183
  h2ogpte/rest_async/models/update_collection_expiry_date_request.py,sha256=k05IhX5JNxQFYDohULzszbCMQtaQ6pKdqdocKEzTNqc,4763
149
184
  h2ogpte/rest_async/models/update_collection_inactivity_interval_request.py,sha256=6qa2f28otYxlHQymupYtUkK_HtJCX_J0wzQ3DeeUSCQ,4623
150
- h2ogpte/rest_async/models/update_collection_privacy_request.py,sha256=58BglOQ_GM1MYe89oKL99XOKYUwuEtY1XqmyPo9QBzg,4548
185
+ h2ogpte/rest_async/models/update_collection_privacy_request.py,sha256=zCkjIvJJouYTBW8UU9yxHJqgti7Gz80Db_ycwSC63Jc,4780
186
+ h2ogpte/rest_async/models/update_collection_workspace_request.py,sha256=rpEBNrojj88KR8g-FfckKktPPTTJD4ZsrRVcQ-Qkt4U,4557
151
187
  h2ogpte/rest_async/models/update_custom_agent_tool200_response.py,sha256=aNpqXIPr9J0PC2XGAhQBDXu2aWjXf2yuwDeImkChjeY,4611
152
188
  h2ogpte/rest_async/models/update_custom_agent_tool_request.py,sha256=Wz6nEziQ_8Po0MRTmkDVVHRJqMWW3tipBgbONX_Bisk,4515
153
189
  h2ogpte/rest_async/models/update_default_prompt_template_visibility_request.py,sha256=VqM5DHrSuTDJlZRmMP2h9s0gz_2f4-XdJ6g2sBY32RE,4627
190
+ h2ogpte/rest_async/models/update_extractor_privacy_request.py,sha256=G9BWe2TKasvH6sf1dOx0v3sybRV2YMlEtFNvSL07DWM,4543
154
191
  h2ogpte/rest_async/models/update_prompt_template_privacy_request.py,sha256=IEddiGtA3kWZmOshripk-leV_c4GqXp2emPJl4zygsg,4569
155
192
  h2ogpte/rest_async/models/update_qa_feedback_request.py,sha256=m5MtLO5sZwyv52IQdPzhOpK9uLS6pC7rhDKwp29ypv8,4548
156
193
  h2ogpte/rest_async/models/update_secret_request.py,sha256=85cHQ1zCxSOobvqFKrvL1T4p2sS3wmdiOG-Rm8n5iNU,4473
@@ -164,29 +201,29 @@ h2ogpte/rest_async/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJii
164
201
  h2ogpte/rest_async/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
165
202
  h2ogpte/rest_async/models/user_job_details.py,sha256=kzu8fLxVsRMgnyt6dLr0VWjlIoE3i1VRpGR9nDxFyk4,4985
166
203
  h2ogpte/rest_async/models/user_permission.py,sha256=9ffijaF3U3SYz_T_kcqHPJUfIZFkpCH0vBGboPjsg2o,4646
167
- h2ogpte/rest_sync/__init__.py,sha256=7kkxocdaA7v7sql8ADu-VU6ykYeyAY3dzivG2FV5CpE,14634
168
- h2ogpte/rest_sync/api_client.py,sha256=AgH4KVE9Dx2KTrRsPGI9U9JGAqpcep8v2dlE8wr82c8,29397
204
+ h2ogpte/rest_sync/__init__.py,sha256=bJMmKlWxeI2OzY1jUtW-1U3OmShrtpvXF-6tLRpmQpo,15037
205
+ h2ogpte/rest_sync/api_client.py,sha256=2Id_Qd-eJOMFWMZ6LkhsQT7AS3gVc3e6cZgZvcr3Bmo,29392
169
206
  h2ogpte/rest_sync/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
170
- h2ogpte/rest_sync/configuration.py,sha256=wGS8Tsf4hPKT_PMKbx09zbm4elUzvdneHVMgwu4KFvE,19850
207
+ h2ogpte/rest_sync/configuration.py,sha256=AEPT327pIB8ux2JDtRyPQ3TvpidZ9CqCqR_c1_1_qa8,19845
171
208
  h2ogpte/rest_sync/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
172
209
  h2ogpte/rest_sync/rest.py,sha256=evRzviTYC_fsrpTtFlGvruXmquH9C0jDn-oQrGrE5A0,11314
173
210
  h2ogpte/rest_sync/api/__init__.py,sha256=ZuLQQtyiXnP5UOwTlIOYLGLQq1BG_0PEkzC9s698vjM,958
174
211
  h2ogpte/rest_sync/api/agents_api.py,sha256=zWzPXtqHbhBe6xVZZKYl93bFLDVzNw2KmAJG5xIW6i0,176763
175
212
  h2ogpte/rest_sync/api/api_keys_api.py,sha256=MueDC8Z4VUC61IVIBem0kD0Wpgh35MvhoilUtPVLrN0,57997
176
- h2ogpte/rest_sync/api/chat_api.py,sha256=aQwXN3QBuC-DjTAedtc1JzImMrXFoChAjhWqp1rioas,293083
177
- h2ogpte/rest_sync/api/collections_api.py,sha256=mwVKnE3xxSinJhPWUcr7ERVpKBqs-PTudHgA-MCV1ss,624760
213
+ h2ogpte/rest_sync/api/chat_api.py,sha256=9DoF08mTxi3D7sYRkvOM76qB4crS13lb5QmTXtJIV1U,294582
214
+ h2ogpte/rest_sync/api/collections_api.py,sha256=3oTV2IuRV9l_8Wjb9ivQX7bQ6Ay6uFO6zIjbre1bSXs,636980
178
215
  h2ogpte/rest_sync/api/configurations_api.py,sha256=B39KQB3fRknMZ8PtDNBxWVX2aVGTQSmaE2nq6Ya8VkE,127330
179
- h2ogpte/rest_sync/api/document_ingestion_api.py,sha256=DppDRB7eAdh7k89q0_gRTiqmb2h0D71Vi2ymf5K1Tg8,435068
216
+ h2ogpte/rest_sync/api/document_ingestion_api.py,sha256=i7bLMjtFOvtr9zwgR2F-uXY1AhmW918axnm0T1vxU90,488230
180
217
  h2ogpte/rest_sync/api/documents_api.py,sha256=qRDBXrQaZWp_hGxg-7mqAFUMeeWd1EB2M_xIlzHh6rw,260474
181
- h2ogpte/rest_sync/api/extractors_api.py,sha256=STlYF2HTFukGLRiQeP7Uihkpw-VT5uF0pGV7c8P5egk,46722
218
+ h2ogpte/rest_sync/api/extractors_api.py,sha256=Dz7RCbNRIuraNszzMOLVYzBxwMJwFsqwFIXreMr7B-Y,160666
182
219
  h2ogpte/rest_sync/api/jobs_api.py,sha256=LM9erEymF1SgEg8j4ePeNbUeJtwAGTMCI3Z4zRESehE,72177
183
220
  h2ogpte/rest_sync/api/models_api.py,sha256=a5DuGNAEXeynqnPuFcvIWHtIBYfGKhn5uFi43aXSBgA,220111
184
221
  h2ogpte/rest_sync/api/permissions_api.py,sha256=MiXD2duhCsA-QS-xR_uoY_piLmuYvw9gxr6HIGY3JPo,367795
185
- h2ogpte/rest_sync/api/prompt_templates_api.py,sha256=2CwEN4zT6gMKvX3lvC1KMwrfk_eQq3uni_xyA9TuiVg,226426
222
+ h2ogpte/rest_sync/api/prompt_templates_api.py,sha256=157y9lzY7Ky_ALu8TEemi0rfYzXrd4SJU1GxooXGJdg,225622
186
223
  h2ogpte/rest_sync/api/secrets_api.py,sha256=5rAikvrX7n3Cj9M0ME-cPjISLpqrEFh2LmW23mvGk4g,67828
187
224
  h2ogpte/rest_sync/api/system_api.py,sha256=knhP97lzeZt-YFTpcNJm9NdnqjoSg_Oh0yMGowiV1IM,12480
188
225
  h2ogpte/rest_sync/api/tags_api.py,sha256=oCBsrFFLk0su8mz4wnCGSR_NxpCQgwEx18IwJKsOKrA,55921
189
- h2ogpte/rest_sync/models/__init__.py,sha256=F6Q3G4hrW0d6uuKzP-TFKw51sw8hQBd0w40I23A8isU,13147
226
+ h2ogpte/rest_sync/models/__init__.py,sha256=jRJSG4_PvnmArljk4J3ioPvD0v_iFIqB3YEpYpdLa54,13555
190
227
  h2ogpte/rest_sync/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
191
228
  h2ogpte/rest_sync/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
192
229
  h2ogpte/rest_sync/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
@@ -201,29 +238,31 @@ h2ogpte/rest_sync/models/api_key_info.py,sha256=5MgI1Yb68A4ixVEjQ9JrpQXE7LWG4jgq
201
238
  h2ogpte/rest_sync/models/api_key_result.py,sha256=LqAFDYGbIZCnOPKkKQD3PUvYhl5zKCWzS1ljLV5QJTU,4843
202
239
  h2ogpte/rest_sync/models/api_key_update_expiry_request.py,sha256=GTMkaqLOUqUpjxlCW6s31bM7md_YYC6sCozc7qd-lyA,4611
203
240
  h2ogpte/rest_sync/models/azure_credentials.py,sha256=hy6hv5Uf5CIGgO5S-2jVbO5N25QvEkiUxXnvItESoBA,4620
204
- h2ogpte/rest_sync/models/chat_completion.py,sha256=p596m4hA7Ip76xxz-9-BeMFZzd2-DBYsvJlY-SlQQ6o,4371
205
- h2ogpte/rest_sync/models/chat_completion_delta.py,sha256=9LF4p9T9u9xAemZ0IReV9kjTL4cLHcgziamHVY71vpM,4485
206
- h2ogpte/rest_sync/models/chat_completion_request.py,sha256=jbgC8wKOLWSLOzah4yLphJAEr8SOAqhrg7w-HUIdxew,18564
241
+ h2ogpte/rest_sync/models/chat_completion.py,sha256=iVTiDzWJ7v5p_j37PO5aRdLrKhY98J_cl7eXTsymudU,4524
242
+ h2ogpte/rest_sync/models/chat_completion_delta.py,sha256=TGEeMoSgBIph1YzTJYN2lYekboFo4btRRGtDbd5HHtw,4745
243
+ h2ogpte/rest_sync/models/chat_completion_request.py,sha256=PlVLv-ySy3ukMwtNzgrxTDwDYj1yXwfd6-wGFoFhPbk,19043
207
244
  h2ogpte/rest_sync/models/chat_error.py,sha256=Ob1UB0nhrKdEGA5Z63VD_TdxokV-8CyA5m-NDgnwqt4,4355
208
245
  h2ogpte/rest_sync/models/chat_message.py,sha256=OLBO6sF7Wn8NC2Qf2anxGZYJ7YpWQTf8oI7ENcOSmQ8,5767
209
246
  h2ogpte/rest_sync/models/chat_message_meta.py,sha256=dgM0NIDSdB6_MN7lEiR4frDFCVZa7C58UATW0SiJB2s,4484
210
247
  h2ogpte/rest_sync/models/chat_message_reference.py,sha256=P5_jxbgfNcwdzC7OgND27EbVemPKiZay0jsCYn8qqTs,5248
211
- h2ogpte/rest_sync/models/chat_session.py,sha256=_bTDNoclga0NPtNiFh4DUM7e6AmnTjzhpS10BGw_nmQ,5097
248
+ h2ogpte/rest_sync/models/chat_session.py,sha256=RVvL2IvMzIQPJ2W6lheUJyN3i6kaffQ80ox66sivq_M,5199
212
249
  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=NpYErhHXwM7YNjR0DWX0S9NGwW9btmUaXNFbE4Q4Zmw,16462
250
+ h2ogpte/rest_sync/models/chat_settings.py,sha256=YLHuEGRtD_ZrpJOalogiSHcFHMHGHFt8uXirMYuDfjA,16941
214
251
  h2ogpte/rest_sync/models/chunk.py,sha256=4t2oms4W29WEYKi7KvzCArsLOaCOLYyyQRrJttlDUAU,4759
215
252
  h2ogpte/rest_sync/models/chunk_search_result.py,sha256=keifMKId0YhLFGzh5nv3jNCtQt7YciiwUd6-DsNckAs,4985
216
- h2ogpte/rest_sync/models/collection.py,sha256=aPx0PvCvlrx1lZ6foo1dKUZ8KpL761i1sKZYFcrEZOA,9003
253
+ h2ogpte/rest_sync/models/collection.py,sha256=NR9Ze5D8PNTDbSKWD3J5y9OiF_KdHEJnJmZKQJCkg00,9181
217
254
  h2ogpte/rest_sync/models/collection_change_request.py,sha256=CIb51wkIjmud3RPSqaEri7V7BB5Qa6kPPvL9nj6l4ao,4443
218
- h2ogpte/rest_sync/models/collection_create_request.py,sha256=6OTUMFNsJ3jwSr3PIiXeyz2CNxQFJy5q5Uj_2XkxfsY,5822
255
+ h2ogpte/rest_sync/models/collection_create_request.py,sha256=CUKFj3psED3tsIUMB8QXhsc-lsYGFzeqhaM17csK4gk,5924
219
256
  h2ogpte/rest_sync/models/collection_settings.py,sha256=Q-yDvnVnZBlnH7gLgXP5rsnxZLVM4lxX2FEa40qb45o,9465
220
257
  h2ogpte/rest_sync/models/collection_update_request.py,sha256=Y2ojg5NqGbR_Lm_Pf-Aig46HyZ9OKBN4-iwT_PdAWco,6332
221
258
  h2ogpte/rest_sync/models/confirm_user_deletion_request.py,sha256=6L99MbScW_qbvxHKTv8dNJIQyY2L5ak13nYxvL4vBcs,4527
259
+ h2ogpte/rest_sync/models/confluence_credentials.py,sha256=y8mNDsU7XGOQSdtMEZsG42SCK6oxr3zM_wZVdlScqIU,4617
222
260
  h2ogpte/rest_sync/models/count.py,sha256=1mm5PQtrJHl3ky5w9UfO0MneaohqucGk2cK74fjL0Ig,4339
223
261
  h2ogpte/rest_sync/models/count_with_queue_details.py,sha256=6FDySSWe7AuZRXql8tK5vip135J8YvI73YYdKJd45C4,5015
224
262
  h2ogpte/rest_sync/models/create_agent_key_request.py,sha256=fr6C3x6iDzF77bRsEwMDDO1MFSJxKEpm23VhJ2JGXtM,4927
225
263
  h2ogpte/rest_sync/models/create_agent_tool_key_associations_request.py,sha256=AnGuikgliGQ3uMYuaHM6IpbeMiurIzzLdDDPwslcEfA,5012
226
264
  h2ogpte/rest_sync/models/create_agent_tool_request.py,sha256=0bsJAjZfGifvpPYrQtOA1ldAqtMSKYYJv6nGaM7bYdw,5213
265
+ h2ogpte/rest_sync/models/create_chat_session_request.py,sha256=tj5pZ9ge-ZIq7Qer3pOuS1PnDO5iIvUAwrnlMgklZkg,4624
227
266
  h2ogpte/rest_sync/models/create_import_collection_to_collection_job_request.py,sha256=NgxLr2wTyvuFiHBn-Srp7mrdRyqKHEA2M9v6eSxEnqg,4622
228
267
  h2ogpte/rest_sync/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
229
268
  h2ogpte/rest_sync/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
@@ -239,19 +278,20 @@ h2ogpte/rest_sync/models/document_update_request.py,sha256=5SGd54ZqiHSqPbT_wgglU
239
278
  h2ogpte/rest_sync/models/embedding_model.py,sha256=Az8OIiycqS9iuFX9li2MKN01om-L6XNdJlTftf_NAns,4838
240
279
  h2ogpte/rest_sync/models/encode_chunks_for_retrieval_request.py,sha256=pNt-ysMzqNyXbKFI3Repuq6ciaF1jFkADMxGvZjF518,4453
241
280
  h2ogpte/rest_sync/models/endpoint_error.py,sha256=jzaoCDJO1O_CtfdBQCsJCFhzzJDJQQnGxTpVq7cdH50,4533
242
- h2ogpte/rest_sync/models/extraction_request.py,sha256=6YdtpFp73IoV3qDmb-clU_GOsmtt7U5e3GkaLgK22lE,14082
243
- h2ogpte/rest_sync/models/extractor.py,sha256=c1PqRP8CNOAzTZEi7XPFRIjd_SB8bFFNfiYRCkSyEkE,5237
281
+ h2ogpte/rest_sync/models/extraction_request.py,sha256=5GPJzCIa-iYNJGoJ0StAIHcNTZsxB_FD44SQxpgqt68,14561
282
+ h2ogpte/rest_sync/models/extractor.py,sha256=pAFE_9ktgBah_h6GITkoqnuWYhZWb8PlUb2KxMwm9j0,5401
244
283
  h2ogpte/rest_sync/models/extractor_create_request.py,sha256=xvDXyXOUcKTLxYMljOBGgt6d-w7m5gdCIXXf220sVb8,4911
245
284
  h2ogpte/rest_sync/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
246
285
  h2ogpte/rest_sync/models/global_configuration_item.py,sha256=MnA0ysC34KZue6R3zDVERQPbQGglz47kMNFSlXH0_CM,4980
247
286
  h2ogpte/rest_sync/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
248
287
  h2ogpte/rest_sync/models/group_info.py,sha256=H3fTrANe9edylqnoDGLmGmL84TQLGdif2XKH1YDdEJA,4528
249
288
  h2ogpte/rest_sync/models/group_share_permission.py,sha256=k79A1zbMKie-zKPfBOfpMsOc453oHVh6Ixwf4dnTkuQ,4537
250
- h2ogpte/rest_sync/models/guardrails_settings.py,sha256=z7Ce-yw3o5c4xleGwCxuuMGrn6YGuEmw8uzzZu5N_zw,10159
251
- h2ogpte/rest_sync/models/guardrails_settings_create_request.py,sha256=7MQEM4EI1kTk3H7UXs36AQgLU81dXwpsuNUmwO1GRI4,6732
289
+ h2ogpte/rest_sync/models/guardrails_settings.py,sha256=l7LpRz9w97LtoVyYMxoY8cXx6saMzXLqkDMRnAYA3SA,10884
290
+ h2ogpte/rest_sync/models/guardrails_settings_create_request.py,sha256=W3-vZsU0CuI6A2WAbbEZ0aZXIADxlVVh9jztGGnjWoc,6714
252
291
  h2ogpte/rest_sync/models/h2_ogpt_system_info.py,sha256=eaFSINplInnPIW-dRO9K25AbQouNYngBI_JXX-AuY_w,8651
253
292
  h2ogpte/rest_sync/models/h2_ogptgpu_info.py,sha256=gUdC0izDgwpyRBJa9_bua6BYnJo8K0H9nG_E4kO_pNE,5124
254
293
  h2ogpte/rest_sync/models/ingest_from_azure_blob_storage_body.py,sha256=G_0SInDzFcpWWwnOEByjDir3QkMBiMxU4D-rGKeBSUU,5469
294
+ h2ogpte/rest_sync/models/ingest_from_confluence_body.py,sha256=e9wndvmRRHs161DoYDwnNPiuJmynU1f2r5NgldbJwKk,5249
255
295
  h2ogpte/rest_sync/models/ingest_from_file_system_body.py,sha256=JnbjY-PxMxaLZXvHRjKdfNTZDtJj9CfPpRPG1QVyBjU,4655
256
296
  h2ogpte/rest_sync/models/ingest_from_gcs_body.py,sha256=XLRQMzcYLHWUWaRD_hnhSwIRz8TYGM3emDgpvWw_Gak,5078
257
297
  h2ogpte/rest_sync/models/ingest_from_s3_body.py,sha256=OTZ01MO7hn-LRlATgsrv1DUX6oz04jv4Qk94fsGSfnE,5310
@@ -271,16 +311,16 @@ h2ogpte/rest_sync/models/new_key_association.py,sha256=zHJl6QiKz0WQmcxXuHaIvX9C8
271
311
  h2ogpte/rest_sync/models/performance_stats_per_model.py,sha256=4qwgWTxcd3DBWb-xXe3EA-c9UUI2yW0c6uXPXqGOEqg,5027
272
312
  h2ogpte/rest_sync/models/permission_check_request.py,sha256=pcriKBIP-ezilS_j-IhMdRu_s-vLcbPDnXRqr9cT918,4427
273
313
  h2ogpte/rest_sync/models/permission_reset_request.py,sha256=zFxULGMEKVXmQ3cUrBT6H0yPWK8O-RVgAYtpM0m3PPc,4453
274
- h2ogpte/rest_sync/models/process_document_job_request.py,sha256=Iik2hNW9WJBVDUqtIsdNrpbqfXgNtlbauPbBVI83x50,16879
314
+ h2ogpte/rest_sync/models/process_document_job_request.py,sha256=Vh2EBRf0WQlQ8uRaKzY5ePIZaFPj39FmUvgA8fnwTKg,17358
275
315
  h2ogpte/rest_sync/models/prompt_template.py,sha256=AzE50uvK7IO1MYC7l4dwJmal-HiOA8QNRtXMqREA9Qc,10812
276
316
  h2ogpte/rest_sync/models/prompt_template_base.py,sha256=awFYhmEJHb-TpfaT1Edn9ZXp5oV8TapKQE67Wk_DhRg,8718
277
317
  h2ogpte/rest_sync/models/prompt_template_change_request.py,sha256=476YLmslg75pKuwjOF7hPZyDU1QIY11Bh4krgYCvZ2A,4506
278
318
  h2ogpte/rest_sync/models/prompt_template_create_request.py,sha256=_5Th_ifcb-KeEPoki1a_v-ybSgdBCwT5wsLB7qhlsf0,8676
279
319
  h2ogpte/rest_sync/models/qa_feedback.py,sha256=zDjk10nkg11uxpqOWesPAs3oLy2YtUAH-qEUPsI0JbQ,6639
280
- h2ogpte/rest_sync/models/question_request.py,sha256=zI7M4n7RhSflpcUnp5IohGq_28I5XQHlPeaAVA1e99U,14637
320
+ h2ogpte/rest_sync/models/question_request.py,sha256=8ViwrJG_k2SBPGjSr-0sH4we4U-ILfjV6bhvpXoVNns,15116
281
321
  h2ogpte/rest_sync/models/queue_details.py,sha256=ffvSZXw07Zzy-MNwwUtN2Ws_4C_d-rG7dUj5iU7a-bs,4447
282
- h2ogpte/rest_sync/models/reset_and_share_prompt_template_request.py,sha256=Bi0ap4WHhiqbRHlYTZ0zzhpGtdSJtz-I_-z7_av-JOM,4504
283
- h2ogpte/rest_sync/models/reset_and_share_prompt_template_with_groups_request.py,sha256=jVFtfgqglzNU8aV-iinSnoXCMEX1KrCZlidVfNC32q4,4532
322
+ h2ogpte/rest_sync/models/reset_and_share_request.py,sha256=HgEEFRR4zKecqCGaGnzrY6Cow0gYOlVqbDHmaPIRvKw,4421
323
+ h2ogpte/rest_sync/models/reset_and_share_with_groups_request.py,sha256=6IwfFIjAAlGNqjEhmHO7_2yKk64qkxvDz9ZqRrWIUrg,4449
284
324
  h2ogpte/rest_sync/models/role_create_request.py,sha256=UayaEOpH_Qx8AYff5cFALodAmbTaO4YphBsMM2lHHFI,4476
285
325
  h2ogpte/rest_sync/models/role_info.py,sha256=gCcSiqjkux4zFt0cR9CQDaeWgSneVQJ11JgthdtQUms,4633
286
326
  h2ogpte/rest_sync/models/roles_reset_request.py,sha256=W5cKp897NVOwlWX-GR9OZ1THtqWDhjmCibadKZSa9i4,4409
@@ -294,7 +334,7 @@ h2ogpte/rest_sync/models/set_user_configuration_request.py,sha256=SugNBbL7tBz8r5
294
334
  h2ogpte/rest_sync/models/share_collection_request.py,sha256=OPuk_vuXLmsPr3QnpMHDQqAEzEiaJtgAlOrcCGLJRt4,4557
295
335
  h2ogpte/rest_sync/models/share_permission.py,sha256=-pHNoUt8SzKCpq7b8WiODhQenzWcDA5fxiqywVDrb6k,4517
296
336
  h2ogpte/rest_sync/models/suggested_question.py,sha256=RcXlzaTsj-GFtT5gGuiHkNHtNXqlE5MsO-P6S1y2YgI,4399
297
- h2ogpte/rest_sync/models/summarize_request.py,sha256=b68DibRU4NqWRIvcABI6gujnkeM9rEUvGn6fcw5QzAs,14402
337
+ h2ogpte/rest_sync/models/summarize_request.py,sha256=L58eJZiqu-1Ssc2sat3Hp75k1mTixI_ibUiqYFTYptM,14881
298
338
  h2ogpte/rest_sync/models/tag.py,sha256=rnE0UXIzF3tqM9EWXRZ1oY3OU1Piq5MOU9t2svwgk3w,4594
299
339
  h2ogpte/rest_sync/models/tag_create_request.py,sha256=jETninpugqtUUkwHmcUZj3hj1qbSqcb7xLxnHkB1CCE,4379
300
340
  h2ogpte/rest_sync/models/tag_update_request.py,sha256=QD9iUZIqaUsuobauQF_f6OkyRE2bTG3O6f1N2pqBnBM,4524
@@ -302,10 +342,12 @@ h2ogpte/rest_sync/models/update_agent_key_request.py,sha256=7EqlI-kZw0U2fyTnJumn
302
342
  h2ogpte/rest_sync/models/update_agent_tool_preference_request.py,sha256=GguSv4qEmF7OJZRm8vMZJ-9Md2Ce_hgModJ4PE4OruU,4493
303
343
  h2ogpte/rest_sync/models/update_collection_expiry_date_request.py,sha256=k05IhX5JNxQFYDohULzszbCMQtaQ6pKdqdocKEzTNqc,4763
304
344
  h2ogpte/rest_sync/models/update_collection_inactivity_interval_request.py,sha256=6qa2f28otYxlHQymupYtUkK_HtJCX_J0wzQ3DeeUSCQ,4623
305
- h2ogpte/rest_sync/models/update_collection_privacy_request.py,sha256=58BglOQ_GM1MYe89oKL99XOKYUwuEtY1XqmyPo9QBzg,4548
345
+ h2ogpte/rest_sync/models/update_collection_privacy_request.py,sha256=zCkjIvJJouYTBW8UU9yxHJqgti7Gz80Db_ycwSC63Jc,4780
346
+ h2ogpte/rest_sync/models/update_collection_workspace_request.py,sha256=rpEBNrojj88KR8g-FfckKktPPTTJD4ZsrRVcQ-Qkt4U,4557
306
347
  h2ogpte/rest_sync/models/update_custom_agent_tool200_response.py,sha256=aNpqXIPr9J0PC2XGAhQBDXu2aWjXf2yuwDeImkChjeY,4611
307
348
  h2ogpte/rest_sync/models/update_custom_agent_tool_request.py,sha256=Wz6nEziQ_8Po0MRTmkDVVHRJqMWW3tipBgbONX_Bisk,4515
308
349
  h2ogpte/rest_sync/models/update_default_prompt_template_visibility_request.py,sha256=VqM5DHrSuTDJlZRmMP2h9s0gz_2f4-XdJ6g2sBY32RE,4627
350
+ h2ogpte/rest_sync/models/update_extractor_privacy_request.py,sha256=G9BWe2TKasvH6sf1dOx0v3sybRV2YMlEtFNvSL07DWM,4543
309
351
  h2ogpte/rest_sync/models/update_prompt_template_privacy_request.py,sha256=IEddiGtA3kWZmOshripk-leV_c4GqXp2emPJl4zygsg,4569
310
352
  h2ogpte/rest_sync/models/update_qa_feedback_request.py,sha256=m5MtLO5sZwyv52IQdPzhOpK9uLS6pC7rhDKwp29ypv8,4548
311
353
  h2ogpte/rest_sync/models/update_secret_request.py,sha256=85cHQ1zCxSOobvqFKrvL1T4p2sS3wmdiOG-Rm8n5iNU,4473
@@ -319,7 +361,8 @@ h2ogpte/rest_sync/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiP
319
361
  h2ogpte/rest_sync/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
320
362
  h2ogpte/rest_sync/models/user_job_details.py,sha256=9cbhpgLMDpar-aTOaY5Ygud-8Kbi23cLNldTGab0Sd8,4984
321
363
  h2ogpte/rest_sync/models/user_permission.py,sha256=9ffijaF3U3SYz_T_kcqHPJUfIZFkpCH0vBGboPjsg2o,4646
322
- h2ogpte-1.6.41rc5.dist-info/METADATA,sha256=74ffT-uGET06Nl6X6Eca54LJmgYMIy0QhN80_vm8oKo,8494
323
- h2ogpte-1.6.41rc5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
324
- h2ogpte-1.6.41rc5.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
325
- h2ogpte-1.6.41rc5.dist-info/RECORD,,
364
+ h2ogpte-1.6.43.dist-info/METADATA,sha256=xMGZ-Yig8bFNs4GflY5P6JnskGg8UAupn8ybdb00cbw,8612
365
+ h2ogpte-1.6.43.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
366
+ h2ogpte-1.6.43.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
367
+ h2ogpte-1.6.43.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
368
+ h2ogpte-1.6.43.dist-info/RECORD,,
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ h2ogpte-cli = h2ogpte.cli.main:main