h2ogpte 1.6.54rc4__py3-none-any.whl → 1.7.0rc1__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 +184 -20
- h2ogpte/h2ogpte_async.py +184 -20
- h2ogpte/rest_async/__init__.py +3 -2
- h2ogpte/rest_async/api/agents_api.py +25 -25
- h2ogpte/rest_async/api/chat_api.py +1077 -21
- h2ogpte/rest_async/api/models_api.py +35 -67
- h2ogpte/rest_async/api_client.py +1 -1
- h2ogpte/rest_async/configuration.py +1 -1
- h2ogpte/rest_async/models/__init__.py +2 -1
- h2ogpte/rest_async/models/chat_completion_request.py +6 -2
- h2ogpte/rest_async/models/chat_settings.py +6 -2
- h2ogpte/rest_async/models/chat_settings_tags.py +140 -0
- h2ogpte/rest_async/models/extractor.py +26 -2
- h2ogpte/rest_async/models/extractor_create_request.py +29 -5
- h2ogpte/rest_async/models/ingest_from_confluence_body.py +4 -2
- h2ogpte/rest_async/models/{create_topic_model_job_request.py → tag_filter.py} +11 -9
- h2ogpte/rest_sync/__init__.py +3 -2
- h2ogpte/rest_sync/api/agents_api.py +25 -25
- h2ogpte/rest_sync/api/chat_api.py +1077 -21
- h2ogpte/rest_sync/api/models_api.py +35 -67
- h2ogpte/rest_sync/api_client.py +1 -1
- h2ogpte/rest_sync/configuration.py +1 -1
- h2ogpte/rest_sync/models/__init__.py +2 -1
- h2ogpte/rest_sync/models/chat_completion_request.py +6 -2
- h2ogpte/rest_sync/models/chat_settings.py +6 -2
- h2ogpte/rest_sync/models/chat_settings_tags.py +140 -0
- h2ogpte/rest_sync/models/extractor.py +26 -2
- h2ogpte/rest_sync/models/extractor_create_request.py +29 -5
- h2ogpte/rest_sync/models/ingest_from_confluence_body.py +4 -2
- h2ogpte/rest_sync/models/{create_topic_model_job_request.py → tag_filter.py} +11 -9
- h2ogpte/session.py +13 -6
- h2ogpte/session_async.py +11 -3
- h2ogpte/types.py +27 -1
- {h2ogpte-1.6.54rc4.dist-info → h2ogpte-1.7.0rc1.dist-info}/METADATA +1 -1
- {h2ogpte-1.6.54rc4.dist-info → h2ogpte-1.7.0rc1.dist-info}/RECORD +39 -37
- {h2ogpte-1.6.54rc4.dist-info → h2ogpte-1.7.0rc1.dist-info}/WHEEL +1 -1
- {h2ogpte-1.6.54rc4.dist-info → h2ogpte-1.7.0rc1.dist-info}/entry_points.txt +0 -0
- {h2ogpte-1.6.54rc4.dist-info → h2ogpte-1.7.0rc1.dist-info}/top_level.txt +0 -0
|
@@ -17,7 +17,7 @@ import pprint
|
|
|
17
17
|
import re # noqa: F401
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
|
-
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
|
|
21
21
|
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from h2ogpte.rest_sync.models.confluence_credentials import ConfluenceCredentials
|
|
23
23
|
from typing import Optional, Set
|
|
@@ -29,9 +29,10 @@ class IngestFromConfluenceBody(BaseModel):
|
|
|
29
29
|
""" # noqa: E501
|
|
30
30
|
base_url: StrictStr = Field(description="Base url of the confluence instance.")
|
|
31
31
|
page_ids: List[StrictStr] = Field(description="Ids of pages to be ingested.")
|
|
32
|
+
include_attachments: Optional[StrictBool] = Field(default=False, description="A flag indicating whether to also ingest attachments with the page.")
|
|
32
33
|
credentials: ConfluenceCredentials
|
|
33
34
|
metadata: Optional[Dict[str, Any]] = Field(default=None, description="Metadata for the documents.")
|
|
34
|
-
__properties: ClassVar[List[str]] = ["base_url", "page_ids", "credentials", "metadata"]
|
|
35
|
+
__properties: ClassVar[List[str]] = ["base_url", "page_ids", "include_attachments", "credentials", "metadata"]
|
|
35
36
|
|
|
36
37
|
model_config = ConfigDict(
|
|
37
38
|
populate_by_name=True,
|
|
@@ -89,6 +90,7 @@ class IngestFromConfluenceBody(BaseModel):
|
|
|
89
90
|
_obj = cls.model_validate({
|
|
90
91
|
"base_url": obj.get("base_url"),
|
|
91
92
|
"page_ids": obj.get("page_ids"),
|
|
93
|
+
"include_attachments": obj.get("include_attachments") if obj.get("include_attachments") is not None else False,
|
|
92
94
|
"credentials": ConfluenceCredentials.from_dict(obj["credentials"]) if obj.get("credentials") is not None else None,
|
|
93
95
|
"metadata": obj.get("metadata")
|
|
94
96
|
})
|
|
@@ -17,17 +17,18 @@ import pprint
|
|
|
17
17
|
import re # noqa: F401
|
|
18
18
|
import json
|
|
19
19
|
|
|
20
|
-
from pydantic import BaseModel, ConfigDict, StrictStr
|
|
21
|
-
from typing import Any, ClassVar, Dict, List
|
|
20
|
+
from pydantic import BaseModel, ConfigDict, Field, StrictStr
|
|
21
|
+
from typing import Any, ClassVar, Dict, List, Optional
|
|
22
22
|
from typing import Optional, Set
|
|
23
23
|
from typing_extensions import Self
|
|
24
24
|
|
|
25
|
-
class
|
|
25
|
+
class TagFilter(BaseModel):
|
|
26
26
|
"""
|
|
27
|
-
|
|
27
|
+
Filter for document tags supporting inclusion and exclusion. Note: The exclude list takes priority over the include list. If a document has a tag that appears in both lists, the document will be excluded. Examples: - Include only documents with 'red' OR 'blue' tags: {\"include\": [\"red\", \"blue\"]} - Exclude documents with 'red' OR 'blue' tags: {\"exclude\": [\"red\", \"blue\"]} - Include documents with 'color' tag BUT exclude 'red' and 'blue': {\"include\": [\"color\"], \"exclude\": [\"red\", \"blue\"]}
|
|
28
28
|
""" # noqa: E501
|
|
29
|
-
|
|
30
|
-
|
|
29
|
+
include: Optional[List[StrictStr]] = Field(default=None, description="Include documents with ANY of these tags (OR operation).")
|
|
30
|
+
exclude: Optional[List[StrictStr]] = Field(default=None, description="Exclude documents with ANY of these tags (OR operation). Takes priority over include.")
|
|
31
|
+
__properties: ClassVar[List[str]] = ["include", "exclude"]
|
|
31
32
|
|
|
32
33
|
model_config = ConfigDict(
|
|
33
34
|
populate_by_name=True,
|
|
@@ -47,7 +48,7 @@ class CreateTopicModelJobRequest(BaseModel):
|
|
|
47
48
|
|
|
48
49
|
@classmethod
|
|
49
50
|
def from_json(cls, json_str: str) -> Optional[Self]:
|
|
50
|
-
"""Create an instance of
|
|
51
|
+
"""Create an instance of TagFilter from a JSON string"""
|
|
51
52
|
return cls.from_dict(json.loads(json_str))
|
|
52
53
|
|
|
53
54
|
def to_dict(self) -> Dict[str, Any]:
|
|
@@ -72,7 +73,7 @@ class CreateTopicModelJobRequest(BaseModel):
|
|
|
72
73
|
|
|
73
74
|
@classmethod
|
|
74
75
|
def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
|
|
75
|
-
"""Create an instance of
|
|
76
|
+
"""Create an instance of TagFilter from a dict"""
|
|
76
77
|
if obj is None:
|
|
77
78
|
return None
|
|
78
79
|
|
|
@@ -80,7 +81,8 @@ class CreateTopicModelJobRequest(BaseModel):
|
|
|
80
81
|
return cls.model_validate(obj)
|
|
81
82
|
|
|
82
83
|
_obj = cls.model_validate({
|
|
83
|
-
"
|
|
84
|
+
"include": obj.get("include"),
|
|
85
|
+
"exclude": obj.get("exclude")
|
|
84
86
|
})
|
|
85
87
|
return _obj
|
|
86
88
|
|
h2ogpte/session.py
CHANGED
|
@@ -29,6 +29,7 @@ from h2ogpte.types import (
|
|
|
29
29
|
ChatResponse,
|
|
30
30
|
PartialChatMessage,
|
|
31
31
|
SessionError,
|
|
32
|
+
TagFilter,
|
|
32
33
|
)
|
|
33
34
|
from h2ogpte.errors import (
|
|
34
35
|
UnauthorizedError,
|
|
@@ -91,7 +92,9 @@ class Session:
|
|
|
91
92
|
url = urlparse(address)
|
|
92
93
|
scheme = "wss" if url.scheme == "https" else "ws"
|
|
93
94
|
# TODO handle base URLs
|
|
94
|
-
self._address =
|
|
95
|
+
self._address = (
|
|
96
|
+
f"{scheme}://{url.netloc}/ws?currentSessionID={chat_session_id}&source=py"
|
|
97
|
+
)
|
|
95
98
|
self._client = client
|
|
96
99
|
self._chat_session_id = chat_session_id
|
|
97
100
|
self._connection: Optional[ClientConnection] = None
|
|
@@ -192,7 +195,7 @@ class Session:
|
|
|
192
195
|
self_reflection_config: Optional[Dict[str, Any]] = None,
|
|
193
196
|
rag_config: Optional[Dict[str, Any]] = None,
|
|
194
197
|
include_chat_history: Optional[Union[bool, str]] = "auto",
|
|
195
|
-
tags: Optional[List[str]] = None,
|
|
198
|
+
tags: Optional[Union[List[str], TagFilter]] = None,
|
|
196
199
|
metadata_filter: Optional[Dict[str, Any]] = None,
|
|
197
200
|
timeout: Optional[float] = None,
|
|
198
201
|
retries: int = 3,
|
|
@@ -326,6 +329,11 @@ class Session:
|
|
|
326
329
|
Requires 1 LLM or Agent call.
|
|
327
330
|
:code:`"agent_only"` Agent Only - Answer the query with only original files passed to agent.
|
|
328
331
|
Requires 1 Agent call.
|
|
332
|
+
:code:`"agentic_rag"` Agentic RAG - Agent with RAG tool that retrieves and answers from collection.
|
|
333
|
+
Requires 1 Agent call with RAG tool execution.
|
|
334
|
+
:code:`"rlm_rag"` RLM RAG - Agent programmatically analyzes documents using Python code
|
|
335
|
+
execution and sub-LLM calls. Best for complex multi-hop reasoning over large documents.
|
|
336
|
+
Requires 1 Agent call.
|
|
329
337
|
:code:`"rag"` RAG (Retrieval Augmented Generation) - Use supporting document contexts
|
|
330
338
|
to answer the query. Requires 1 LLM or Agent call.
|
|
331
339
|
:code:`"hyde1"` LLM Only + RAG composite - HyDE RAG (Hypothetical Document Embedding).
|
|
@@ -340,9 +348,6 @@ class Session:
|
|
|
340
348
|
:code:`"all_data"` All Data RAG - Like Summary RAG, but includes all document
|
|
341
349
|
chunks. Uses recursive summarization to overcome LLM context limits.
|
|
342
350
|
Can require several LLM calls.
|
|
343
|
-
:code:`"all_data"` All Data RAG - Like Summary RAG, but includes all document
|
|
344
|
-
chunks. Uses recursive summarization to overcome LLM context limits.
|
|
345
|
-
Can require several LLM calls.
|
|
346
351
|
hyde_no_rag_llm_prompt_extension: str
|
|
347
352
|
Add this prompt to every user's prompt, when generating answers to be used
|
|
348
353
|
for subsequent retrieval during HyDE. Only used when rag_type is "hyde1" or "hyde2".
|
|
@@ -380,7 +385,9 @@ class Session:
|
|
|
380
385
|
answers for a given question.
|
|
381
386
|
Choices are: ["on","off","auto",True,False]
|
|
382
387
|
tags:
|
|
383
|
-
|
|
388
|
+
Filter documents by tags for RAG. Can be:
|
|
389
|
+
- List format: ["red", "blue"] includes documents with these tags
|
|
390
|
+
- TagFilter object: TagFilter(include=["red"], exclude=["blue"])
|
|
384
391
|
metadata_filter:
|
|
385
392
|
A dictionary to filter documents by metadata, from which to pull the context for RAG.
|
|
386
393
|
timeout:
|
h2ogpte/session_async.py
CHANGED
|
@@ -30,6 +30,7 @@ from h2ogpte.types import (
|
|
|
30
30
|
ChatResponse,
|
|
31
31
|
SessionError,
|
|
32
32
|
PartialChatMessage,
|
|
33
|
+
TagFilter,
|
|
33
34
|
)
|
|
34
35
|
from h2ogpte.errors import (
|
|
35
36
|
UnauthorizedError,
|
|
@@ -108,7 +109,7 @@ class SessionAsync:
|
|
|
108
109
|
self_reflection_config: Optional[Dict[str, Any]] = None,
|
|
109
110
|
rag_config: Optional[Dict[str, Any]] = None,
|
|
110
111
|
include_chat_history: Optional[Union[bool, str]] = "auto",
|
|
111
|
-
tags: Optional[List[str]] = None,
|
|
112
|
+
tags: Optional[Union[List[str], TagFilter]] = None,
|
|
112
113
|
metadata_filter: Optional[Dict[str, Any]] = None,
|
|
113
114
|
timeout: Optional[float] = None,
|
|
114
115
|
retries: int = 3,
|
|
@@ -239,6 +240,11 @@ class SessionAsync:
|
|
|
239
240
|
Requires 1 LLM or Agent call.
|
|
240
241
|
:code:`"agent_only"` Agent Only - Answer the query with only original files passed to agent.
|
|
241
242
|
Requires 1 Agent call.
|
|
243
|
+
:code:`"agentic_rag"` Agentic RAG - Agent with RAG tool that retrieves and answers from collection.
|
|
244
|
+
Requires 1 Agent call with RAG tool execution.
|
|
245
|
+
:code:`"rlm_rag"` RLM RAG - Agent programmatically analyzes documents using Python code
|
|
246
|
+
execution and sub-LLM calls. Best for complex multi-hop reasoning over large documents.
|
|
247
|
+
Requires 1 Agent call.
|
|
242
248
|
:code:`"rag"` RAG (Retrieval Augmented Generation) - Use supporting document contexts
|
|
243
249
|
to answer the query. Requires 1 LLM or Agent call.
|
|
244
250
|
:code:`"hyde1"` LLM Only + RAG composite - HyDE RAG (Hypothetical Document Embedding).
|
|
@@ -290,7 +296,9 @@ class SessionAsync:
|
|
|
290
296
|
answers for a given question.
|
|
291
297
|
Choices are: ["on","off","auto",True,False]
|
|
292
298
|
tags:
|
|
293
|
-
|
|
299
|
+
Filter documents by tags for RAG. Can be:
|
|
300
|
+
- List format: ["red", "blue"] includes documents with these tags
|
|
301
|
+
- TagFilter object: TagFilter(include=["red"], exclude=["blue"])
|
|
294
302
|
metadata_filter:
|
|
295
303
|
A dictionary to filter documents by metadata, from which to pull the context for RAG.
|
|
296
304
|
timeout:
|
|
@@ -473,7 +481,7 @@ class SessionAsync:
|
|
|
473
481
|
while retries < self._max_connect_retries:
|
|
474
482
|
try:
|
|
475
483
|
self._websocket = await ws_old_connect(
|
|
476
|
-
uri=f"{scheme}://{url.netloc}/ws?currentSessionID={self._chat_session_id}",
|
|
484
|
+
uri=f"{scheme}://{url.netloc}/ws?currentSessionID={self._chat_session_id}&source=py",
|
|
477
485
|
extra_headers=headers,
|
|
478
486
|
open_timeout=self._open_timeout,
|
|
479
487
|
close_timeout=self._close_timeout,
|
h2ogpte/types.py
CHANGED
|
@@ -306,6 +306,16 @@ class Extractor(BaseModel):
|
|
|
306
306
|
llm: Optional[str] = None
|
|
307
307
|
# can't use name schema as it conflicts with BaseModel's internals
|
|
308
308
|
extractor_schema: Optional[Dict[str, Any]] = None
|
|
309
|
+
prompt: Optional[str] = None
|
|
310
|
+
pre_prompt_summary: Optional[str] = None
|
|
311
|
+
keep_intermediate_results: Optional[bool] = None
|
|
312
|
+
system_prompt: Optional[str] = None
|
|
313
|
+
max_num_chunks: Optional[int] = None
|
|
314
|
+
vision: Optional[str] = None
|
|
315
|
+
vision_llm: Optional[str] = None
|
|
316
|
+
image_batch_image_prompt: Optional[str] = None
|
|
317
|
+
image_batch_final_prompt: Optional[str] = None
|
|
318
|
+
guardrails_settings: Optional[Dict[str, Any]] = None
|
|
309
319
|
is_public: bool
|
|
310
320
|
|
|
311
321
|
|
|
@@ -476,6 +486,7 @@ class Meta(BaseModel):
|
|
|
476
486
|
build: str
|
|
477
487
|
username: str
|
|
478
488
|
user_id: str
|
|
489
|
+
subject: str
|
|
479
490
|
email: str
|
|
480
491
|
is_guest: bool
|
|
481
492
|
license_expired: bool
|
|
@@ -592,6 +603,21 @@ class APIKey(BaseModel):
|
|
|
592
603
|
is_global_key: bool
|
|
593
604
|
|
|
594
605
|
|
|
606
|
+
@dataclass
|
|
607
|
+
class TagFilter:
|
|
608
|
+
"""
|
|
609
|
+
Filter for document tags supporting inclusion and exclusion.
|
|
610
|
+
|
|
611
|
+
Examples:
|
|
612
|
+
TagFilter(include=['red', 'blue'])
|
|
613
|
+
TagFilter(exclude=['red', 'blue'])
|
|
614
|
+
TagFilter(include=['color'], exclude=['red', 'blue'])
|
|
615
|
+
"""
|
|
616
|
+
|
|
617
|
+
include: Optional[List[str]] = None
|
|
618
|
+
exclude: Optional[List[str]] = None
|
|
619
|
+
|
|
620
|
+
|
|
595
621
|
@dataclass
|
|
596
622
|
class ChatRequest:
|
|
597
623
|
t: str # cq
|
|
@@ -609,7 +635,7 @@ class ChatRequest:
|
|
|
609
635
|
self_reflection_config: Optional[str]
|
|
610
636
|
rag_config: Optional[str]
|
|
611
637
|
include_chat_history: Optional[Union[bool, str]] = False
|
|
612
|
-
tags: Optional[List[str]] = None
|
|
638
|
+
tags: Optional[Union[List[str], "TagFilter"]] = None
|
|
613
639
|
metadata_filter: Optional[str] = None
|
|
614
640
|
image_batch_image_prompt: Optional[str] = None
|
|
615
641
|
image_batch_final_prompt: Optional[str] = None
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
h2ogpte/__init__.py,sha256=
|
|
1
|
+
h2ogpte/__init__.py,sha256=5fgRaIf-gXNieXWqHbaj-FttUmQuFrw4SbClEpWADk0,1523
|
|
2
2
|
h2ogpte/connectors.py,sha256=CRAEpkn9GotcCjWANfJjZ5Hq1cjGWJ4H_IO4eJgVWiI,8466
|
|
3
3
|
h2ogpte/errors.py,sha256=XgLdfJO1fZ9Bf9rhUKpnvRzzvkNyan3Oc6WzGS6hCUA,1248
|
|
4
|
-
h2ogpte/h2ogpte.py,sha256=
|
|
5
|
-
h2ogpte/h2ogpte_async.py,sha256=
|
|
4
|
+
h2ogpte/h2ogpte.py,sha256=VaSuzh1YTvfGdXd5btX1JiHRW6VfGGHk9-4FcKgf0e4,317627
|
|
5
|
+
h2ogpte/h2ogpte_async.py,sha256=2OJn3sOwtWZ8CmiqwHuJV3pqvOXOSMss1hqrBUtid3w,337566
|
|
6
6
|
h2ogpte/h2ogpte_sync_base.py,sha256=ftsVzpMqEsyi0UACMI-7H_EIYEx9JEdEUImbyjWy_Hc,15285
|
|
7
|
-
h2ogpte/session.py,sha256=
|
|
8
|
-
h2ogpte/session_async.py,sha256=
|
|
7
|
+
h2ogpte/session.py,sha256=I_ETIrTRZbuHj66bjxabEBblg33--vAY1BMkAYkGqZE,33037
|
|
8
|
+
h2ogpte/session_async.py,sha256=GseDpeDevspXhK4Z6mhg6LeIjulnUXMv0SRJ3p4RZ2c,32005
|
|
9
9
|
h2ogpte/shared_client.py,sha256=Zh24myL--5JDdrKoJPW4aeprHX6a_oB9o461Ho3hnU8,14691
|
|
10
|
-
h2ogpte/types.py,sha256=
|
|
10
|
+
h2ogpte/types.py,sha256=LTdz14_lLNtdxSVbvhxkUmHVmg91ZCn4ZfXyg-QmKAU,16186
|
|
11
11
|
h2ogpte/utils.py,sha256=Z9n57xxPu0KtsCzkJ9V_VgTW--oG_aXTLBgmXDWSdnM,3201
|
|
12
12
|
h2ogpte/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
13
|
h2ogpte/cli/main.py,sha256=Upf3t_5m1RqLh1jKGB6Gbyp3n9sujVny7sY-qxh2PYo,2722
|
|
@@ -41,29 +41,29 @@ h2ogpte/cli/ui/prompts.py,sha256=bJvRe_32KppQTK5bqnsrPh0RS4JaY9KkiV7y-3v8PMQ,538
|
|
|
41
41
|
h2ogpte/cli/ui/status_bar.py,sha256=hs2MLvkg-y3Aiu3gWRtgMXf3jv3DGe7Y47ucgoBAP7Y,3852
|
|
42
42
|
h2ogpte/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
43
|
h2ogpte/cli/utils/file_manager.py,sha256=ghNDX6G3Dr0vFvBYjbqx5o7qxq-pN8Vo2Rp1vyITfLo,13988
|
|
44
|
-
h2ogpte/rest_async/__init__.py,sha256=
|
|
45
|
-
h2ogpte/rest_async/api_client.py,sha256=
|
|
44
|
+
h2ogpte/rest_async/__init__.py,sha256=hvNglhdWXbHzs0KZOmgt_8E008_IWFjs57-aW01t0as,15239
|
|
45
|
+
h2ogpte/rest_async/api_client.py,sha256=EjRijfYCIM_9sV6dHcIcFLdmKiq07EdIUgnRA1a7a_Q,29509
|
|
46
46
|
h2ogpte/rest_async/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
47
|
-
h2ogpte/rest_async/configuration.py,sha256=
|
|
47
|
+
h2ogpte/rest_async/configuration.py,sha256=at_yykXhk48EO7Np_cRNJlfLH7YWOUodVlKCjzHFFzI,19566
|
|
48
48
|
h2ogpte/rest_async/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
|
|
49
49
|
h2ogpte/rest_async/rest.py,sha256=mdjDwzJ1kiaYtONUfDRqKsRPw5-tG6eyZV2P1yBuwRo,9147
|
|
50
50
|
h2ogpte/rest_async/api/__init__.py,sha256=R_x57GGyaSgxZyrJOyOt551TodbRSQf3T7VrraQc-84,973
|
|
51
|
-
h2ogpte/rest_async/api/agents_api.py,sha256=
|
|
51
|
+
h2ogpte/rest_async/api/agents_api.py,sha256=B96qOwSyjttB1YXIP6GSI7u2k1-MCta5ht0f8JcDmxw,185958
|
|
52
52
|
h2ogpte/rest_async/api/api_keys_api.py,sha256=hgywNjCWaIrhFRJacKuPkJSKDEltIK8B9fi-4xMWLgs,58244
|
|
53
|
-
h2ogpte/rest_async/api/chat_api.py,sha256=
|
|
53
|
+
h2ogpte/rest_async/api/chat_api.py,sha256=unIUiAM9RGa6ICmogl0Kfyz7_fFD_zU_iIisy61WIho,338235
|
|
54
54
|
h2ogpte/rest_async/api/collections_api.py,sha256=kg6ZJyqNtnrqu2Q1cS8S-ViYPjXTEAynE2nlSQ-61HA,649556
|
|
55
55
|
h2ogpte/rest_async/api/configurations_api.py,sha256=H9I2hukGC8ACin3cSUR3pAqtghJs0OUPJAzC9nOlkGY,127865
|
|
56
56
|
h2ogpte/rest_async/api/document_ingestion_api.py,sha256=K8iIH9yPEwZlJdySLnEQkSen2uneR2kEUHZXzJyc0JA,489154
|
|
57
57
|
h2ogpte/rest_async/api/documents_api.py,sha256=X-w5x4bX2wHXlxb_97XgWdgNi5qAkdksoqz7bHKG5fA,261595
|
|
58
58
|
h2ogpte/rest_async/api/extractors_api.py,sha256=BJXOzn14HruFfkGh0MlXm4zFGoxijcIrA0NZmjru-yE,161348
|
|
59
59
|
h2ogpte/rest_async/api/jobs_api.py,sha256=xXxqeDGy3ZA9KTF0Aowd5Rlt-gu2mXfD1S5Y6_-ST68,72519
|
|
60
|
-
h2ogpte/rest_async/api/models_api.py,sha256=
|
|
60
|
+
h2ogpte/rest_async/api/models_api.py,sha256=Oy5XgzRU51mIXWhJFf6ZwCVIhUQGui6IfDVDD5GYXcs,219445
|
|
61
61
|
h2ogpte/rest_async/api/permissions_api.py,sha256=FxkEMIhKZWyw0KMCYU78nspcFcMs4ppiK8GjFE1nIVI,369448
|
|
62
62
|
h2ogpte/rest_async/api/prompt_templates_api.py,sha256=RJnYC3jfhvx2L_vpTlU6kCqujs55aPf0kSDe0AG1zow,226547
|
|
63
63
|
h2ogpte/rest_async/api/secrets_api.py,sha256=MTtmpYO2IOXuCklK-BxVyF9aBNZebgWuQenada-uM7o,68122
|
|
64
64
|
h2ogpte/rest_async/api/system_api.py,sha256=wXxO1lFEnrPHO0JRCgg13j6CpRKb3nou81dk8nA31v0,12532
|
|
65
65
|
h2ogpte/rest_async/api/tags_api.py,sha256=VwamxhJKsuBu3UeslsZ0vflxbnV1FmUV2pbWvIBwvFk,56168
|
|
66
|
-
h2ogpte/rest_async/models/__init__.py,sha256=
|
|
66
|
+
h2ogpte/rest_async/models/__init__.py,sha256=OU_tp7iy6bfWrotkFWrTgdTWX8G_n-424uZ2V-mDeao,13729
|
|
67
67
|
h2ogpte/rest_async/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
|
|
68
68
|
h2ogpte/rest_async/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
|
|
69
69
|
h2ogpte/rest_async/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
|
|
@@ -80,14 +80,15 @@ h2ogpte/rest_async/models/api_key_update_expiry_request.py,sha256=GTMkaqLOUqUpjx
|
|
|
80
80
|
h2ogpte/rest_async/models/azure_credentials.py,sha256=hy6hv5Uf5CIGgO5S-2jVbO5N25QvEkiUxXnvItESoBA,4620
|
|
81
81
|
h2ogpte/rest_async/models/chat_completion.py,sha256=iVTiDzWJ7v5p_j37PO5aRdLrKhY98J_cl7eXTsymudU,4524
|
|
82
82
|
h2ogpte/rest_async/models/chat_completion_delta.py,sha256=TGEeMoSgBIph1YzTJYN2lYekboFo4btRRGtDbd5HHtw,4745
|
|
83
|
-
h2ogpte/rest_async/models/chat_completion_request.py,sha256=
|
|
83
|
+
h2ogpte/rest_async/models/chat_completion_request.py,sha256=7a_x6kQtF5Lap73XpvY3DgCCznykygLEEGD-SVwwlEo,19251
|
|
84
84
|
h2ogpte/rest_async/models/chat_error.py,sha256=Ob1UB0nhrKdEGA5Z63VD_TdxokV-8CyA5m-NDgnwqt4,4355
|
|
85
85
|
h2ogpte/rest_async/models/chat_message.py,sha256=D46MmPf86LPKkcTJKcPyH-EFyMMkPRNOCC1jfQu0xYE,5768
|
|
86
86
|
h2ogpte/rest_async/models/chat_message_meta.py,sha256=dgM0NIDSdB6_MN7lEiR4frDFCVZa7C58UATW0SiJB2s,4484
|
|
87
87
|
h2ogpte/rest_async/models/chat_message_reference.py,sha256=P5_jxbgfNcwdzC7OgND27EbVemPKiZay0jsCYn8qqTs,5248
|
|
88
88
|
h2ogpte/rest_async/models/chat_session.py,sha256=RVvL2IvMzIQPJ2W6lheUJyN3i6kaffQ80ox66sivq_M,5199
|
|
89
89
|
h2ogpte/rest_async/models/chat_session_update_request.py,sha256=yiH14-IrQfbZ0qINIAyGgtrmhgDr-E-cmd9_5OVVHKU,4411
|
|
90
|
-
h2ogpte/rest_async/models/chat_settings.py,sha256=
|
|
90
|
+
h2ogpte/rest_async/models/chat_settings.py,sha256=pdXyWx9FC6RZTYRmMBSfO_fO8Djz9j7e_lGvz7dFD7M,17141
|
|
91
|
+
h2ogpte/rest_async/models/chat_settings_tags.py,sha256=W8q1R6hMIXGNOcyc5k-hAOSOUCV7744IOcTsT7SKOU4,7424
|
|
91
92
|
h2ogpte/rest_async/models/chunk.py,sha256=4t2oms4W29WEYKi7KvzCArsLOaCOLYyyQRrJttlDUAU,4759
|
|
92
93
|
h2ogpte/rest_async/models/chunk_search_result.py,sha256=keifMKId0YhLFGzh5nv3jNCtQt7YciiwUd6-DsNckAs,4985
|
|
93
94
|
h2ogpte/rest_async/models/collection.py,sha256=NR9Ze5D8PNTDbSKWD3J5y9OiF_KdHEJnJmZKQJCkg00,9181
|
|
@@ -107,7 +108,6 @@ h2ogpte/rest_async/models/create_import_collection_to_collection_job_request.py,
|
|
|
107
108
|
h2ogpte/rest_async/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
|
|
108
109
|
h2ogpte/rest_async/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
|
|
109
110
|
h2ogpte/rest_async/models/create_secret_request.py,sha256=hz8zdVQj9upXPIcHwzCuh9-kK_vOXQ3fMo7dl4aA2mc,5187
|
|
110
|
-
h2ogpte/rest_async/models/create_topic_model_job_request.py,sha256=FiF-PBYuizkivZLTgdXyJOv3VtdEf5e_VxD6WeJJuNk,4455
|
|
111
111
|
h2ogpte/rest_async/models/delete_chat_sessions_job_request.py,sha256=P4nASRlenVbBzxXzzhOcqq03G-QCWE6OOBYpy9QTnRo,4527
|
|
112
112
|
h2ogpte/rest_async/models/delete_collections_job_request.py,sha256=Y2ZvQJtJ-93pk1hzSFh36zaORXElFqlrZ_NsO5xqoMw,4533
|
|
113
113
|
h2ogpte/rest_async/models/delete_documents_job_request.py,sha256=tr8UPLMGjTbzC3Q-7uv8h8QCnLhfnFMFjchyqdnY51Q,4515
|
|
@@ -119,8 +119,8 @@ h2ogpte/rest_async/models/embedding_model.py,sha256=Az8OIiycqS9iuFX9li2MKN01om-L
|
|
|
119
119
|
h2ogpte/rest_async/models/encode_chunks_for_retrieval_request.py,sha256=pNt-ysMzqNyXbKFI3Repuq6ciaF1jFkADMxGvZjF518,4453
|
|
120
120
|
h2ogpte/rest_async/models/endpoint_error.py,sha256=jzaoCDJO1O_CtfdBQCsJCFhzzJDJQQnGxTpVq7cdH50,4533
|
|
121
121
|
h2ogpte/rest_async/models/extraction_request.py,sha256=HlhsMtMSnpdwkzyPiKVMZvaHVqEvLite7-snp5DqLQI,14562
|
|
122
|
-
h2ogpte/rest_async/models/extractor.py,sha256=
|
|
123
|
-
h2ogpte/rest_async/models/extractor_create_request.py,sha256=
|
|
122
|
+
h2ogpte/rest_async/models/extractor.py,sha256=m0JkWHDqdUB0KbCpW-7RAnabdhBmm2qJ6mBOi9-64gI,7793
|
|
123
|
+
h2ogpte/rest_async/models/extractor_create_request.py,sha256=jUfquQYdoJZdyX_7PRuYpVm22zJuo6UNa8ne_zzg-3s,7570
|
|
124
124
|
h2ogpte/rest_async/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
|
|
125
125
|
h2ogpte/rest_async/models/global_configuration_item.py,sha256=ftcmagaca05APU4tevfvEOcSPgP6rRHzmBbs4Txryx4,5418
|
|
126
126
|
h2ogpte/rest_async/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
|
|
@@ -131,7 +131,7 @@ h2ogpte/rest_async/models/guardrails_settings_create_request.py,sha256=6DMke_u-1
|
|
|
131
131
|
h2ogpte/rest_async/models/h2_ogpt_system_info.py,sha256=6pBoTwU-QOh3oSk48drmuFhOcv9zEEzsWXvn-P4LIHk,8652
|
|
132
132
|
h2ogpte/rest_async/models/h2_ogptgpu_info.py,sha256=gUdC0izDgwpyRBJa9_bua6BYnJo8K0H9nG_E4kO_pNE,5124
|
|
133
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=
|
|
134
|
+
h2ogpte/rest_async/models/ingest_from_confluence_body.py,sha256=MWCCDW9lnKQuBPNCNNqVwoijOT-EW8JlQsD88KRjYmo,5561
|
|
135
135
|
h2ogpte/rest_async/models/ingest_from_file_system_body.py,sha256=JnbjY-PxMxaLZXvHRjKdfNTZDtJj9CfPpRPG1QVyBjU,4655
|
|
136
136
|
h2ogpte/rest_async/models/ingest_from_gcs_body.py,sha256=ygQsntThO7SHxzHlwsftFvPvZQsGj6qHMCDp5HOdipg,5079
|
|
137
137
|
h2ogpte/rest_async/models/ingest_from_s3_body.py,sha256=n7nuAHbMBQpFPerWspgxy5Pua-Bvkc3axcYgFEg33mU,5311
|
|
@@ -177,6 +177,7 @@ h2ogpte/rest_async/models/suggested_question.py,sha256=RcXlzaTsj-GFtT5gGuiHkNHtN
|
|
|
177
177
|
h2ogpte/rest_async/models/summarize_request.py,sha256=LpiWC-XTgxaXvezCoJdCCvl_cM7vy6f7ocEZZUsgaYU,14882
|
|
178
178
|
h2ogpte/rest_async/models/tag.py,sha256=rnE0UXIzF3tqM9EWXRZ1oY3OU1Piq5MOU9t2svwgk3w,4594
|
|
179
179
|
h2ogpte/rest_async/models/tag_create_request.py,sha256=jETninpugqtUUkwHmcUZj3hj1qbSqcb7xLxnHkB1CCE,4379
|
|
180
|
+
h2ogpte/rest_async/models/tag_filter.py,sha256=Qnis6iEOQOPi5bpRA5YrmxxjOcg0hNwrf7UeZ332AtU,5217
|
|
180
181
|
h2ogpte/rest_async/models/tag_update_request.py,sha256=QD9iUZIqaUsuobauQF_f6OkyRE2bTG3O6f1N2pqBnBM,4524
|
|
181
182
|
h2ogpte/rest_async/models/update_agent_key_request.py,sha256=7EqlI-kZw0U2fyTnJumnUUlXslYZTBWvcTszsVkB310,5030
|
|
182
183
|
h2ogpte/rest_async/models/update_agent_tool_preference_request.py,sha256=GguSv4qEmF7OJZRm8vMZJ-9Md2Ce_hgModJ4PE4OruU,4493
|
|
@@ -201,29 +202,29 @@ h2ogpte/rest_async/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJii
|
|
|
201
202
|
h2ogpte/rest_async/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
|
|
202
203
|
h2ogpte/rest_async/models/user_job_details.py,sha256=kzu8fLxVsRMgnyt6dLr0VWjlIoE3i1VRpGR9nDxFyk4,4985
|
|
203
204
|
h2ogpte/rest_async/models/user_permission.py,sha256=1k74E7s2kD2waSZ79KPlgTupVYEacTKWMqcKxv2972A,4856
|
|
204
|
-
h2ogpte/rest_sync/__init__.py,sha256=
|
|
205
|
-
h2ogpte/rest_sync/api_client.py,sha256=
|
|
205
|
+
h2ogpte/rest_sync/__init__.py,sha256=E83QHVj3Q3v4ZBwyA2FLDSUG4WRgq6Bi1-ZL48fn_Zg,15077
|
|
206
|
+
h2ogpte/rest_sync/api_client.py,sha256=c_734EvlfD2MfgdPiyRvAGS8RnzwYmY5AbsDITioEK0,29396
|
|
206
207
|
h2ogpte/rest_sync/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
207
|
-
h2ogpte/rest_sync/configuration.py,sha256=
|
|
208
|
+
h2ogpte/rest_sync/configuration.py,sha256=eJsCpNys4isKitF1SDzbdSPLnhMWoIrhl3MQebsPOTk,19849
|
|
208
209
|
h2ogpte/rest_sync/exceptions.py,sha256=aSDc-0lURtyQjf5HGa7_Ta0nATxKxfHW3huDA2Zdj6o,8370
|
|
209
210
|
h2ogpte/rest_sync/rest.py,sha256=evRzviTYC_fsrpTtFlGvruXmquH9C0jDn-oQrGrE5A0,11314
|
|
210
211
|
h2ogpte/rest_sync/api/__init__.py,sha256=ZuLQQtyiXnP5UOwTlIOYLGLQq1BG_0PEkzC9s698vjM,958
|
|
211
|
-
h2ogpte/rest_sync/api/agents_api.py,sha256=
|
|
212
|
+
h2ogpte/rest_sync/api/agents_api.py,sha256=4dEYWDm3Fcq2n6eF3I9Pl8uzXBDFNK6PQBehcSGChf0,185174
|
|
212
213
|
h2ogpte/rest_sync/api/api_keys_api.py,sha256=MueDC8Z4VUC61IVIBem0kD0Wpgh35MvhoilUtPVLrN0,57997
|
|
213
|
-
h2ogpte/rest_sync/api/chat_api.py,sha256=
|
|
214
|
+
h2ogpte/rest_sync/api/chat_api.py,sha256=G1rvu7dMT3e6MmbNZ2e_Z5FeXw4z0Jziua0TTIWd9ms,336773
|
|
214
215
|
h2ogpte/rest_sync/api/collections_api.py,sha256=DsM57mFCtEn7WjMen3-zbZz_fC0TH1-zttlXJGQwwCs,647030
|
|
215
216
|
h2ogpte/rest_sync/api/configurations_api.py,sha256=B39KQB3fRknMZ8PtDNBxWVX2aVGTQSmaE2nq6Ya8VkE,127330
|
|
216
217
|
h2ogpte/rest_sync/api/document_ingestion_api.py,sha256=i7bLMjtFOvtr9zwgR2F-uXY1AhmW918axnm0T1vxU90,488230
|
|
217
218
|
h2ogpte/rest_sync/api/documents_api.py,sha256=qRDBXrQaZWp_hGxg-7mqAFUMeeWd1EB2M_xIlzHh6rw,260474
|
|
218
219
|
h2ogpte/rest_sync/api/extractors_api.py,sha256=Dz7RCbNRIuraNszzMOLVYzBxwMJwFsqwFIXreMr7B-Y,160666
|
|
219
220
|
h2ogpte/rest_sync/api/jobs_api.py,sha256=LM9erEymF1SgEg8j4ePeNbUeJtwAGTMCI3Z4zRESehE,72177
|
|
220
|
-
h2ogpte/rest_sync/api/models_api.py,sha256=
|
|
221
|
+
h2ogpte/rest_sync/api/models_api.py,sha256=8g9lJtVDJPXXy3snOLNf7jE7_d5pKs8yDmk_PC8wTKE,218466
|
|
221
222
|
h2ogpte/rest_sync/api/permissions_api.py,sha256=U4FSIKlUrWsQ1mRvEC1vVhPdUbCkODSNhR1Eb0vSFzU,367801
|
|
222
223
|
h2ogpte/rest_sync/api/prompt_templates_api.py,sha256=157y9lzY7Ky_ALu8TEemi0rfYzXrd4SJU1GxooXGJdg,225622
|
|
223
224
|
h2ogpte/rest_sync/api/secrets_api.py,sha256=5rAikvrX7n3Cj9M0ME-cPjISLpqrEFh2LmW23mvGk4g,67828
|
|
224
225
|
h2ogpte/rest_sync/api/system_api.py,sha256=knhP97lzeZt-YFTpcNJm9NdnqjoSg_Oh0yMGowiV1IM,12480
|
|
225
226
|
h2ogpte/rest_sync/api/tags_api.py,sha256=oCBsrFFLk0su8mz4wnCGSR_NxpCQgwEx18IwJKsOKrA,55921
|
|
226
|
-
h2ogpte/rest_sync/models/__init__.py,sha256=
|
|
227
|
+
h2ogpte/rest_sync/models/__init__.py,sha256=D26kSI2-2H1c8Lm5FjL6hzcN9KBrLnZF_JNo3H9xHbk,13591
|
|
227
228
|
h2ogpte/rest_sync/models/add_custom_agent_tool201_response_inner.py,sha256=0pxOC4ETqAnl2Amyt9d47oZDCH7Gjz0kexbpPsXurlg,4619
|
|
228
229
|
h2ogpte/rest_sync/models/agent_key.py,sha256=u-48HJqvAd3fpY8SZnl6_iDnv_2_V_wGrGu9w54V7s8,5226
|
|
229
230
|
h2ogpte/rest_sync/models/agent_server_directory_file_stats.py,sha256=Y25fTkk8kbY_p2AXFNTM4sUlPwEGGSMLxmC_csmTn1w,6335
|
|
@@ -240,14 +241,15 @@ h2ogpte/rest_sync/models/api_key_update_expiry_request.py,sha256=GTMkaqLOUqUpjxl
|
|
|
240
241
|
h2ogpte/rest_sync/models/azure_credentials.py,sha256=hy6hv5Uf5CIGgO5S-2jVbO5N25QvEkiUxXnvItESoBA,4620
|
|
241
242
|
h2ogpte/rest_sync/models/chat_completion.py,sha256=iVTiDzWJ7v5p_j37PO5aRdLrKhY98J_cl7eXTsymudU,4524
|
|
242
243
|
h2ogpte/rest_sync/models/chat_completion_delta.py,sha256=TGEeMoSgBIph1YzTJYN2lYekboFo4btRRGtDbd5HHtw,4745
|
|
243
|
-
h2ogpte/rest_sync/models/chat_completion_request.py,sha256=
|
|
244
|
+
h2ogpte/rest_sync/models/chat_completion_request.py,sha256=9LG4N3Dh2YoY3dx6aRNXcdqoWPfDqnOxFOAa9NDGYZQ,19250
|
|
244
245
|
h2ogpte/rest_sync/models/chat_error.py,sha256=Ob1UB0nhrKdEGA5Z63VD_TdxokV-8CyA5m-NDgnwqt4,4355
|
|
245
246
|
h2ogpte/rest_sync/models/chat_message.py,sha256=OLBO6sF7Wn8NC2Qf2anxGZYJ7YpWQTf8oI7ENcOSmQ8,5767
|
|
246
247
|
h2ogpte/rest_sync/models/chat_message_meta.py,sha256=dgM0NIDSdB6_MN7lEiR4frDFCVZa7C58UATW0SiJB2s,4484
|
|
247
248
|
h2ogpte/rest_sync/models/chat_message_reference.py,sha256=P5_jxbgfNcwdzC7OgND27EbVemPKiZay0jsCYn8qqTs,5248
|
|
248
249
|
h2ogpte/rest_sync/models/chat_session.py,sha256=RVvL2IvMzIQPJ2W6lheUJyN3i6kaffQ80ox66sivq_M,5199
|
|
249
250
|
h2ogpte/rest_sync/models/chat_session_update_request.py,sha256=yiH14-IrQfbZ0qINIAyGgtrmhgDr-E-cmd9_5OVVHKU,4411
|
|
250
|
-
h2ogpte/rest_sync/models/chat_settings.py,sha256=
|
|
251
|
+
h2ogpte/rest_sync/models/chat_settings.py,sha256=RxZrOO_i8HfokuLbgaCtAKkEkKk3OYftkRQfQfjgAdE,17140
|
|
252
|
+
h2ogpte/rest_sync/models/chat_settings_tags.py,sha256=fZoLR7g19bvVz4ChhttflYp36PkUsiEFwwh4A5VFEHk,7423
|
|
251
253
|
h2ogpte/rest_sync/models/chunk.py,sha256=4t2oms4W29WEYKi7KvzCArsLOaCOLYyyQRrJttlDUAU,4759
|
|
252
254
|
h2ogpte/rest_sync/models/chunk_search_result.py,sha256=keifMKId0YhLFGzh5nv3jNCtQt7YciiwUd6-DsNckAs,4985
|
|
253
255
|
h2ogpte/rest_sync/models/collection.py,sha256=NR9Ze5D8PNTDbSKWD3J5y9OiF_KdHEJnJmZKQJCkg00,9181
|
|
@@ -267,7 +269,6 @@ h2ogpte/rest_sync/models/create_import_collection_to_collection_job_request.py,s
|
|
|
267
269
|
h2ogpte/rest_sync/models/create_insert_document_to_collection_job_request.py,sha256=a6loe-w61bTyc-aYvLhx2528GoBkgNPAz5XTPx5UYfo,4576
|
|
268
270
|
h2ogpte/rest_sync/models/create_secret201_response.py,sha256=-C-6J1siGfVjvAcxqlMWqfGnDkJ4B3wIFjHPz8V2GF0,4492
|
|
269
271
|
h2ogpte/rest_sync/models/create_secret_request.py,sha256=hz8zdVQj9upXPIcHwzCuh9-kK_vOXQ3fMo7dl4aA2mc,5187
|
|
270
|
-
h2ogpte/rest_sync/models/create_topic_model_job_request.py,sha256=FiF-PBYuizkivZLTgdXyJOv3VtdEf5e_VxD6WeJJuNk,4455
|
|
271
272
|
h2ogpte/rest_sync/models/delete_chat_sessions_job_request.py,sha256=P4nASRlenVbBzxXzzhOcqq03G-QCWE6OOBYpy9QTnRo,4527
|
|
272
273
|
h2ogpte/rest_sync/models/delete_collections_job_request.py,sha256=Y2ZvQJtJ-93pk1hzSFh36zaORXElFqlrZ_NsO5xqoMw,4533
|
|
273
274
|
h2ogpte/rest_sync/models/delete_documents_job_request.py,sha256=tr8UPLMGjTbzC3Q-7uv8h8QCnLhfnFMFjchyqdnY51Q,4515
|
|
@@ -279,8 +280,8 @@ h2ogpte/rest_sync/models/embedding_model.py,sha256=Az8OIiycqS9iuFX9li2MKN01om-L6
|
|
|
279
280
|
h2ogpte/rest_sync/models/encode_chunks_for_retrieval_request.py,sha256=pNt-ysMzqNyXbKFI3Repuq6ciaF1jFkADMxGvZjF518,4453
|
|
280
281
|
h2ogpte/rest_sync/models/endpoint_error.py,sha256=jzaoCDJO1O_CtfdBQCsJCFhzzJDJQQnGxTpVq7cdH50,4533
|
|
281
282
|
h2ogpte/rest_sync/models/extraction_request.py,sha256=5GPJzCIa-iYNJGoJ0StAIHcNTZsxB_FD44SQxpgqt68,14561
|
|
282
|
-
h2ogpte/rest_sync/models/extractor.py,sha256=
|
|
283
|
-
h2ogpte/rest_sync/models/extractor_create_request.py,sha256=
|
|
283
|
+
h2ogpte/rest_sync/models/extractor.py,sha256=R57v97ZkVD5s37_pYeGyOxmxtSMjHCUroxlv4o2aFcg,7792
|
|
284
|
+
h2ogpte/rest_sync/models/extractor_create_request.py,sha256=gokeLp2S11kNZzHiWCBeOlbq5avCmiFTzsqEt3CjZH0,7569
|
|
284
285
|
h2ogpte/rest_sync/models/gcs_credentials.py,sha256=Fj8_eC3MqKKwn8NDM9hObMhOu0ScitFQrKG4JSXRmoI,4569
|
|
285
286
|
h2ogpte/rest_sync/models/global_configuration_item.py,sha256=ftcmagaca05APU4tevfvEOcSPgP6rRHzmBbs4Txryx4,5418
|
|
286
287
|
h2ogpte/rest_sync/models/group_create_request.py,sha256=Pw4dQQqbPnWWbVDALmjF-f96fhW7giuUaDVkshiHwoY,4480
|
|
@@ -291,7 +292,7 @@ h2ogpte/rest_sync/models/guardrails_settings_create_request.py,sha256=W3-vZsU0Cu
|
|
|
291
292
|
h2ogpte/rest_sync/models/h2_ogpt_system_info.py,sha256=eaFSINplInnPIW-dRO9K25AbQouNYngBI_JXX-AuY_w,8651
|
|
292
293
|
h2ogpte/rest_sync/models/h2_ogptgpu_info.py,sha256=gUdC0izDgwpyRBJa9_bua6BYnJo8K0H9nG_E4kO_pNE,5124
|
|
293
294
|
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=
|
|
295
|
+
h2ogpte/rest_sync/models/ingest_from_confluence_body.py,sha256=eFr4bmTQOBfjMywxoNIDWiG4y_untC7Ws1JV0m4rfIQ,5560
|
|
295
296
|
h2ogpte/rest_sync/models/ingest_from_file_system_body.py,sha256=JnbjY-PxMxaLZXvHRjKdfNTZDtJj9CfPpRPG1QVyBjU,4655
|
|
296
297
|
h2ogpte/rest_sync/models/ingest_from_gcs_body.py,sha256=XLRQMzcYLHWUWaRD_hnhSwIRz8TYGM3emDgpvWw_Gak,5078
|
|
297
298
|
h2ogpte/rest_sync/models/ingest_from_s3_body.py,sha256=OTZ01MO7hn-LRlATgsrv1DUX6oz04jv4Qk94fsGSfnE,5310
|
|
@@ -337,6 +338,7 @@ h2ogpte/rest_sync/models/suggested_question.py,sha256=RcXlzaTsj-GFtT5gGuiHkNHtNX
|
|
|
337
338
|
h2ogpte/rest_sync/models/summarize_request.py,sha256=L58eJZiqu-1Ssc2sat3Hp75k1mTixI_ibUiqYFTYptM,14881
|
|
338
339
|
h2ogpte/rest_sync/models/tag.py,sha256=rnE0UXIzF3tqM9EWXRZ1oY3OU1Piq5MOU9t2svwgk3w,4594
|
|
339
340
|
h2ogpte/rest_sync/models/tag_create_request.py,sha256=jETninpugqtUUkwHmcUZj3hj1qbSqcb7xLxnHkB1CCE,4379
|
|
341
|
+
h2ogpte/rest_sync/models/tag_filter.py,sha256=Qnis6iEOQOPi5bpRA5YrmxxjOcg0hNwrf7UeZ332AtU,5217
|
|
340
342
|
h2ogpte/rest_sync/models/tag_update_request.py,sha256=QD9iUZIqaUsuobauQF_f6OkyRE2bTG3O6f1N2pqBnBM,4524
|
|
341
343
|
h2ogpte/rest_sync/models/update_agent_key_request.py,sha256=7EqlI-kZw0U2fyTnJumnUUlXslYZTBWvcTszsVkB310,5030
|
|
342
344
|
h2ogpte/rest_sync/models/update_agent_tool_preference_request.py,sha256=GguSv4qEmF7OJZRm8vMZJ-9Md2Ce_hgModJ4PE4OruU,4493
|
|
@@ -361,8 +363,8 @@ h2ogpte/rest_sync/models/user_deletion_request.py,sha256=z7gD8XKOGwwg782TRzXJiiP
|
|
|
361
363
|
h2ogpte/rest_sync/models/user_info.py,sha256=ef59Eh9k42JUY3X2RnCrwYR7sc_8lXT1vRLGoNz3uTU,4489
|
|
362
364
|
h2ogpte/rest_sync/models/user_job_details.py,sha256=9cbhpgLMDpar-aTOaY5Ygud-8Kbi23cLNldTGab0Sd8,4984
|
|
363
365
|
h2ogpte/rest_sync/models/user_permission.py,sha256=1k74E7s2kD2waSZ79KPlgTupVYEacTKWMqcKxv2972A,4856
|
|
364
|
-
h2ogpte-1.
|
|
365
|
-
h2ogpte-1.
|
|
366
|
-
h2ogpte-1.
|
|
367
|
-
h2ogpte-1.
|
|
368
|
-
h2ogpte-1.
|
|
366
|
+
h2ogpte-1.7.0rc1.dist-info/METADATA,sha256=gv85OpsCpEmOr_YQoVb1LzL5kfLQ9LnTJ6XXIDRe2vs,8614
|
|
367
|
+
h2ogpte-1.7.0rc1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
|
|
368
|
+
h2ogpte-1.7.0rc1.dist-info/entry_points.txt,sha256=BlaqX2SXJanrOGqNYwnzvCxHGNadM7RBI4pW4rVo5z4,54
|
|
369
|
+
h2ogpte-1.7.0rc1.dist-info/top_level.txt,sha256=vXV4JnNwFWFAqTWyHrH-cGIQqbCcEDG9-BbyNn58JpM,8
|
|
370
|
+
h2ogpte-1.7.0rc1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|