llama-cloud 0.0.8__py3-none-any.whl → 0.0.9__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 llama-cloud might be problematic. Click here for more details.

Files changed (32) hide show
  1. llama_cloud/__init__.py +16 -0
  2. llama_cloud/client.py +3 -0
  3. llama_cloud/resources/__init__.py +13 -1
  4. llama_cloud/resources/data_sinks/client.py +40 -8
  5. llama_cloud/resources/data_sources/client.py +48 -12
  6. llama_cloud/resources/data_sources/types/data_source_update_component_one.py +2 -0
  7. llama_cloud/resources/extraction/client.py +4 -20
  8. llama_cloud/resources/organizations/__init__.py +2 -0
  9. llama_cloud/resources/organizations/client.py +786 -0
  10. llama_cloud/resources/pipelines/client.py +166 -10
  11. llama_cloud/resources/projects/client.py +28 -8
  12. llama_cloud/types/__init__.py +14 -0
  13. llama_cloud/types/chat_params.py +38 -0
  14. llama_cloud/types/cloud_jira_data_source.py +43 -0
  15. llama_cloud/types/cloud_sharepoint_data_source.py +1 -0
  16. llama_cloud/types/configurable_data_source_names.py +4 -0
  17. llama_cloud/types/data_source_component_one.py +2 -0
  18. llama_cloud/types/data_source_create_component_one.py +2 -0
  19. llama_cloud/types/eval_dataset_job_record.py +1 -0
  20. llama_cloud/types/extraction_schema.py +0 -1
  21. llama_cloud/types/organization.py +38 -0
  22. llama_cloud/types/organization_create.py +35 -0
  23. llama_cloud/types/pipeline_data_source_component_one.py +2 -0
  24. llama_cloud/types/preset_retrieval_params.py +5 -0
  25. llama_cloud/types/project.py +1 -1
  26. llama_cloud/types/retrieval_mode.py +29 -0
  27. llama_cloud/types/user_organization.py +40 -0
  28. llama_cloud/types/user_organization_create.py +36 -0
  29. {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.9.dist-info}/METADATA +2 -1
  30. {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.9.dist-info}/RECORD +32 -23
  31. {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.9.dist-info}/WHEEL +1 -1
  32. {llama_cloud-0.0.8.dist-info → llama_cloud-0.0.9.dist-info}/LICENSE +0 -0
@@ -0,0 +1,43 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic
10
+ if pydantic.__version__.startswith("1."):
11
+ raise ImportError
12
+ import pydantic.v1 as pydantic # type: ignore
13
+ except ImportError:
14
+ import pydantic # type: ignore
15
+
16
+
17
+ class CloudJiraDataSource(pydantic.BaseModel):
18
+ """
19
+ Cloud Jira Data Source integrating JiraReader.
20
+ """
21
+
22
+ email: typing.Optional[str] = pydantic.Field(description="The email address to use for authentication.")
23
+ api_token: typing.Optional[str] = pydantic.Field(
24
+ description="The API/ Access Token used for Basic, PAT and OAuth2 authentication."
25
+ )
26
+ server_url: typing.Optional[str] = pydantic.Field(description="The server url for Jira Cloud.")
27
+ cloud_id: typing.Optional[str] = pydantic.Field(description="The cloud ID, used in case of OAuth2.")
28
+ authentication_mechanism: str = pydantic.Field(description="Type of Authentication for connecting to Jira APIs.")
29
+ query: str = pydantic.Field(description="JQL (Jira Query Language) query to search.")
30
+ class_name: typing.Optional[str]
31
+
32
+ def json(self, **kwargs: typing.Any) -> str:
33
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
34
+ return super().json(**kwargs_with_defaults)
35
+
36
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
37
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
38
+ return super().dict(**kwargs_with_defaults)
39
+
40
+ class Config:
41
+ frozen = True
42
+ smart_union = True
43
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -22,6 +22,7 @@ class CloudSharepointDataSource(pydantic.BaseModel):
22
22
  site_name: str = pydantic.Field(description="The name of the SharePoint site to download from.")
23
23
  folder_path: typing.Optional[str] = pydantic.Field(description="The path of the Sharepoint folder to read from.")
24
24
  folder_id: typing.Optional[str] = pydantic.Field(description="The ID of the Sharepoint folder to read from.")
25
+ drive_name: typing.Optional[str] = pydantic.Field(description="The name of the Sharepoint drive to read from.")
25
26
  client_id: str = pydantic.Field(description="The client ID to use for authentication.")
26
27
  client_secret: str = pydantic.Field(description="The client secret to use for authentication.")
27
28
  tenant_id: str = pydantic.Field(description="The tenant ID to use for authentication.")
@@ -17,6 +17,7 @@ class ConfigurableDataSourceNames(str, enum.Enum):
17
17
  MICROSOFT_SHAREPOINT = "MICROSOFT_SHAREPOINT"
18
18
  SLACK = "SLACK"
19
19
  NOTION_PAGE = "NOTION_PAGE"
20
+ JIRA = "JIRA"
20
21
 
21
22
  def visit(
22
23
  self,
@@ -26,6 +27,7 @@ class ConfigurableDataSourceNames(str, enum.Enum):
26
27
  microsoft_sharepoint: typing.Callable[[], T_Result],
27
28
  slack: typing.Callable[[], T_Result],
28
29
  notion_page: typing.Callable[[], T_Result],
30
+ jira: typing.Callable[[], T_Result],
29
31
  ) -> T_Result:
30
32
  if self is ConfigurableDataSourceNames.S_3:
31
33
  return s_3()
@@ -39,3 +41,5 @@ class ConfigurableDataSourceNames(str, enum.Enum):
39
41
  return slack()
40
42
  if self is ConfigurableDataSourceNames.NOTION_PAGE:
41
43
  return notion_page()
44
+ if self is ConfigurableDataSourceNames.JIRA:
45
+ return jira()
@@ -3,6 +3,7 @@
3
3
  import typing
4
4
 
5
5
  from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
+ from .cloud_jira_data_source import CloudJiraDataSource
6
7
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
7
8
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
8
9
  from .cloud_s_3_data_source import CloudS3DataSource
@@ -16,4 +17,5 @@ DataSourceComponentOne = typing.Union[
16
17
  CloudSharepointDataSource,
17
18
  CloudSlackDataSource,
18
19
  CloudNotionPageDataSource,
20
+ CloudJiraDataSource,
19
21
  ]
@@ -3,6 +3,7 @@
3
3
  import typing
4
4
 
5
5
  from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
+ from .cloud_jira_data_source import CloudJiraDataSource
6
7
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
7
8
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
8
9
  from .cloud_s_3_data_source import CloudS3DataSource
@@ -16,4 +17,5 @@ DataSourceCreateComponentOne = typing.Union[
16
17
  CloudSharepointDataSource,
17
18
  CloudSlackDataSource,
18
19
  CloudNotionPageDataSource,
20
+ CloudJiraDataSource,
19
21
  ]
@@ -38,6 +38,7 @@ class EvalDatasetJobRecord(pydantic.BaseModel):
38
38
  description="The correlation ID for this job. Used for tracking the job across services."
39
39
  )
40
40
  parent_job_execution_id: typing.Optional[str] = pydantic.Field(description="The ID of the parent job execution.")
41
+ user_id: typing.Optional[str] = pydantic.Field(description="The ID of the user that created this job")
41
42
  created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
42
43
  id: typing.Optional[str] = pydantic.Field(description="Unique identifier")
43
44
  status: StatusEnum
@@ -28,7 +28,6 @@ class ExtractionSchema(pydantic.BaseModel):
28
28
  data_schema: typing.Dict[str, ExtractionSchemaDataSchemaValue] = pydantic.Field(
29
29
  description="The schema of the data"
30
30
  )
31
- openai_api_key: str = pydantic.Field(description="The API key for the OpenAI API")
32
31
 
33
32
  def json(self, **kwargs: typing.Any) -> str:
34
33
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -0,0 +1,38 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic
10
+ if pydantic.__version__.startswith("1."):
11
+ raise ImportError
12
+ import pydantic.v1 as pydantic # type: ignore
13
+ except ImportError:
14
+ import pydantic # type: ignore
15
+
16
+
17
+ class Organization(pydantic.BaseModel):
18
+ """
19
+ Schema for an organization.
20
+ """
21
+
22
+ id: str = pydantic.Field(description="Unique identifier")
23
+ created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
24
+ updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
25
+ name: str = pydantic.Field(description="A name for the organization.")
26
+
27
+ def json(self, **kwargs: typing.Any) -> str:
28
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
29
+ return super().json(**kwargs_with_defaults)
30
+
31
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
32
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
33
+ return super().dict(**kwargs_with_defaults)
34
+
35
+ class Config:
36
+ frozen = True
37
+ smart_union = True
38
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,35 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic
10
+ if pydantic.__version__.startswith("1."):
11
+ raise ImportError
12
+ import pydantic.v1 as pydantic # type: ignore
13
+ except ImportError:
14
+ import pydantic # type: ignore
15
+
16
+
17
+ class OrganizationCreate(pydantic.BaseModel):
18
+ """
19
+ Schema for creating an organization.
20
+ """
21
+
22
+ name: str = pydantic.Field(description="A name for the organization.")
23
+
24
+ def json(self, **kwargs: typing.Any) -> str:
25
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
26
+ return super().json(**kwargs_with_defaults)
27
+
28
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
29
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
30
+ return super().dict(**kwargs_with_defaults)
31
+
32
+ class Config:
33
+ frozen = True
34
+ smart_union = True
35
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -3,6 +3,7 @@
3
3
  import typing
4
4
 
5
5
  from .cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
6
+ from .cloud_jira_data_source import CloudJiraDataSource
6
7
  from .cloud_notion_page_data_source import CloudNotionPageDataSource
7
8
  from .cloud_one_drive_data_source import CloudOneDriveDataSource
8
9
  from .cloud_s_3_data_source import CloudS3DataSource
@@ -16,4 +17,5 @@ PipelineDataSourceComponentOne = typing.Union[
16
17
  CloudSharepointDataSource,
17
18
  CloudSlackDataSource,
18
19
  CloudNotionPageDataSource,
20
+ CloudJiraDataSource,
19
21
  ]
@@ -5,6 +5,7 @@ import typing
5
5
 
6
6
  from ..core.datetime_utils import serialize_datetime
7
7
  from .metadata_filters import MetadataFilters
8
+ from .retrieval_mode import RetrievalMode
8
9
 
9
10
  try:
10
11
  import pydantic
@@ -28,6 +29,10 @@ class PresetRetrievalParams(pydantic.BaseModel):
28
29
  description="Alpha value for hybrid retrieval to determine the weights between dense and sparse retrieval. 0 is sparse retrieval and 1 is dense retrieval."
29
30
  )
30
31
  search_filters: typing.Optional[MetadataFilters] = pydantic.Field(description="Search filters for retrieval.")
32
+ files_top_k: typing.Optional[int] = pydantic.Field(
33
+ description="Number of files to retrieve (only for retrieval mode files_via_metadata and files_via_content)."
34
+ )
35
+ retrieval_mode: typing.Optional[RetrievalMode] = pydantic.Field(description="The retrieval mode for the query.")
31
36
 
32
37
  def json(self, **kwargs: typing.Any) -> str:
33
38
  kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
@@ -24,7 +24,7 @@ class Project(pydantic.BaseModel):
24
24
  created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
25
25
  updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
26
26
  ad_hoc_eval_dataset_id: typing.Optional[str]
27
- user_id: str = pydantic.Field(description="The user ID of the project owner.")
27
+ organization_id: str = pydantic.Field(description="The Organization ID the project is under.")
28
28
  is_default: typing.Optional[bool] = pydantic.Field(
29
29
  description="Whether this project is the default project for the user."
30
30
  )
@@ -0,0 +1,29 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import enum
4
+ import typing
5
+
6
+ T_Result = typing.TypeVar("T_Result")
7
+
8
+
9
+ class RetrievalMode(str, enum.Enum):
10
+ """
11
+ An enumeration.
12
+ """
13
+
14
+ CHUNKS = "chunks"
15
+ FILES_VIA_METADATA = "files_via_metadata"
16
+ FILES_VIA_CONTENT = "files_via_content"
17
+
18
+ def visit(
19
+ self,
20
+ chunks: typing.Callable[[], T_Result],
21
+ files_via_metadata: typing.Callable[[], T_Result],
22
+ files_via_content: typing.Callable[[], T_Result],
23
+ ) -> T_Result:
24
+ if self is RetrievalMode.CHUNKS:
25
+ return chunks()
26
+ if self is RetrievalMode.FILES_VIA_METADATA:
27
+ return files_via_metadata()
28
+ if self is RetrievalMode.FILES_VIA_CONTENT:
29
+ return files_via_content()
@@ -0,0 +1,40 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic
10
+ if pydantic.__version__.startswith("1."):
11
+ raise ImportError
12
+ import pydantic.v1 as pydantic # type: ignore
13
+ except ImportError:
14
+ import pydantic # type: ignore
15
+
16
+
17
+ class UserOrganization(pydantic.BaseModel):
18
+ """
19
+ Schema for a user's membership to an organization.
20
+ """
21
+
22
+ id: str = pydantic.Field(description="Unique identifier")
23
+ created_at: typing.Optional[dt.datetime] = pydantic.Field(description="Creation datetime")
24
+ updated_at: typing.Optional[dt.datetime] = pydantic.Field(description="Update datetime")
25
+ email: str = pydantic.Field(description="The user's email address.")
26
+ user_id: str = pydantic.Field(description="The user's ID.")
27
+ organization_id: str = pydantic.Field(description="The organization's ID.")
28
+
29
+ def json(self, **kwargs: typing.Any) -> str:
30
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
31
+ return super().json(**kwargs_with_defaults)
32
+
33
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
34
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
35
+ return super().dict(**kwargs_with_defaults)
36
+
37
+ class Config:
38
+ frozen = True
39
+ smart_union = True
40
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -0,0 +1,36 @@
1
+ # This file was auto-generated by Fern from our API Definition.
2
+
3
+ import datetime as dt
4
+ import typing
5
+
6
+ from ..core.datetime_utils import serialize_datetime
7
+
8
+ try:
9
+ import pydantic
10
+ if pydantic.__version__.startswith("1."):
11
+ raise ImportError
12
+ import pydantic.v1 as pydantic # type: ignore
13
+ except ImportError:
14
+ import pydantic # type: ignore
15
+
16
+
17
+ class UserOrganizationCreate(pydantic.BaseModel):
18
+ """
19
+ Schema for creating a user's membership to an organization.
20
+ """
21
+
22
+ user_id: typing.Optional[str] = pydantic.Field(description="The user's ID.")
23
+ email: typing.Optional[str] = pydantic.Field(description="The user's email address.")
24
+
25
+ def json(self, **kwargs: typing.Any) -> str:
26
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
27
+ return super().json(**kwargs_with_defaults)
28
+
29
+ def dict(self, **kwargs: typing.Any) -> typing.Dict[str, typing.Any]:
30
+ kwargs_with_defaults: typing.Any = {"by_alias": True, "exclude_unset": True, **kwargs}
31
+ return super().dict(**kwargs_with_defaults)
32
+
33
+ class Config:
34
+ frozen = True
35
+ smart_union = True
36
+ json_encoders = {dt.datetime: serialize_datetime}
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: llama-cloud
3
- Version: 0.0.8
3
+ Version: 0.0.9
4
4
  Summary:
5
5
  Author: Logan Markewich
6
6
  Author-email: logan@runllama.ai
@@ -10,6 +10,7 @@ Classifier: Programming Language :: Python :: 3.8
10
10
  Classifier: Programming Language :: Python :: 3.9
11
11
  Classifier: Programming Language :: Python :: 3.10
12
12
  Classifier: Programming Language :: Python :: 3.11
13
+ Classifier: Programming Language :: Python :: 3.12
13
14
  Requires-Dist: httpx (>=0.20.0)
14
15
  Requires-Dist: pydantic (>=1.10)
15
16
  Description-Content-Type: text/markdown
@@ -1,5 +1,5 @@
1
- llama_cloud/__init__.py,sha256=hDey2aiBGSdxqMEmaflvH1bwJnkXOzkQYOMkpwNd2VY,8009
2
- llama_cloud/client.py,sha256=EfAIPxG4agzoFDk4P31oFFvCxpH9L-v1nAkKkkD2lbQ,4032
1
+ llama_cloud/__init__.py,sha256=AhnV443wcFZ7UtAcELE7HGwbozfJVkDo-S566KNivkM,8367
2
+ llama_cloud/client.py,sha256=bhZPiYd1TQSn3PRgHZ66MgMnBneG4Skc9g6UsT0wQnE,4299
3
3
  llama_cloud/core/__init__.py,sha256=QJS3CJ2TYP2E1Tge0CS6Z7r8LTNzJHQVX1hD3558eP0,519
4
4
  llama_cloud/core/api_error.py,sha256=RE8LELok2QCjABadECTvtDp7qejA1VmINCh6TbqPwSE,426
5
5
  llama_cloud/core/client_wrapper.py,sha256=xmj0jCdQ0ySzbSqHUWOkpRRy069y74I_HuXkWltcsVM,1507
@@ -9,62 +9,66 @@ llama_cloud/core/remove_none_from_dict.py,sha256=8m91FC3YuVem0Gm9_sXhJ2tGvP33owJ
9
9
  llama_cloud/environment.py,sha256=q4q-uY5WgcSlzfHwEANOqFQPu0lstqvMnVOsSfifMKo,168
10
10
  llama_cloud/errors/__init__.py,sha256=pbbVUFtB9LCocA1RMWMMF_RKjsy5YkOKX5BAuE49w6g,170
11
11
  llama_cloud/errors/unprocessable_entity_error.py,sha256=FvR7XPlV3Xx5nu8HNlmLhBRdk4so_gCHjYT5PyZe6sM,313
12
- llama_cloud/resources/__init__.py,sha256=TIjVQ0YQiS-J8iJrQyYhSwg9Kl1ASi6ElEIWVjeXylU,1024
12
+ llama_cloud/resources/__init__.py,sha256=DCmiYR81K2DZKpNUZDPG5Tb2DcDNNZf2NbOcoB1_Ndw,1105
13
13
  llama_cloud/resources/component_definitions/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
14
14
  llama_cloud/resources/component_definitions/client.py,sha256=YYfoXNa1qim2OdD5y4N5mvoBZKtrCuXS560mtqH_-1c,7569
15
15
  llama_cloud/resources/data_sinks/__init__.py,sha256=nsMEyxkVilxvQGSdJi0Z0yKZoTaTWewZIGJNoMwNDsw,205
16
- llama_cloud/resources/data_sinks/client.py,sha256=jsXsLcT4FaIV3f0gBb6aEZVyUuvNjdF-CPlujzfvMag,19699
16
+ llama_cloud/resources/data_sinks/client.py,sha256=upViKGrwZfRM-BZqMjfWEaEeI8YxThVgr4P9SCH065E,20431
17
17
  llama_cloud/resources/data_sinks/types/__init__.py,sha256=M9AO57_TUUgjUcGOhxcROql5U7UbJDbEm7aQj3YqU2I,269
18
18
  llama_cloud/resources/data_sinks/types/data_sink_update_component.py,sha256=TjBOpvPvUIyi-NT1Gv1vShMoe-jzDKc8UYaFfo7XOO8,249
19
19
  llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py,sha256=oKhxFbWP2ag1HYWf2xlp-b8b65_3q7EDj_dpvieUb58,761
20
20
  llama_cloud/resources/data_sources/__init__.py,sha256=CCs8ur4fvszPjy0GpTWmMjUAx0WykNgKDKFDNbkYLeM,289
21
- llama_cloud/resources/data_sources/client.py,sha256=uN4gjCbsR3aGxZoE6ouyX2bWEp_AelGX_lOigDF3lHQ,20911
21
+ llama_cloud/resources/data_sources/client.py,sha256=uxM67CtKYSexXeKxuHojlbLR7YkqQueRYIrhSLc6Pqs,21915
22
22
  llama_cloud/resources/data_sources/types/__init__.py,sha256=iOdDXvAM6w80PR62JCscsTOwzDIXHHcG_Ypv18DEdic,410
23
23
  llama_cloud/resources/data_sources/types/data_source_update_component.py,sha256=8MoJgdjYmN5WqntDpMXX34WJsf-Wsn0gYw_0t9SOTTA,257
24
- llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=zm5MLIh5dflvfFWF6_cjACQET26OlWRFZOkTB_1q8Mg,745
24
+ llama_cloud/resources/data_sources/types/data_source_update_component_one.py,sha256=w0YFFPBJaKO_Yi1vQqf6RVlE3mRYNewvu79IAbvLNKY,835
25
25
  llama_cloud/resources/data_sources/types/data_source_update_custom_metadata_value.py,sha256=3aFC-p8MSxjhOu2nFtqk0pixj6RqNqcFnbOYngUdZUk,215
26
26
  llama_cloud/resources/evals/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
27
27
  llama_cloud/resources/evals/client.py,sha256=P0NmQPRu606DZ2U-RKZRgh25BMriWyKGB77X0Dfe4q0,27603
28
28
  llama_cloud/resources/extraction/__init__.py,sha256=Q4-qd3ywXqa_GOSxstVJJccHnJGAfKxz2FYLXYeiyWs,175
29
- llama_cloud/resources/extraction/client.py,sha256=2jRYi3k-J7-zXEoKRsXCvDhSLwwUdmZt9XkrSwlOrMQ,27040
29
+ llama_cloud/resources/extraction/client.py,sha256=5f3gPn1BrqBz80fTiVumiQdO0GjyrIePHCEfnWo1Y80,26258
30
30
  llama_cloud/resources/extraction/types/__init__.py,sha256=GgKhbek1WvvnoXgiB0XeSOAX3W94honf5HzL3gvtAEc,212
31
31
  llama_cloud/resources/extraction/types/extraction_schema_update_data_schema_value.py,sha256=z_4tkLkWnHnd3Xa9uUctk9hG9Mo7GKU4dK4s2pm8qow,217
32
32
  llama_cloud/resources/files/__init__.py,sha256=aZpyTj6KpZvA5XVwmuo1sIlRs7ba98btxVBZ6j5vIsI,155
33
33
  llama_cloud/resources/files/client.py,sha256=pU7ugpqW4dAXJycVg3KxUI82ixiH6vZtcwAaHyPdsDA,22186
34
34
  llama_cloud/resources/files/types/__init__.py,sha256=ZWnnYWuDYZSfUJc7Jv3HyovzijdB--DTK4YB-uPcDsA,181
35
35
  llama_cloud/resources/files/types/file_create_resource_info_value.py,sha256=R7Y-CJf7fnbvIqE3xOI5XOrmPwLbVJLC7zpxMu8Zopk,201
36
+ llama_cloud/resources/organizations/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
37
+ llama_cloud/resources/organizations/client.py,sha256=BCYH4AOanyUCtuGPluw-oaSY6EkdgwAcFK7Yoiq34xE,31120
36
38
  llama_cloud/resources/parsing/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
37
39
  llama_cloud/resources/parsing/client.py,sha256=P-2g7zca-qXhMr5DLCkJqeOyrq3uTNFtV-VBb1bmJ0Q,36528
38
40
  llama_cloud/resources/pipelines/__init__.py,sha256=H7yaFIN62vjuhU3TOKzzuf8qpxZRgw1xVa-eyig-2YU,175
39
- llama_cloud/resources/pipelines/client.py,sha256=Q8RtkYxw1xQUIXr3JHfJVNiAJ0fk2X0yvzvg2Oo6OGE,112690
41
+ llama_cloud/resources/pipelines/client.py,sha256=u6Q-1wSv-botG_KfhGa2YMIlDMkk1eBnQxIsrny7Ys8,118918
40
42
  llama_cloud/resources/pipelines/types/__init__.py,sha256=xuT4OBPLrRfEe-E3UVdJvRjl9jTp7tNBK_YzZBb6Kj8,212
41
43
  llama_cloud/resources/pipelines/types/pipeline_file_update_custom_metadata_value.py,sha256=trI48WLxPcAqV9207Q6-3cj1nl4EGlZpw7En56ZsPgg,217
42
44
  llama_cloud/resources/projects/__init__.py,sha256=FTtvy8EDg9nNNg9WCatVgKTRYV8-_v1roeGPAKoa_pw,65
43
- llama_cloud/resources/projects/client.py,sha256=-ctl7lYcuXBJfdbBoYHWTkAD46BV2k5Vb_KHoUAg6Vg,46734
44
- llama_cloud/types/__init__.py,sha256=3rR8a-FQNzHhek8-FftaTuYucJZwHC4WuWzz6Fu84ko,10885
45
+ llama_cloud/resources/projects/client.py,sha256=nK81HdhGbWY1rh8rSEsKzRuvyvCQ-IkhLHIPDqEqVFU,47754
46
+ llama_cloud/types/__init__.py,sha256=xXgiFxsLWSn3OA1pYh7L1JuIgf0XMVbyh_G4TkjzGVA,11385
45
47
  llama_cloud/types/azure_open_ai_embedding.py,sha256=-9LzRDNcxhRvEshA8SaI9zFMTpHLXJ34iMnpIVk88Cc,3590
46
48
  llama_cloud/types/base.py,sha256=cn_Zn61yLMDCMm1iZTPvKILSRlqRzOqZtSYyYBY5dIE,938
47
49
  llama_cloud/types/base_prompt_template.py,sha256=GO9k4EDVMf3gRQIA4bVfXqgIMKnKTXhi1JlGvhqXDRY,1576
48
50
  llama_cloud/types/bedrock_embedding.py,sha256=RbECq-DxfbizAWpgUN4QIandJ-bGmgFug2EQH6LPHP0,2627
49
51
  llama_cloud/types/chat_message.py,sha256=DNzACxFUJxIHHo74j0e0DSz_1BBgykqfMPekiGCheFo,1168
52
+ llama_cloud/types/chat_params.py,sha256=exsMoH03mMvICJmH86IRu0_h7VSeCiZiccqs5zlYNco,1235
50
53
  llama_cloud/types/cloud_az_storage_blob_data_source.py,sha256=SzwYuN3evb6VxW6uHjPeTZFHXYg_3iq3TS-BK6BLdog,1758
51
54
  llama_cloud/types/cloud_azure_ai_search_vector_store.py,sha256=QaH0JrdGGs4DICaLkvLTvmG4ycyp0OzlC0lpn92JVQo,1389
52
55
  llama_cloud/types/cloud_chroma_vector_store.py,sha256=-PKWkXWRpypeVy6nSbFDDkypdBgHgeqsXtfjGKygjXM,1388
53
56
  llama_cloud/types/cloud_document.py,sha256=VJBsYh0OLThzUYfQQE2DZjaMLoyjxCWda8o_ePfGj5Y,1201
54
57
  llama_cloud/types/cloud_document_create.py,sha256=F_Zy1Au9Ta1D19Zy1DBmnKIyqqE2TUpzuakHSKn0C-M,1224
58
+ llama_cloud/types/cloud_jira_data_source.py,sha256=chvMhR253mgLAslxvCsS7T7UBM97i0XFjjtx6pfv8Ts,1732
55
59
  llama_cloud/types/cloud_notion_page_data_source.py,sha256=XMbp5dbcR3uTwamV8JlXYk_2UteNJUbvH43caVE0A48,1397
56
60
  llama_cloud/types/cloud_one_drive_data_source.py,sha256=anI5y6si0PtrEiN9kTxF0UplDFHr-_yhL373fToUkdg,1686
57
61
  llama_cloud/types/cloud_pinecone_vector_store.py,sha256=UyCFAawIDnmPAmTcWjrFCKatypqc4cC4LpuAUOsyzUc,1647
58
62
  llama_cloud/types/cloud_postgres_vector_store.py,sha256=H2-yD-j7SPGk6G6pt28ZA778d6_jyBsO2QOPFd7-lKY,1364
59
63
  llama_cloud/types/cloud_qdrant_vector_store.py,sha256=F-gjNArzwLWmqgPcC-ZxRqSrhTFZbv5kqmIXmnLPB5o,1718
60
64
  llama_cloud/types/cloud_s_3_data_source.py,sha256=bRrHinGoXt89Q2aMp8VSBYrJ5MNYQCAB0q6esYo89ok,1715
61
- llama_cloud/types/cloud_sharepoint_data_source.py,sha256=ZbPjvvV4sH4sXBSzecmYIoY2sxbkR-WHR5WwgAntF9w,1681
65
+ llama_cloud/types/cloud_sharepoint_data_source.py,sha256=xgsu17Dg7cdAZO9HSwc6ivncAiMmgoSNFGRGnxJk_BM,1797
62
66
  llama_cloud/types/cloud_slack_data_source.py,sha256=nj6atJkUYfHauWDBXol3WcDxPhDqsf3qAl9vKSulKQE,1701
63
67
  llama_cloud/types/cloud_weaviate_vector_store.py,sha256=D9ZKG9kpZyoncNCxD49e3RURYrI5tieZroPcTaJGE20,1309
64
68
  llama_cloud/types/code_splitter.py,sha256=TMfGeunLMJagX3lvxr76nhosD48Reu4CexVzpU_03Rg,1971
65
69
  llama_cloud/types/cohere_embedding.py,sha256=qpF6fMm5z5YGc47RfLUM9XPsHbYNRlhSlrBe-9OotHA,1969
66
70
  llama_cloud/types/configurable_data_sink_names.py,sha256=fBTSuuVsKdxguFI03_aA8CDQxV0NERsse6fiw8Dq7A4,1237
67
- llama_cloud/types/configurable_data_source_names.py,sha256=IEyM2DFRY2zyvGtM8H2iusJ44_GlvuhED_c91sSku2o,1375
71
+ llama_cloud/types/configurable_data_source_names.py,sha256=Wb5pBShaERU0VE_-CH1dNRTTd5vYKMNMhJwwCIHn61k,1517
68
72
  llama_cloud/types/configurable_transformation_definition.py,sha256=LDOhI5IDxlLDWM_p_xwCFM7qq1y-aGA8UxN7dnplDlU,1886
69
73
  llama_cloud/types/configurable_transformation_names.py,sha256=-cF3wGNtTM6RCoOnm9YDBgUGnHHLXw_eyq6GSSB2Tpk,3402
70
74
  llama_cloud/types/configured_transformation_item.py,sha256=9caK5ZOKgGCZc6ynJJIWwpxpScKHOHkZwHFlsBy-Fog,1826
@@ -79,16 +83,16 @@ llama_cloud/types/data_sink_create_component_one.py,sha256=edXXfp3kt8puD0ChIW7wm
79
83
  llama_cloud/types/data_sink_definition.py,sha256=5ve_pq02s8szc34-wWobMe6BAPj_c7e9n9FFsfDqEQ0,1561
80
84
  llama_cloud/types/data_source.py,sha256=H98i0VlmB_eUczmUuhbAVG7uP1wcLLlE2gSKQWLTy7w,1830
81
85
  llama_cloud/types/data_source_component.py,sha256=xx1-6EJUtfr2A6BgkOtFM4w5I_3zSHqO1qnRRHSNcTc,232
82
- llama_cloud/types/data_source_component_one.py,sha256=OZuS-D5VpG2k0FAJIzJ_UzH1wGMPsLrkXM-FW3mTI5g,685
86
+ llama_cloud/types/data_source_component_one.py,sha256=SF9UHt_cXUNM8mDdiSRXz8IVhN3geeRdSNa6Mx9vUl0,766
83
87
  llama_cloud/types/data_source_create.py,sha256=siumw3f5sZCVVDZgYDLpy7YaeYZRMTOPqmFjL6GjyK0,1613
84
88
  llama_cloud/types/data_source_create_component.py,sha256=xY1zUoKBH6LRwka54a1w5zFrB3vUYIiEGhBZv7yi7Oc,257
85
- llama_cloud/types/data_source_create_component_one.py,sha256=-NV8FYHTn0sqtIYN6on84H3_CysD8S0gI4GIXAKFzJM,691
89
+ llama_cloud/types/data_source_create_component_one.py,sha256=4lLWBa6oU3pZk-dFrapPvpaOVhoyE2E283L2hVyvOCM,772
86
90
  llama_cloud/types/data_source_create_custom_metadata_value.py,sha256=ejSsQNbszYQaUWFh9r9kQpHf88qbhuRv1SI9J_MOSC0,215
87
91
  llama_cloud/types/data_source_custom_metadata_value.py,sha256=pTZn5yjZYmuOhsLABFJOKZblZUkRqo1CqLAuP5tKji4,209
88
92
  llama_cloud/types/data_source_definition.py,sha256=HlSlTxzYcQJOSo_2OSroAE8vAr-otDvTNBSEkA54vL8,1575
89
93
  llama_cloud/types/eval_dataset.py,sha256=Uav-YJqAvyzCp1j2XavzzVLV975uki71beIBLkCt8LY,1408
90
94
  llama_cloud/types/eval_dataset_job_params.py,sha256=vcXLJWO581uigNvGAurPDgMeEFtQURWucLF5pemdeS0,1343
91
- llama_cloud/types/eval_dataset_job_record.py,sha256=LWfxxOokpExuGxjhCnF79NvKBJ2x8QNdOMU8Ak1VmEU,2656
95
+ llama_cloud/types/eval_dataset_job_record.py,sha256=mUBpT2CI1IYYxwvC7S3mKu5GhBKXzVR5btDLoGcXqSg,2763
92
96
  llama_cloud/types/eval_execution_params.py,sha256=TkdGGLfBIS2AeeUZtQBqC-Ln7_xPsU44JbN0yOBuP3Q,1382
93
97
  llama_cloud/types/eval_execution_params_override.py,sha256=yhYHQvtk50FW_3oOFpOU-Swuh0MhBTY2-GNsXVWZJNY,1399
94
98
  llama_cloud/types/eval_llm_model_data.py,sha256=H56AfhYsPA3eMKj1418_67tJ-5PsCDW36-6Zyif-f3M,1162
@@ -97,7 +101,7 @@ llama_cloud/types/eval_question_create.py,sha256=oOwxkE5gPj8RAwgr3uuTHfTvLSXmYkk
97
101
  llama_cloud/types/eval_question_result.py,sha256=Y4RFXnA4YJTlzM6_NtLOi0rt6hRZoQbToiVJqm41ArY,2168
98
102
  llama_cloud/types/extraction_result.py,sha256=tjVF9feYcjtbO3kTBPSrXES9ANj6_e_WT6scMCU6Kxc,1629
99
103
  llama_cloud/types/extraction_result_data_value.py,sha256=YwtoAi0U511CVX4L91Nx0udAT4ejV6wn0AfJOyETt-o,199
100
- llama_cloud/types/extraction_schema.py,sha256=Z5x7jNVLWR1uIcY0nYAweEfEVNQ7BPuQ9gNynZgvm1c,1748
104
+ llama_cloud/types/extraction_schema.py,sha256=K4YFodHd9EUksEASgmTi863riVXGlXGs6Ba4KXdOoAo,1661
101
105
  llama_cloud/types/extraction_schema_data_schema_value.py,sha256=AYyfwqWIr6PrJsQKudzGYGmxC6yjUmBjxcUZpQyEc54,211
102
106
  llama_cloud/types/file.py,sha256=VNA2Fe007m1Sox1Wwn7k7-OwfQta6LnWBDjlxCyzFt4,2009
103
107
  llama_cloud/types/file_resource_info_value.py,sha256=g6T6ELeLK9jgcvX6r-EuAl_4JkwnyqdS0RRoabMReSU,195
@@ -128,6 +132,8 @@ llama_cloud/types/metric_result.py,sha256=jLHgHnU3Gj1rPqwYSzBZd2bnF-yGiHJj4Gi6uR
128
132
  llama_cloud/types/node_parser.py,sha256=LlM3qsrLbFlAd4SkhAGJjkEJXk04D0faKhQNXWfLQ00,1364
129
133
  llama_cloud/types/object_type.py,sha256=-7wzQjscpmpUdM8vOIzq1EfAMhY9pS3wIaYIo6GndHQ,736
130
134
  llama_cloud/types/open_ai_embedding.py,sha256=vAiDcIV129M7YT5hI99A2kheN42793m4kEJDu7fUKQg,3217
135
+ llama_cloud/types/organization.py,sha256=6mVWJDaDxrnMHuufnpQEhgWTPZW9bhsjGFtgtf4VyJg,1321
136
+ llama_cloud/types/organization_create.py,sha256=hUXRwArIx_0D_lilpL7z-B0oJJ5yEX8Sbu2xqfH_9so,1086
131
137
  llama_cloud/types/parser_languages.py,sha256=Ps3IlaSt6tyxEI657N3-vZL96r2puk8wsf31cWnO-SI,10840
132
138
  llama_cloud/types/parsing_history_item.py,sha256=_MVzf43t84PbmjOzsMLZ_NBoyiisigLWz-fr0ZxU63g,1183
133
139
  llama_cloud/types/parsing_job.py,sha256=Kay6QocdUSdg3ShMKD8jEuLdtAdZbmaiPf4LTml4Wxc,1016
@@ -139,7 +145,7 @@ llama_cloud/types/pipeline.py,sha256=BMJh_QfmaqHgZsfiabu3QpNmfRDPXYqiS0Cp_632UOM
139
145
  llama_cloud/types/pipeline_create.py,sha256=_8qO8PVbD6zHW4xsYEHD4TQ-LhD5YE0iWK2x8BIALs0,2833
140
146
  llama_cloud/types/pipeline_data_source.py,sha256=A3AlRzTD7zr1y-u5O5LFESqIupbbG-fqUndQgeYj77w,2062
141
147
  llama_cloud/types/pipeline_data_source_component.py,sha256=Pk_K0Gv7xSWe5BKCdxz82EFd6AQDvZGN-6t3zg9h8NY,265
142
- llama_cloud/types/pipeline_data_source_component_one.py,sha256=psL30uQqO8oldw1j84V5knGZ6pZ1yfcezDBkC0y37uw,693
148
+ llama_cloud/types/pipeline_data_source_component_one.py,sha256=W8LWTkLGrcIvPniKJAd9ASwu73SxRzpZUn9NOHqKhZc,774
143
149
  llama_cloud/types/pipeline_data_source_create.py,sha256=dAxf2mHQTegDbev1MJnEpFEpOpgRhj2sCnnKtTit8tQ,1136
144
150
  llama_cloud/types/pipeline_data_source_custom_metadata_value.py,sha256=8n3r60sxMx4_udW0yzJZxzyWeK6L3cc2-jLGZFW4EDs,217
145
151
  llama_cloud/types/pipeline_deployment.py,sha256=3sWAIdeov3CYFZMCAWwCR46ShHA6XAzSqmc18qryHzM,1669
@@ -150,14 +156,15 @@ llama_cloud/types/pipeline_file_custom_metadata_value.py,sha256=ClFphYDNlHxeyLF5
150
156
  llama_cloud/types/pipeline_file_resource_info_value.py,sha256=s3uFGQNwlUEr-X4TJZkW_kMBvX3h1sXRJoYlJRvHSDc,209
151
157
  llama_cloud/types/pipeline_type.py,sha256=tTqrhxHP5xd7W2dQGD0e5FOv886nwJssyaVlXpWrtRo,551
152
158
  llama_cloud/types/pooling.py,sha256=5Fr6c8rx9SDWwWzEvD78suob2d79ktodUtLUAUHMbP8,651
153
- llama_cloud/types/preset_retrieval_params.py,sha256=y63ynv_SUYSq2vfYHNvw7LhiUtuVkvRDVmu1Xn8RY90,1907
159
+ llama_cloud/types/preset_retrieval_params.py,sha256=Tixn6xkbAIvRyNBZk8qquHeyR_PhsjuO9w_uipNKsgw,2246
154
160
  llama_cloud/types/presigned_url.py,sha256=pUOIs2hFESZCuiqMsnn7pB6dgh_XO6w7vAV4OhKrq94,1345
155
- llama_cloud/types/project.py,sha256=-EWRwtaBs6rPeEVH8T-3eWvM3VrGNCL4zkr3-loMiik,1523
161
+ llama_cloud/types/project.py,sha256=MbaT01ewS3mio4Bd6XY5SS-2dTyRyMqM-g5XG7Ly0YA,1539
156
162
  llama_cloud/types/project_create.py,sha256=GxGmsXGJM-cHrvPFLktEkj9JtNsSdFae7-HPZFB4er0,1014
157
163
  llama_cloud/types/prompt_mixin_prompts.py,sha256=HRJlfFXFDOaGjqkB4prCDuz2fgwXhUi5I5roGykjRmU,1381
158
164
  llama_cloud/types/prompt_spec.py,sha256=dCJOp3Gn5Y7EmC3iDIH4mM_fBtCMCwCPwPRgzyDY-q0,1516
159
165
  llama_cloud/types/pydantic_program_mode.py,sha256=QfvpqR7TqyNuOxo78Sr58VOu7KDSBrHJM4XXBB0F5z0,1202
160
166
  llama_cloud/types/related_node_info.py,sha256=YqdYiBxtj8njp-UiLMaTBqoYKTTCEu0-DBta4ZnFVo4,1241
167
+ llama_cloud/types/retrieval_mode.py,sha256=lVfSVelJCKMK1Da4yx7B9m9y6Rj35SGKTx-3Z2UOAPE,784
161
168
  llama_cloud/types/retrieve_results.py,sha256=ysSEHTHKBmASTZchcfmD42YAAOoB0KJOyqsYokfTAmE,1523
162
169
  llama_cloud/types/sentence_splitter.py,sha256=mkP5vQsXnLhn6iZZN4MrAfVoFdBYhZTIHoA5AewXwZY,2213
163
170
  llama_cloud/types/simple_file_node_parser.py,sha256=C0B0eVB7TOKpmX_lMvUvCRzk4Be3R_gh5eOtQvLOnVY,1676
@@ -169,9 +176,11 @@ llama_cloud/types/text_node_relationships_value.py,sha256=qmXURTk1Xg7ZDzRSSV1uDE
169
176
  llama_cloud/types/text_node_with_score.py,sha256=k-KYWO_mgJBvO6xUfOD5W6v1Ku9E586_HsvDoQbLfuQ,1229
170
177
  llama_cloud/types/token_text_splitter.py,sha256=Mv8xBCvMXyYuQq1KInPe65O0YYCLWxs61pIbkBRfxG0,1883
171
178
  llama_cloud/types/transformation_category_names.py,sha256=0xjYe-mDW9OKbTGqL5fSbTvqsfrG4LDu_stW_ubVLl4,582
179
+ llama_cloud/types/user_organization.py,sha256=UGqRXntGU_RtzgpKg2HPeVtJkzPYmDl3g3nJGgRuAqE,1490
180
+ llama_cloud/types/user_organization_create.py,sha256=YESlfcI64710OFdQzgGD4a7aItgBwcIKdM1xFPs1Szw,1209
172
181
  llama_cloud/types/validation_error.py,sha256=yZDLtjUHDY5w82Ra6CW0H9sLAr18R0RY1UNgJKR72DQ,1084
173
182
  llama_cloud/types/validation_error_loc_item.py,sha256=LAtjCHIllWRBFXvAZ5QZpp7CPXjdtN9EB7HrLVo6EP0,128
174
- llama_cloud-0.0.8.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
175
- llama_cloud-0.0.8.dist-info/METADATA,sha256=BtpZ_I8d1AbOq5hcNUoP6RON2xhJml3l3JMaO24NSxE,699
176
- llama_cloud-0.0.8.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
177
- llama_cloud-0.0.8.dist-info/RECORD,,
183
+ llama_cloud-0.0.9.dist-info/LICENSE,sha256=_iNqtPcw1Ue7dZKwOwgPtbegMUkWVy15hC7bffAdNmY,1067
184
+ llama_cloud-0.0.9.dist-info/METADATA,sha256=LwNhPkm4U7bGpoph3cG_ztiWcjFXsUpxU7cCYHZAz7M,750
185
+ llama_cloud-0.0.9.dist-info/WHEEL,sha256=FMvqSimYX_P7y0a7UY-_Mc83r5zkBZsCYPm7Lr0Bsq4,88
186
+ llama_cloud-0.0.9.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.7.0
2
+ Generator: poetry-core 1.8.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any