llama-cloud 0.0.17__py3-none-any.whl → 0.1.1__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.
- llama_cloud/__init__.py +8 -36
- llama_cloud/client.py +0 -3
- llama_cloud/resources/__init__.py +2 -10
- llama_cloud/resources/data_sinks/__init__.py +2 -2
- llama_cloud/resources/data_sinks/client.py +8 -8
- llama_cloud/resources/data_sinks/types/__init__.py +1 -2
- llama_cloud/resources/data_sinks/types/data_sink_update_component.py +15 -2
- llama_cloud/resources/data_sources/__init__.py +2 -2
- llama_cloud/resources/data_sources/client.py +6 -6
- llama_cloud/resources/data_sources/types/__init__.py +1 -2
- llama_cloud/resources/data_sources/types/data_source_update_component.py +23 -2
- llama_cloud/resources/extraction/client.py +14 -14
- llama_cloud/resources/files/client.py +10 -10
- llama_cloud/resources/organizations/client.py +2 -2
- llama_cloud/resources/parsing/client.py +100 -60
- llama_cloud/resources/pipelines/__init__.py +0 -4
- llama_cloud/resources/pipelines/client.py +50 -340
- llama_cloud/resources/pipelines/types/__init__.py +1 -7
- llama_cloud/resources/pipelines/types/pipeline_update_embedding_config.py +15 -15
- llama_cloud/resources/pipelines/types/pipeline_update_transform_config.py +1 -24
- llama_cloud/types/__init__.py +9 -29
- llama_cloud/types/azure_open_ai_embedding.py +7 -39
- llama_cloud/types/base_prompt_template.py +3 -14
- llama_cloud/types/bedrock_embedding.py +7 -20
- llama_cloud/types/box_auth_mechanism.py +0 -4
- llama_cloud/types/character_splitter.py +3 -4
- llama_cloud/types/chat_data.py +0 -5
- llama_cloud/types/chat_message.py +1 -6
- llama_cloud/types/cloud_az_storage_blob_data_source.py +7 -18
- llama_cloud/types/cloud_box_data_source.py +6 -16
- llama_cloud/types/cloud_confluence_data_source.py +6 -10
- llama_cloud/types/cloud_document.py +1 -3
- llama_cloud/types/cloud_document_create.py +1 -3
- llama_cloud/types/cloud_google_drive_data_source.py +0 -4
- llama_cloud/types/cloud_jira_data_source.py +4 -6
- llama_cloud/types/cloud_notion_page_data_source.py +2 -6
- llama_cloud/types/cloud_one_drive_data_source.py +2 -6
- llama_cloud/types/cloud_pinecone_vector_store.py +1 -1
- llama_cloud/types/cloud_postgres_vector_store.py +0 -4
- llama_cloud/types/cloud_s_3_data_source.py +4 -12
- llama_cloud/types/cloud_sharepoint_data_source.py +5 -9
- llama_cloud/types/cloud_slack_data_source.py +6 -10
- llama_cloud/types/code_splitter.py +2 -1
- llama_cloud/types/cohere_embedding.py +6 -15
- llama_cloud/types/configurable_data_sink_names.py +0 -12
- llama_cloud/types/configurable_data_source_names.py +0 -4
- llama_cloud/types/configurable_transformation_names.py +0 -32
- llama_cloud/types/configured_transformation_item_component.py +15 -2
- llama_cloud/types/data_sink.py +2 -2
- llama_cloud/types/data_sink_component.py +15 -2
- llama_cloud/types/data_sink_create_component.py +15 -2
- llama_cloud/types/data_source.py +3 -5
- llama_cloud/types/data_source_component.py +23 -2
- llama_cloud/types/data_source_create.py +1 -3
- llama_cloud/types/data_source_create_component.py +23 -2
- llama_cloud/types/eval_dataset.py +2 -2
- llama_cloud/types/eval_dataset_job_record.py +7 -13
- llama_cloud/types/eval_execution_params_override.py +2 -6
- llama_cloud/types/eval_metric.py +17 -0
- llama_cloud/types/eval_question.py +2 -6
- llama_cloud/types/extraction_result.py +5 -3
- llama_cloud/types/extraction_schema.py +3 -5
- llama_cloud/types/file.py +7 -11
- llama_cloud/types/gemini_embedding.py +7 -22
- llama_cloud/types/hugging_face_inference_api_embedding.py +9 -34
- llama_cloud/types/input_message.py +2 -4
- llama_cloud/types/llama_parse_parameters.py +5 -0
- llama_cloud/types/llama_parse_supported_file_extensions.py +0 -4
- llama_cloud/types/llm.py +9 -8
- llama_cloud/types/llm_parameters.py +2 -7
- llama_cloud/types/local_eval.py +8 -10
- llama_cloud/types/local_eval_results.py +1 -1
- llama_cloud/types/managed_ingestion_status_response.py +3 -5
- llama_cloud/types/markdown_element_node_parser.py +4 -5
- llama_cloud/types/markdown_node_parser.py +2 -1
- llama_cloud/types/message_annotation.py +1 -6
- llama_cloud/types/metric_result.py +3 -3
- llama_cloud/types/node_parser.py +2 -1
- llama_cloud/types/node_relationship.py +44 -0
- llama_cloud/types/object_type.py +0 -4
- llama_cloud/types/open_ai_embedding.py +7 -36
- llama_cloud/types/organization.py +2 -2
- llama_cloud/types/page_splitter_node_parser.py +3 -2
- llama_cloud/types/parsing_job_json_result.py +2 -2
- llama_cloud/types/parsing_job_markdown_result.py +1 -1
- llama_cloud/types/parsing_job_text_result.py +1 -1
- llama_cloud/types/partition_names.py +45 -0
- llama_cloud/types/pipeline.py +7 -17
- llama_cloud/types/pipeline_configuration_hashes.py +3 -3
- llama_cloud/types/pipeline_create.py +6 -18
- llama_cloud/types/pipeline_create_embedding_config.py +15 -15
- llama_cloud/types/pipeline_create_transform_config.py +1 -24
- llama_cloud/types/pipeline_data_source.py +5 -11
- llama_cloud/types/pipeline_data_source_component.py +23 -2
- llama_cloud/types/pipeline_data_source_create.py +1 -3
- llama_cloud/types/pipeline_deployment.py +4 -8
- llama_cloud/types/pipeline_embedding_config.py +15 -15
- llama_cloud/types/pipeline_file.py +10 -18
- llama_cloud/types/pipeline_file_create.py +1 -3
- llama_cloud/types/playground_session.py +2 -2
- llama_cloud/types/preset_retrieval_params.py +8 -11
- llama_cloud/types/presigned_url.py +1 -3
- llama_cloud/types/project.py +2 -2
- llama_cloud/types/prompt_mixin_prompts.py +1 -1
- llama_cloud/types/prompt_spec.py +2 -4
- llama_cloud/types/related_node_info.py +0 -4
- llama_cloud/types/retrieval_mode.py +0 -4
- llama_cloud/types/sentence_splitter.py +3 -4
- llama_cloud/types/supported_llm_model_names.py +0 -4
- llama_cloud/types/text_node.py +3 -9
- llama_cloud/types/token_text_splitter.py +2 -1
- llama_cloud/types/transformation_category_names.py +0 -4
- llama_cloud/types/user_organization.py +5 -9
- llama_cloud/types/user_organization_create.py +2 -2
- llama_cloud/types/user_organization_delete.py +2 -2
- llama_cloud/types/vertex_ai_embedding_config.py +2 -2
- llama_cloud/types/{extend_vertex_text_embedding.py → vertex_text_embedding.py} +10 -23
- {llama_cloud-0.0.17.dist-info → llama_cloud-0.1.1.dist-info}/METADATA +1 -1
- llama_cloud-0.1.1.dist-info/RECORD +224 -0
- llama_cloud/resources/auth/__init__.py +0 -2
- llama_cloud/resources/auth/client.py +0 -124
- llama_cloud/resources/data_sinks/types/data_sink_update_component_one.py +0 -23
- llama_cloud/resources/data_sources/types/data_source_update_component_one.py +0 -27
- llama_cloud/types/cloud_chroma_vector_store.py +0 -43
- llama_cloud/types/cloud_weaviate_vector_store.py +0 -41
- llama_cloud/types/configured_transformation_item_component_one.py +0 -35
- llama_cloud/types/custom_claims.py +0 -58
- llama_cloud/types/data_sink_component_one.py +0 -23
- llama_cloud/types/data_sink_create_component_one.py +0 -23
- llama_cloud/types/data_source_component_one.py +0 -27
- llama_cloud/types/data_source_create_component_one.py +0 -27
- llama_cloud/types/pipeline_data_source_component_one.py +0 -27
- llama_cloud/types/user.py +0 -35
- llama_cloud-0.0.17.dist-info/RECORD +0 -235
- {llama_cloud-0.0.17.dist-info → llama_cloud-0.1.1.dist-info}/LICENSE +0 -0
- {llama_cloud-0.0.17.dist-info → llama_cloud-0.1.1.dist-info}/WHEEL +0 -0
llama_cloud/__init__.py
CHANGED
|
@@ -27,7 +27,6 @@ from .types import (
|
|
|
27
27
|
CloudAzStorageBlobDataSource,
|
|
28
28
|
CloudAzureAiSearchVectorStore,
|
|
29
29
|
CloudBoxDataSource,
|
|
30
|
-
CloudChromaVectorStore,
|
|
31
30
|
CloudConfluenceDataSource,
|
|
32
31
|
CloudDocument,
|
|
33
32
|
CloudDocumentCreate,
|
|
@@ -43,7 +42,6 @@ from .types import (
|
|
|
43
42
|
CloudS3DataSource,
|
|
44
43
|
CloudSharepointDataSource,
|
|
45
44
|
CloudSlackDataSource,
|
|
46
|
-
CloudWeaviateVectorStore,
|
|
47
45
|
CodeSplitter,
|
|
48
46
|
CohereEmbedding,
|
|
49
47
|
CohereEmbeddingConfig,
|
|
@@ -53,21 +51,15 @@ from .types import (
|
|
|
53
51
|
ConfigurableTransformationNames,
|
|
54
52
|
ConfiguredTransformationItem,
|
|
55
53
|
ConfiguredTransformationItemComponent,
|
|
56
|
-
ConfiguredTransformationItemComponentOne,
|
|
57
|
-
CustomClaims,
|
|
58
54
|
DataSink,
|
|
59
55
|
DataSinkComponent,
|
|
60
|
-
DataSinkComponentOne,
|
|
61
56
|
DataSinkCreate,
|
|
62
57
|
DataSinkCreateComponent,
|
|
63
|
-
DataSinkCreateComponentOne,
|
|
64
58
|
DataSinkDefinition,
|
|
65
59
|
DataSource,
|
|
66
60
|
DataSourceComponent,
|
|
67
|
-
DataSourceComponentOne,
|
|
68
61
|
DataSourceCreate,
|
|
69
62
|
DataSourceCreateComponent,
|
|
70
|
-
DataSourceCreateComponentOne,
|
|
71
63
|
DataSourceCreateCustomMetadataValue,
|
|
72
64
|
DataSourceCustomMetadataValue,
|
|
73
65
|
DataSourceDefinition,
|
|
@@ -77,10 +69,10 @@ from .types import (
|
|
|
77
69
|
EvalDatasetJobRecord,
|
|
78
70
|
EvalExecutionParams,
|
|
79
71
|
EvalExecutionParamsOverride,
|
|
72
|
+
EvalMetric,
|
|
80
73
|
EvalQuestion,
|
|
81
74
|
EvalQuestionCreate,
|
|
82
75
|
EvalQuestionResult,
|
|
83
|
-
ExtendVertexTextEmbedding,
|
|
84
76
|
ExtractionJob,
|
|
85
77
|
ExtractionResult,
|
|
86
78
|
ExtractionResultDataValue,
|
|
@@ -119,6 +111,7 @@ from .types import (
|
|
|
119
111
|
MetadataFiltersFiltersItem,
|
|
120
112
|
MetricResult,
|
|
121
113
|
NodeParser,
|
|
114
|
+
NodeRelationship,
|
|
122
115
|
NoneChunkingConfig,
|
|
123
116
|
NoneSegmentationConfig,
|
|
124
117
|
ObjectType,
|
|
@@ -137,6 +130,7 @@ from .types import (
|
|
|
137
130
|
ParsingJobMarkdownResult,
|
|
138
131
|
ParsingJobTextResult,
|
|
139
132
|
ParsingUsage,
|
|
133
|
+
PartitionNames,
|
|
140
134
|
Pipeline,
|
|
141
135
|
PipelineConfigurationHashes,
|
|
142
136
|
PipelineCreate,
|
|
@@ -149,11 +143,8 @@ from .types import (
|
|
|
149
143
|
PipelineCreateEmbeddingConfig_OpenaiEmbedding,
|
|
150
144
|
PipelineCreateEmbeddingConfig_VertexaiEmbedding,
|
|
151
145
|
PipelineCreateTransformConfig,
|
|
152
|
-
PipelineCreateTransformConfig_Advanced,
|
|
153
|
-
PipelineCreateTransformConfig_Auto,
|
|
154
146
|
PipelineDataSource,
|
|
155
147
|
PipelineDataSourceComponent,
|
|
156
|
-
PipelineDataSourceComponentOne,
|
|
157
148
|
PipelineDataSourceCreate,
|
|
158
149
|
PipelineDataSourceCustomMetadataValue,
|
|
159
150
|
PipelineDeployment,
|
|
@@ -199,7 +190,6 @@ from .types import (
|
|
|
199
190
|
TokenChunkingConfig,
|
|
200
191
|
TokenTextSplitter,
|
|
201
192
|
TransformationCategoryNames,
|
|
202
|
-
User,
|
|
203
193
|
UserOrganization,
|
|
204
194
|
UserOrganizationCreate,
|
|
205
195
|
UserOrganizationDelete,
|
|
@@ -207,13 +197,12 @@ from .types import (
|
|
|
207
197
|
ValidationErrorLocItem,
|
|
208
198
|
VertexAiEmbeddingConfig,
|
|
209
199
|
VertexEmbeddingMode,
|
|
200
|
+
VertexTextEmbedding,
|
|
210
201
|
)
|
|
211
202
|
from .errors import UnprocessableEntityError
|
|
212
203
|
from .resources import (
|
|
213
204
|
DataSinkUpdateComponent,
|
|
214
|
-
DataSinkUpdateComponentOne,
|
|
215
205
|
DataSourceUpdateComponent,
|
|
216
|
-
DataSourceUpdateComponentOne,
|
|
217
206
|
DataSourceUpdateCustomMetadataValue,
|
|
218
207
|
ExtractionSchemaCreateDataSchemaValue,
|
|
219
208
|
ExtractionSchemaUpdateDataSchemaValue,
|
|
@@ -228,9 +217,6 @@ from .resources import (
|
|
|
228
217
|
PipelineUpdateEmbeddingConfig_OpenaiEmbedding,
|
|
229
218
|
PipelineUpdateEmbeddingConfig_VertexaiEmbedding,
|
|
230
219
|
PipelineUpdateTransformConfig,
|
|
231
|
-
PipelineUpdateTransformConfig_Advanced,
|
|
232
|
-
PipelineUpdateTransformConfig_Auto,
|
|
233
|
-
auth,
|
|
234
220
|
component_definitions,
|
|
235
221
|
data_sinks,
|
|
236
222
|
data_sources,
|
|
@@ -271,7 +257,6 @@ __all__ = [
|
|
|
271
257
|
"CloudAzStorageBlobDataSource",
|
|
272
258
|
"CloudAzureAiSearchVectorStore",
|
|
273
259
|
"CloudBoxDataSource",
|
|
274
|
-
"CloudChromaVectorStore",
|
|
275
260
|
"CloudConfluenceDataSource",
|
|
276
261
|
"CloudDocument",
|
|
277
262
|
"CloudDocumentCreate",
|
|
@@ -287,7 +272,6 @@ __all__ = [
|
|
|
287
272
|
"CloudS3DataSource",
|
|
288
273
|
"CloudSharepointDataSource",
|
|
289
274
|
"CloudSlackDataSource",
|
|
290
|
-
"CloudWeaviateVectorStore",
|
|
291
275
|
"CodeSplitter",
|
|
292
276
|
"CohereEmbedding",
|
|
293
277
|
"CohereEmbeddingConfig",
|
|
@@ -297,28 +281,20 @@ __all__ = [
|
|
|
297
281
|
"ConfigurableTransformationNames",
|
|
298
282
|
"ConfiguredTransformationItem",
|
|
299
283
|
"ConfiguredTransformationItemComponent",
|
|
300
|
-
"ConfiguredTransformationItemComponentOne",
|
|
301
|
-
"CustomClaims",
|
|
302
284
|
"DataSink",
|
|
303
285
|
"DataSinkComponent",
|
|
304
|
-
"DataSinkComponentOne",
|
|
305
286
|
"DataSinkCreate",
|
|
306
287
|
"DataSinkCreateComponent",
|
|
307
|
-
"DataSinkCreateComponentOne",
|
|
308
288
|
"DataSinkDefinition",
|
|
309
289
|
"DataSinkUpdateComponent",
|
|
310
|
-
"DataSinkUpdateComponentOne",
|
|
311
290
|
"DataSource",
|
|
312
291
|
"DataSourceComponent",
|
|
313
|
-
"DataSourceComponentOne",
|
|
314
292
|
"DataSourceCreate",
|
|
315
293
|
"DataSourceCreateComponent",
|
|
316
|
-
"DataSourceCreateComponentOne",
|
|
317
294
|
"DataSourceCreateCustomMetadataValue",
|
|
318
295
|
"DataSourceCustomMetadataValue",
|
|
319
296
|
"DataSourceDefinition",
|
|
320
297
|
"DataSourceUpdateComponent",
|
|
321
|
-
"DataSourceUpdateComponentOne",
|
|
322
298
|
"DataSourceUpdateCustomMetadataValue",
|
|
323
299
|
"ElementSegmentationConfig",
|
|
324
300
|
"EvalDataset",
|
|
@@ -326,10 +302,10 @@ __all__ = [
|
|
|
326
302
|
"EvalDatasetJobRecord",
|
|
327
303
|
"EvalExecutionParams",
|
|
328
304
|
"EvalExecutionParamsOverride",
|
|
305
|
+
"EvalMetric",
|
|
329
306
|
"EvalQuestion",
|
|
330
307
|
"EvalQuestionCreate",
|
|
331
308
|
"EvalQuestionResult",
|
|
332
|
-
"ExtendVertexTextEmbedding",
|
|
333
309
|
"ExtractionJob",
|
|
334
310
|
"ExtractionResult",
|
|
335
311
|
"ExtractionResultDataValue",
|
|
@@ -372,6 +348,7 @@ __all__ = [
|
|
|
372
348
|
"MetadataFiltersFiltersItem",
|
|
373
349
|
"MetricResult",
|
|
374
350
|
"NodeParser",
|
|
351
|
+
"NodeRelationship",
|
|
375
352
|
"NoneChunkingConfig",
|
|
376
353
|
"NoneSegmentationConfig",
|
|
377
354
|
"ObjectType",
|
|
@@ -390,6 +367,7 @@ __all__ = [
|
|
|
390
367
|
"ParsingJobMarkdownResult",
|
|
391
368
|
"ParsingJobTextResult",
|
|
392
369
|
"ParsingUsage",
|
|
370
|
+
"PartitionNames",
|
|
393
371
|
"Pipeline",
|
|
394
372
|
"PipelineConfigurationHashes",
|
|
395
373
|
"PipelineCreate",
|
|
@@ -402,11 +380,8 @@ __all__ = [
|
|
|
402
380
|
"PipelineCreateEmbeddingConfig_OpenaiEmbedding",
|
|
403
381
|
"PipelineCreateEmbeddingConfig_VertexaiEmbedding",
|
|
404
382
|
"PipelineCreateTransformConfig",
|
|
405
|
-
"PipelineCreateTransformConfig_Advanced",
|
|
406
|
-
"PipelineCreateTransformConfig_Auto",
|
|
407
383
|
"PipelineDataSource",
|
|
408
384
|
"PipelineDataSourceComponent",
|
|
409
|
-
"PipelineDataSourceComponentOne",
|
|
410
385
|
"PipelineDataSourceCreate",
|
|
411
386
|
"PipelineDataSourceCustomMetadataValue",
|
|
412
387
|
"PipelineDeployment",
|
|
@@ -438,8 +413,6 @@ __all__ = [
|
|
|
438
413
|
"PipelineUpdateEmbeddingConfig_OpenaiEmbedding",
|
|
439
414
|
"PipelineUpdateEmbeddingConfig_VertexaiEmbedding",
|
|
440
415
|
"PipelineUpdateTransformConfig",
|
|
441
|
-
"PipelineUpdateTransformConfig_Advanced",
|
|
442
|
-
"PipelineUpdateTransformConfig_Auto",
|
|
443
416
|
"PlaygroundSession",
|
|
444
417
|
"Pooling",
|
|
445
418
|
"PresetRetrievalParams",
|
|
@@ -465,7 +438,6 @@ __all__ = [
|
|
|
465
438
|
"TokenTextSplitter",
|
|
466
439
|
"TransformationCategoryNames",
|
|
467
440
|
"UnprocessableEntityError",
|
|
468
|
-
"User",
|
|
469
441
|
"UserOrganization",
|
|
470
442
|
"UserOrganizationCreate",
|
|
471
443
|
"UserOrganizationDelete",
|
|
@@ -473,7 +445,7 @@ __all__ = [
|
|
|
473
445
|
"ValidationErrorLocItem",
|
|
474
446
|
"VertexAiEmbeddingConfig",
|
|
475
447
|
"VertexEmbeddingMode",
|
|
476
|
-
"
|
|
448
|
+
"VertexTextEmbedding",
|
|
477
449
|
"component_definitions",
|
|
478
450
|
"data_sinks",
|
|
479
451
|
"data_sources",
|
llama_cloud/client.py
CHANGED
|
@@ -6,7 +6,6 @@ import httpx
|
|
|
6
6
|
|
|
7
7
|
from .core.client_wrapper import AsyncClientWrapper, SyncClientWrapper
|
|
8
8
|
from .environment import LlamaCloudEnvironment
|
|
9
|
-
from .resources.auth.client import AsyncAuthClient, AuthClient
|
|
10
9
|
from .resources.component_definitions.client import AsyncComponentDefinitionsClient, ComponentDefinitionsClient
|
|
11
10
|
from .resources.data_sinks.client import AsyncDataSinksClient, DataSinksClient
|
|
12
11
|
from .resources.data_sources.client import AsyncDataSourcesClient, DataSourcesClient
|
|
@@ -43,7 +42,6 @@ class LlamaCloud:
|
|
|
43
42
|
self.evals = EvalsClient(client_wrapper=self._client_wrapper)
|
|
44
43
|
self.parsing = ParsingClient(client_wrapper=self._client_wrapper)
|
|
45
44
|
self.component_definitions = ComponentDefinitionsClient(client_wrapper=self._client_wrapper)
|
|
46
|
-
self.auth = AuthClient(client_wrapper=self._client_wrapper)
|
|
47
45
|
self.extraction = ExtractionClient(client_wrapper=self._client_wrapper)
|
|
48
46
|
|
|
49
47
|
|
|
@@ -71,7 +69,6 @@ class AsyncLlamaCloud:
|
|
|
71
69
|
self.evals = AsyncEvalsClient(client_wrapper=self._client_wrapper)
|
|
72
70
|
self.parsing = AsyncParsingClient(client_wrapper=self._client_wrapper)
|
|
73
71
|
self.component_definitions = AsyncComponentDefinitionsClient(client_wrapper=self._client_wrapper)
|
|
74
|
-
self.auth = AsyncAuthClient(client_wrapper=self._client_wrapper)
|
|
75
72
|
self.extraction = AsyncExtractionClient(client_wrapper=self._client_wrapper)
|
|
76
73
|
|
|
77
74
|
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from . import (
|
|
4
|
-
auth,
|
|
5
4
|
component_definitions,
|
|
6
5
|
data_sinks,
|
|
7
6
|
data_sources,
|
|
@@ -13,8 +12,8 @@ from . import (
|
|
|
13
12
|
pipelines,
|
|
14
13
|
projects,
|
|
15
14
|
)
|
|
16
|
-
from .data_sinks import DataSinkUpdateComponent
|
|
17
|
-
from .data_sources import DataSourceUpdateComponent,
|
|
15
|
+
from .data_sinks import DataSinkUpdateComponent
|
|
16
|
+
from .data_sources import DataSourceUpdateComponent, DataSourceUpdateCustomMetadataValue
|
|
18
17
|
from .extraction import ExtractionSchemaCreateDataSchemaValue, ExtractionSchemaUpdateDataSchemaValue
|
|
19
18
|
from .files import FileCreateResourceInfoValue
|
|
20
19
|
from .pipelines import (
|
|
@@ -28,15 +27,11 @@ from .pipelines import (
|
|
|
28
27
|
PipelineUpdateEmbeddingConfig_OpenaiEmbedding,
|
|
29
28
|
PipelineUpdateEmbeddingConfig_VertexaiEmbedding,
|
|
30
29
|
PipelineUpdateTransformConfig,
|
|
31
|
-
PipelineUpdateTransformConfig_Advanced,
|
|
32
|
-
PipelineUpdateTransformConfig_Auto,
|
|
33
30
|
)
|
|
34
31
|
|
|
35
32
|
__all__ = [
|
|
36
33
|
"DataSinkUpdateComponent",
|
|
37
|
-
"DataSinkUpdateComponentOne",
|
|
38
34
|
"DataSourceUpdateComponent",
|
|
39
|
-
"DataSourceUpdateComponentOne",
|
|
40
35
|
"DataSourceUpdateCustomMetadataValue",
|
|
41
36
|
"ExtractionSchemaCreateDataSchemaValue",
|
|
42
37
|
"ExtractionSchemaUpdateDataSchemaValue",
|
|
@@ -51,9 +46,6 @@ __all__ = [
|
|
|
51
46
|
"PipelineUpdateEmbeddingConfig_OpenaiEmbedding",
|
|
52
47
|
"PipelineUpdateEmbeddingConfig_VertexaiEmbedding",
|
|
53
48
|
"PipelineUpdateTransformConfig",
|
|
54
|
-
"PipelineUpdateTransformConfig_Advanced",
|
|
55
|
-
"PipelineUpdateTransformConfig_Auto",
|
|
56
|
-
"auth",
|
|
57
49
|
"component_definitions",
|
|
58
50
|
"data_sinks",
|
|
59
51
|
"data_sources",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from .types import DataSinkUpdateComponent
|
|
3
|
+
from .types import DataSinkUpdateComponent
|
|
4
4
|
|
|
5
|
-
__all__ = ["DataSinkUpdateComponent"
|
|
5
|
+
__all__ = ["DataSinkUpdateComponent"]
|
|
@@ -89,7 +89,7 @@ class DataSinksClient:
|
|
|
89
89
|
client.data_sinks.create_data_sink(
|
|
90
90
|
request=DataSinkCreate(
|
|
91
91
|
name="string",
|
|
92
|
-
sink_type=ConfigurableDataSinkNames.
|
|
92
|
+
sink_type=ConfigurableDataSinkNames.PINECONE,
|
|
93
93
|
),
|
|
94
94
|
)
|
|
95
95
|
"""
|
|
@@ -138,7 +138,7 @@ class DataSinksClient:
|
|
|
138
138
|
client.data_sinks.upsert_data_sink(
|
|
139
139
|
request=DataSinkCreate(
|
|
140
140
|
name="string",
|
|
141
|
-
sink_type=ConfigurableDataSinkNames.
|
|
141
|
+
sink_type=ConfigurableDataSinkNames.PINECONE,
|
|
142
142
|
),
|
|
143
143
|
)
|
|
144
144
|
"""
|
|
@@ -206,7 +206,7 @@ class DataSinksClient:
|
|
|
206
206
|
Parameters:
|
|
207
207
|
- data_sink_id: str.
|
|
208
208
|
|
|
209
|
-
- name: typing.Optional[str].
|
|
209
|
+
- name: typing.Optional[str].
|
|
210
210
|
|
|
211
211
|
- sink_type: ConfigurableDataSinkNames.
|
|
212
212
|
|
|
@@ -220,7 +220,7 @@ class DataSinksClient:
|
|
|
220
220
|
)
|
|
221
221
|
client.data_sinks.update_data_sink(
|
|
222
222
|
data_sink_id="string",
|
|
223
|
-
sink_type=ConfigurableDataSinkNames.
|
|
223
|
+
sink_type=ConfigurableDataSinkNames.PINECONE,
|
|
224
224
|
)
|
|
225
225
|
"""
|
|
226
226
|
_request: typing.Dict[str, typing.Any] = {"sink_type": sink_type}
|
|
@@ -340,7 +340,7 @@ class AsyncDataSinksClient:
|
|
|
340
340
|
await client.data_sinks.create_data_sink(
|
|
341
341
|
request=DataSinkCreate(
|
|
342
342
|
name="string",
|
|
343
|
-
sink_type=ConfigurableDataSinkNames.
|
|
343
|
+
sink_type=ConfigurableDataSinkNames.PINECONE,
|
|
344
344
|
),
|
|
345
345
|
)
|
|
346
346
|
"""
|
|
@@ -389,7 +389,7 @@ class AsyncDataSinksClient:
|
|
|
389
389
|
await client.data_sinks.upsert_data_sink(
|
|
390
390
|
request=DataSinkCreate(
|
|
391
391
|
name="string",
|
|
392
|
-
sink_type=ConfigurableDataSinkNames.
|
|
392
|
+
sink_type=ConfigurableDataSinkNames.PINECONE,
|
|
393
393
|
),
|
|
394
394
|
)
|
|
395
395
|
"""
|
|
@@ -457,7 +457,7 @@ class AsyncDataSinksClient:
|
|
|
457
457
|
Parameters:
|
|
458
458
|
- data_sink_id: str.
|
|
459
459
|
|
|
460
|
-
- name: typing.Optional[str].
|
|
460
|
+
- name: typing.Optional[str].
|
|
461
461
|
|
|
462
462
|
- sink_type: ConfigurableDataSinkNames.
|
|
463
463
|
|
|
@@ -471,7 +471,7 @@ class AsyncDataSinksClient:
|
|
|
471
471
|
)
|
|
472
472
|
await client.data_sinks.update_data_sink(
|
|
473
473
|
data_sink_id="string",
|
|
474
|
-
sink_type=ConfigurableDataSinkNames.
|
|
474
|
+
sink_type=ConfigurableDataSinkNames.PINECONE,
|
|
475
475
|
)
|
|
476
476
|
"""
|
|
477
477
|
_request: typing.Dict[str, typing.Any] = {"sink_type": sink_type}
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from .data_sink_update_component import DataSinkUpdateComponent
|
|
4
|
-
from .data_sink_update_component_one import DataSinkUpdateComponentOne
|
|
5
4
|
|
|
6
|
-
__all__ = ["DataSinkUpdateComponent"
|
|
5
|
+
__all__ = ["DataSinkUpdateComponent"]
|
|
@@ -2,6 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
|
-
from .
|
|
5
|
+
from ....types.cloud_azure_ai_search_vector_store import CloudAzureAiSearchVectorStore
|
|
6
|
+
from ....types.cloud_milvus_vector_store import CloudMilvusVectorStore
|
|
7
|
+
from ....types.cloud_mongo_db_atlas_vector_search import CloudMongoDbAtlasVectorSearch
|
|
8
|
+
from ....types.cloud_pinecone_vector_store import CloudPineconeVectorStore
|
|
9
|
+
from ....types.cloud_postgres_vector_store import CloudPostgresVectorStore
|
|
10
|
+
from ....types.cloud_qdrant_vector_store import CloudQdrantVectorStore
|
|
6
11
|
|
|
7
|
-
DataSinkUpdateComponent = typing.Union[
|
|
12
|
+
DataSinkUpdateComponent = typing.Union[
|
|
13
|
+
typing.Dict[str, typing.Any],
|
|
14
|
+
CloudPineconeVectorStore,
|
|
15
|
+
CloudPostgresVectorStore,
|
|
16
|
+
CloudQdrantVectorStore,
|
|
17
|
+
CloudAzureAiSearchVectorStore,
|
|
18
|
+
CloudMongoDbAtlasVectorSearch,
|
|
19
|
+
CloudMilvusVectorStore,
|
|
20
|
+
]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
|
-
from .types import DataSourceUpdateComponent,
|
|
3
|
+
from .types import DataSourceUpdateComponent, DataSourceUpdateCustomMetadataValue
|
|
4
4
|
|
|
5
|
-
__all__ = ["DataSourceUpdateComponent", "
|
|
5
|
+
__all__ = ["DataSourceUpdateComponent", "DataSourceUpdateCustomMetadataValue"]
|
|
@@ -203,7 +203,7 @@ class DataSourcesClient:
|
|
|
203
203
|
*,
|
|
204
204
|
name: typing.Optional[str] = OMIT,
|
|
205
205
|
source_type: ConfigurableDataSourceNames,
|
|
206
|
-
custom_metadata: typing.Optional[typing.Dict[str, DataSourceUpdateCustomMetadataValue]] = OMIT,
|
|
206
|
+
custom_metadata: typing.Optional[typing.Dict[str, typing.Optional[DataSourceUpdateCustomMetadataValue]]] = OMIT,
|
|
207
207
|
component: typing.Optional[DataSourceUpdateComponent] = OMIT,
|
|
208
208
|
) -> DataSource:
|
|
209
209
|
"""
|
|
@@ -212,11 +212,11 @@ class DataSourcesClient:
|
|
|
212
212
|
Parameters:
|
|
213
213
|
- data_source_id: str.
|
|
214
214
|
|
|
215
|
-
- name: typing.Optional[str].
|
|
215
|
+
- name: typing.Optional[str].
|
|
216
216
|
|
|
217
217
|
- source_type: ConfigurableDataSourceNames.
|
|
218
218
|
|
|
219
|
-
- custom_metadata: typing.Optional[typing.Dict[str, DataSourceUpdateCustomMetadataValue]].
|
|
219
|
+
- custom_metadata: typing.Optional[typing.Dict[str, typing.Optional[DataSourceUpdateCustomMetadataValue]]].
|
|
220
220
|
|
|
221
221
|
- component: typing.Optional[DataSourceUpdateComponent].
|
|
222
222
|
---
|
|
@@ -463,7 +463,7 @@ class AsyncDataSourcesClient:
|
|
|
463
463
|
*,
|
|
464
464
|
name: typing.Optional[str] = OMIT,
|
|
465
465
|
source_type: ConfigurableDataSourceNames,
|
|
466
|
-
custom_metadata: typing.Optional[typing.Dict[str, DataSourceUpdateCustomMetadataValue]] = OMIT,
|
|
466
|
+
custom_metadata: typing.Optional[typing.Dict[str, typing.Optional[DataSourceUpdateCustomMetadataValue]]] = OMIT,
|
|
467
467
|
component: typing.Optional[DataSourceUpdateComponent] = OMIT,
|
|
468
468
|
) -> DataSource:
|
|
469
469
|
"""
|
|
@@ -472,11 +472,11 @@ class AsyncDataSourcesClient:
|
|
|
472
472
|
Parameters:
|
|
473
473
|
- data_source_id: str.
|
|
474
474
|
|
|
475
|
-
- name: typing.Optional[str].
|
|
475
|
+
- name: typing.Optional[str].
|
|
476
476
|
|
|
477
477
|
- source_type: ConfigurableDataSourceNames.
|
|
478
478
|
|
|
479
|
-
- custom_metadata: typing.Optional[typing.Dict[str, DataSourceUpdateCustomMetadataValue]].
|
|
479
|
+
- custom_metadata: typing.Optional[typing.Dict[str, typing.Optional[DataSourceUpdateCustomMetadataValue]]].
|
|
480
480
|
|
|
481
481
|
- component: typing.Optional[DataSourceUpdateComponent].
|
|
482
482
|
---
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# This file was auto-generated by Fern from our API Definition.
|
|
2
2
|
|
|
3
3
|
from .data_source_update_component import DataSourceUpdateComponent
|
|
4
|
-
from .data_source_update_component_one import DataSourceUpdateComponentOne
|
|
5
4
|
from .data_source_update_custom_metadata_value import DataSourceUpdateCustomMetadataValue
|
|
6
5
|
|
|
7
|
-
__all__ = ["DataSourceUpdateComponent", "
|
|
6
|
+
__all__ = ["DataSourceUpdateComponent", "DataSourceUpdateCustomMetadataValue"]
|
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
import typing
|
|
4
4
|
|
|
5
|
-
from .
|
|
5
|
+
from ....types.cloud_az_storage_blob_data_source import CloudAzStorageBlobDataSource
|
|
6
|
+
from ....types.cloud_box_data_source import CloudBoxDataSource
|
|
7
|
+
from ....types.cloud_confluence_data_source import CloudConfluenceDataSource
|
|
8
|
+
from ....types.cloud_google_drive_data_source import CloudGoogleDriveDataSource
|
|
9
|
+
from ....types.cloud_jira_data_source import CloudJiraDataSource
|
|
10
|
+
from ....types.cloud_notion_page_data_source import CloudNotionPageDataSource
|
|
11
|
+
from ....types.cloud_one_drive_data_source import CloudOneDriveDataSource
|
|
12
|
+
from ....types.cloud_s_3_data_source import CloudS3DataSource
|
|
13
|
+
from ....types.cloud_sharepoint_data_source import CloudSharepointDataSource
|
|
14
|
+
from ....types.cloud_slack_data_source import CloudSlackDataSource
|
|
6
15
|
|
|
7
|
-
DataSourceUpdateComponent = typing.Union[
|
|
16
|
+
DataSourceUpdateComponent = typing.Union[
|
|
17
|
+
typing.Dict[str, typing.Any],
|
|
18
|
+
CloudS3DataSource,
|
|
19
|
+
CloudAzStorageBlobDataSource,
|
|
20
|
+
CloudGoogleDriveDataSource,
|
|
21
|
+
CloudOneDriveDataSource,
|
|
22
|
+
CloudSharepointDataSource,
|
|
23
|
+
CloudSlackDataSource,
|
|
24
|
+
CloudNotionPageDataSource,
|
|
25
|
+
CloudConfluenceDataSource,
|
|
26
|
+
CloudJiraDataSource,
|
|
27
|
+
CloudBoxDataSource,
|
|
28
|
+
]
|
|
@@ -66,15 +66,15 @@ class ExtractionClient:
|
|
|
66
66
|
*,
|
|
67
67
|
name: str,
|
|
68
68
|
project_id: typing.Optional[str] = OMIT,
|
|
69
|
-
data_schema: typing.Dict[str, ExtractionSchemaCreateDataSchemaValue],
|
|
69
|
+
data_schema: typing.Dict[str, typing.Optional[ExtractionSchemaCreateDataSchemaValue]],
|
|
70
70
|
) -> ExtractionSchema:
|
|
71
71
|
"""
|
|
72
72
|
Parameters:
|
|
73
73
|
- name: str. The name of the extraction schema
|
|
74
74
|
|
|
75
|
-
- project_id: typing.Optional[str].
|
|
75
|
+
- project_id: typing.Optional[str].
|
|
76
76
|
|
|
77
|
-
- data_schema: typing.Dict[str, ExtractionSchemaCreateDataSchemaValue]. The schema of the data
|
|
77
|
+
- data_schema: typing.Dict[str, typing.Optional[ExtractionSchemaCreateDataSchemaValue]]. The schema of the data
|
|
78
78
|
---
|
|
79
79
|
from llama_cloud.client import LlamaCloud
|
|
80
80
|
|
|
@@ -117,11 +117,11 @@ class ExtractionClient:
|
|
|
117
117
|
) -> ExtractionSchema:
|
|
118
118
|
"""
|
|
119
119
|
Parameters:
|
|
120
|
-
- schema_id: typing.Optional[str].
|
|
120
|
+
- schema_id: typing.Optional[str].
|
|
121
121
|
|
|
122
122
|
- name: str. The name of the extraction schema
|
|
123
123
|
|
|
124
|
-
- project_id: typing.Optional[str].
|
|
124
|
+
- project_id: typing.Optional[str].
|
|
125
125
|
|
|
126
126
|
- file_ids: typing.List[str]. The IDs of the files that the extraction schema contains
|
|
127
127
|
|
|
@@ -195,13 +195,13 @@ class ExtractionClient:
|
|
|
195
195
|
self,
|
|
196
196
|
schema_id: str,
|
|
197
197
|
*,
|
|
198
|
-
data_schema: typing.Optional[typing.Dict[str, ExtractionSchemaUpdateDataSchemaValue]] = OMIT,
|
|
198
|
+
data_schema: typing.Optional[typing.Dict[str, typing.Optional[ExtractionSchemaUpdateDataSchemaValue]]] = OMIT,
|
|
199
199
|
) -> ExtractionSchema:
|
|
200
200
|
"""
|
|
201
201
|
Parameters:
|
|
202
202
|
- schema_id: str.
|
|
203
203
|
|
|
204
|
-
- data_schema: typing.Optional[typing.Dict[str, ExtractionSchemaUpdateDataSchemaValue]].
|
|
204
|
+
- data_schema: typing.Optional[typing.Dict[str, typing.Optional[ExtractionSchemaUpdateDataSchemaValue]]].
|
|
205
205
|
---
|
|
206
206
|
from llama_cloud.client import LlamaCloud
|
|
207
207
|
|
|
@@ -430,15 +430,15 @@ class AsyncExtractionClient:
|
|
|
430
430
|
*,
|
|
431
431
|
name: str,
|
|
432
432
|
project_id: typing.Optional[str] = OMIT,
|
|
433
|
-
data_schema: typing.Dict[str, ExtractionSchemaCreateDataSchemaValue],
|
|
433
|
+
data_schema: typing.Dict[str, typing.Optional[ExtractionSchemaCreateDataSchemaValue]],
|
|
434
434
|
) -> ExtractionSchema:
|
|
435
435
|
"""
|
|
436
436
|
Parameters:
|
|
437
437
|
- name: str. The name of the extraction schema
|
|
438
438
|
|
|
439
|
-
- project_id: typing.Optional[str].
|
|
439
|
+
- project_id: typing.Optional[str].
|
|
440
440
|
|
|
441
|
-
- data_schema: typing.Dict[str, ExtractionSchemaCreateDataSchemaValue]. The schema of the data
|
|
441
|
+
- data_schema: typing.Dict[str, typing.Optional[ExtractionSchemaCreateDataSchemaValue]]. The schema of the data
|
|
442
442
|
---
|
|
443
443
|
from llama_cloud.client import AsyncLlamaCloud
|
|
444
444
|
|
|
@@ -481,11 +481,11 @@ class AsyncExtractionClient:
|
|
|
481
481
|
) -> ExtractionSchema:
|
|
482
482
|
"""
|
|
483
483
|
Parameters:
|
|
484
|
-
- schema_id: typing.Optional[str].
|
|
484
|
+
- schema_id: typing.Optional[str].
|
|
485
485
|
|
|
486
486
|
- name: str. The name of the extraction schema
|
|
487
487
|
|
|
488
|
-
- project_id: typing.Optional[str].
|
|
488
|
+
- project_id: typing.Optional[str].
|
|
489
489
|
|
|
490
490
|
- file_ids: typing.List[str]. The IDs of the files that the extraction schema contains
|
|
491
491
|
|
|
@@ -559,13 +559,13 @@ class AsyncExtractionClient:
|
|
|
559
559
|
self,
|
|
560
560
|
schema_id: str,
|
|
561
561
|
*,
|
|
562
|
-
data_schema: typing.Optional[typing.Dict[str, ExtractionSchemaUpdateDataSchemaValue]] = OMIT,
|
|
562
|
+
data_schema: typing.Optional[typing.Dict[str, typing.Optional[ExtractionSchemaUpdateDataSchemaValue]]] = OMIT,
|
|
563
563
|
) -> ExtractionSchema:
|
|
564
564
|
"""
|
|
565
565
|
Parameters:
|
|
566
566
|
- schema_id: str.
|
|
567
567
|
|
|
568
|
-
- data_schema: typing.Optional[typing.Dict[str, ExtractionSchemaUpdateDataSchemaValue]].
|
|
568
|
+
- data_schema: typing.Optional[typing.Dict[str, typing.Optional[ExtractionSchemaUpdateDataSchemaValue]]].
|
|
569
569
|
---
|
|
570
570
|
from llama_cloud.client import AsyncLlamaCloud
|
|
571
571
|
|
|
@@ -168,7 +168,7 @@ class FilesClient:
|
|
|
168
168
|
name: str,
|
|
169
169
|
file_size: typing.Optional[int] = OMIT,
|
|
170
170
|
last_modified_at: typing.Optional[dt.datetime] = OMIT,
|
|
171
|
-
resource_info: typing.Optional[typing.Dict[str, FileCreateResourceInfoValue]] = OMIT,
|
|
171
|
+
resource_info: typing.Optional[typing.Dict[str, typing.Optional[FileCreateResourceInfoValue]]] = OMIT,
|
|
172
172
|
data_source_id: typing.Optional[str] = OMIT,
|
|
173
173
|
) -> PresignedUrl:
|
|
174
174
|
"""
|
|
@@ -179,13 +179,13 @@ class FilesClient:
|
|
|
179
179
|
|
|
180
180
|
- name: str.
|
|
181
181
|
|
|
182
|
-
- file_size: typing.Optional[int].
|
|
182
|
+
- file_size: typing.Optional[int].
|
|
183
183
|
|
|
184
|
-
- last_modified_at: typing.Optional[dt.datetime].
|
|
184
|
+
- last_modified_at: typing.Optional[dt.datetime].
|
|
185
185
|
|
|
186
|
-
- resource_info: typing.Optional[typing.Dict[str, FileCreateResourceInfoValue]].
|
|
186
|
+
- resource_info: typing.Optional[typing.Dict[str, typing.Optional[FileCreateResourceInfoValue]]].
|
|
187
187
|
|
|
188
|
-
- data_source_id: typing.Optional[str].
|
|
188
|
+
- data_source_id: typing.Optional[str].
|
|
189
189
|
---
|
|
190
190
|
from llama_cloud.client import LlamaCloud
|
|
191
191
|
|
|
@@ -509,7 +509,7 @@ class AsyncFilesClient:
|
|
|
509
509
|
name: str,
|
|
510
510
|
file_size: typing.Optional[int] = OMIT,
|
|
511
511
|
last_modified_at: typing.Optional[dt.datetime] = OMIT,
|
|
512
|
-
resource_info: typing.Optional[typing.Dict[str, FileCreateResourceInfoValue]] = OMIT,
|
|
512
|
+
resource_info: typing.Optional[typing.Dict[str, typing.Optional[FileCreateResourceInfoValue]]] = OMIT,
|
|
513
513
|
data_source_id: typing.Optional[str] = OMIT,
|
|
514
514
|
) -> PresignedUrl:
|
|
515
515
|
"""
|
|
@@ -520,13 +520,13 @@ class AsyncFilesClient:
|
|
|
520
520
|
|
|
521
521
|
- name: str.
|
|
522
522
|
|
|
523
|
-
- file_size: typing.Optional[int].
|
|
523
|
+
- file_size: typing.Optional[int].
|
|
524
524
|
|
|
525
|
-
- last_modified_at: typing.Optional[dt.datetime].
|
|
525
|
+
- last_modified_at: typing.Optional[dt.datetime].
|
|
526
526
|
|
|
527
|
-
- resource_info: typing.Optional[typing.Dict[str, FileCreateResourceInfoValue]].
|
|
527
|
+
- resource_info: typing.Optional[typing.Dict[str, typing.Optional[FileCreateResourceInfoValue]]].
|
|
528
528
|
|
|
529
|
-
- data_source_id: typing.Optional[str].
|
|
529
|
+
- data_source_id: typing.Optional[str].
|
|
530
530
|
---
|
|
531
531
|
from llama_cloud.client import AsyncLlamaCloud
|
|
532
532
|
|
|
@@ -231,7 +231,7 @@ class OrganizationsClient:
|
|
|
231
231
|
Parameters:
|
|
232
232
|
- organization_id: str.
|
|
233
233
|
|
|
234
|
-
- name: typing.Optional[str].
|
|
234
|
+
- name: typing.Optional[str].
|
|
235
235
|
---
|
|
236
236
|
from llama_cloud.client import LlamaCloud
|
|
237
237
|
|
|
@@ -651,7 +651,7 @@ class AsyncOrganizationsClient:
|
|
|
651
651
|
Parameters:
|
|
652
652
|
- organization_id: str.
|
|
653
653
|
|
|
654
|
-
- name: typing.Optional[str].
|
|
654
|
+
- name: typing.Optional[str].
|
|
655
655
|
---
|
|
656
656
|
from llama_cloud.client import AsyncLlamaCloud
|
|
657
657
|
|