unstructured-ingest 1.0.27__py3-none-any.whl → 1.0.28__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.
Potentially problematic release.
This version of unstructured-ingest might be problematic. Click here for more details.
- unstructured_ingest/__version__.py +1 -1
- unstructured_ingest/embed/vertexai.py +1 -1
- unstructured_ingest/processes/connectors/sharepoint.py +5 -1
- {unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/METADATA +1 -1
- {unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/RECORD +8 -8
- {unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/WHEEL +0 -0
- {unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/entry_points.txt +0 -0
- {unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/licenses/LICENSE.md +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "1.0.
|
|
1
|
+
__version__ = "1.0.28" # pragma: no cover
|
|
@@ -34,7 +34,7 @@ ApiKeyType = Secret[Annotated[dict, BeforeValidator(conform_string_to_dict)]]
|
|
|
34
34
|
class VertexAIEmbeddingConfig(EmbeddingConfig):
|
|
35
35
|
api_key: ApiKeyType = Field(description="API key for Vertex AI")
|
|
36
36
|
embedder_model_name: Optional[str] = Field(
|
|
37
|
-
default="
|
|
37
|
+
default="text-embedding-005", alias="model_name", description="Vertex AI model name"
|
|
38
38
|
)
|
|
39
39
|
|
|
40
40
|
def wrap_error(self, e: Exception) -> Exception:
|
|
@@ -2,7 +2,7 @@ from __future__ import annotations
|
|
|
2
2
|
|
|
3
3
|
import asyncio
|
|
4
4
|
from dataclasses import dataclass
|
|
5
|
-
from typing import TYPE_CHECKING, Any, AsyncIterator
|
|
5
|
+
from typing import TYPE_CHECKING, Any, AsyncIterator, Optional
|
|
6
6
|
|
|
7
7
|
from pydantic import Field
|
|
8
8
|
|
|
@@ -39,6 +39,10 @@ class SharepointAccessConfig(OnedriveAccessConfig):
|
|
|
39
39
|
|
|
40
40
|
|
|
41
41
|
class SharepointConnectionConfig(OnedriveConnectionConfig):
|
|
42
|
+
user_pname: Optional[str] = Field(
|
|
43
|
+
default=None,
|
|
44
|
+
description="User principal name or service account, usually your Azure AD email.",
|
|
45
|
+
)
|
|
42
46
|
site: str = Field(
|
|
43
47
|
description="Sharepoint site url. Process either base url e.g \
|
|
44
48
|
https://[tenant].sharepoint.com or relative sites \
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
unstructured_ingest/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
|
|
2
|
-
unstructured_ingest/__version__.py,sha256=
|
|
2
|
+
unstructured_ingest/__version__.py,sha256=9ilMs9aEgY_oAgkTk4JfWz5bhMHPPXDWre-49z0HXgo,43
|
|
3
3
|
unstructured_ingest/error.py,sha256=qDncnJgbf5ils956RcO2CGlAKYDT5OaEM9Clv1JVTNc,1448
|
|
4
4
|
unstructured_ingest/errors_v2.py,sha256=9RuRCi7lbDxCguDz07y5RiHoQiFIOWwOD7xqzJ2B3Yw,436
|
|
5
5
|
unstructured_ingest/logger.py,sha256=7e_7UeK6hVOd5BQ6i9NzRUAPCS_DF839Y8TjUDywraY,1428
|
|
@@ -30,7 +30,7 @@ unstructured_ingest/embed/mixedbreadai.py,sha256=uKTqzoi4M_WeYZu-qc_TSxwJONOESzx
|
|
|
30
30
|
unstructured_ingest/embed/octoai.py,sha256=yZuD7R4mEKS4Jjyae_IrNWogMPOFFS8gW5oUllj3ROU,4540
|
|
31
31
|
unstructured_ingest/embed/openai.py,sha256=TMEOPVfm_OSs4tb3Ymd6q5J49R_-YKvO4TOqCHb3bwk,4647
|
|
32
32
|
unstructured_ingest/embed/togetherai.py,sha256=EehrzTRx4sd_P6AG9JkHAGwTG-o93GMaV5ufmJaxKWs,3629
|
|
33
|
-
unstructured_ingest/embed/vertexai.py,sha256=
|
|
33
|
+
unstructured_ingest/embed/vertexai.py,sha256=DphvPhiYdXTMrQxJCd-64vMs4iVdLY_BphHqz3n5HfM,3758
|
|
34
34
|
unstructured_ingest/embed/voyageai.py,sha256=EOrYzaoXOZ6C4fNkMlCgb8KA8rdfgVXN3USMFpnn0Bs,4698
|
|
35
35
|
unstructured_ingest/interfaces/__init__.py,sha256=QIkWqjsq9INTa89gPuXlMlQL4s3y5TqLmPkuVuTyXcs,795
|
|
36
36
|
unstructured_ingest/interfaces/connector.py,sha256=qUFFJ3qgDMenTCZMtVRjq1DIwsVak6pxNjQOH2eVkMw,1623
|
|
@@ -84,7 +84,7 @@ unstructured_ingest/processes/connectors/outlook.py,sha256=zHM5frO7CqQG0-KcTyX49
|
|
|
84
84
|
unstructured_ingest/processes/connectors/pinecone.py,sha256=pSREUNsQqel6q1EFZsFWelg-uZgGubQY5m_6nVnBFKs,15090
|
|
85
85
|
unstructured_ingest/processes/connectors/redisdb.py,sha256=YzvSlfHs83XWsWMaIC3bV5enKfxejMQ9BQ8CtXfnJ5o,6923
|
|
86
86
|
unstructured_ingest/processes/connectors/salesforce.py,sha256=OaKEWCqZrirHqFJ650K5jSPwYlWefPOapas8Y-4D9oc,11661
|
|
87
|
-
unstructured_ingest/processes/connectors/sharepoint.py,sha256=
|
|
87
|
+
unstructured_ingest/processes/connectors/sharepoint.py,sha256=jI-erp4YUfHxPeUTcfHSPEG3w0wjSBYfAnMg1WT6lfw,4996
|
|
88
88
|
unstructured_ingest/processes/connectors/slack.py,sha256=EkFj9PcAu5_gF2xLogikKDADLbJYq-_jvchzYrTdLO4,9224
|
|
89
89
|
unstructured_ingest/processes/connectors/utils.py,sha256=TAd0hb1f291N-q7-TUe6JKSCGkhqDyo7Ij8zmliBZUc,2071
|
|
90
90
|
unstructured_ingest/processes/connectors/vectara.py,sha256=xrC6jkgW8BII4UjdzUelDu122xT484cpfMTK2wl-sko,12292
|
|
@@ -231,8 +231,8 @@ unstructured_ingest/utils/ndjson.py,sha256=nz8VUOPEgAFdhaDOpuveknvCU4x82fVwqE01q
|
|
|
231
231
|
unstructured_ingest/utils/pydantic_models.py,sha256=BT_j15e4rX40wQbt8LUXbqfPhA3rJn1PHTI_G_A_EHY,1720
|
|
232
232
|
unstructured_ingest/utils/string_and_date_utils.py,sha256=oXOI6rxXq-8ncbk7EoJK0WCcTXWj75EzKl8pfQMID3U,2522
|
|
233
233
|
unstructured_ingest/utils/table.py,sha256=WZechczgVFvlodUWFcsnCGvBNh1xRm6hr0VbJTPxKAc,3669
|
|
234
|
-
unstructured_ingest-1.0.
|
|
235
|
-
unstructured_ingest-1.0.
|
|
236
|
-
unstructured_ingest-1.0.
|
|
237
|
-
unstructured_ingest-1.0.
|
|
238
|
-
unstructured_ingest-1.0.
|
|
234
|
+
unstructured_ingest-1.0.28.dist-info/METADATA,sha256=_e-2mJSqWwsdod99-didta-wEjNVIaIua_EkdBU5ZHY,8691
|
|
235
|
+
unstructured_ingest-1.0.28.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
236
|
+
unstructured_ingest-1.0.28.dist-info/entry_points.txt,sha256=gUAAFnjFPnBgThJSEbw0N5ZjxtaKlT1s9e05_arQrNw,70
|
|
237
|
+
unstructured_ingest-1.0.28.dist-info/licenses/LICENSE.md,sha256=SxkKP_62uIAKb9mb1eH7FH4Kn2aYT09fgjKpJt5PyTk,11360
|
|
238
|
+
unstructured_ingest-1.0.28.dist-info/RECORD,,
|
|
File without changes
|
{unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/entry_points.txt
RENAMED
|
File without changes
|
{unstructured_ingest-1.0.27.dist-info → unstructured_ingest-1.0.28.dist-info}/licenses/LICENSE.md
RENAMED
|
File without changes
|