You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-9
Original file line number
Diff line number
Diff line change
@@ -1402,7 +1402,7 @@ output:
1402
1402
```yaml
1403
1403
arguments:
1404
1404
query: string # The search query string
1405
-
load_max_docs: integer # Maximum number of documents to load (default: 2)
1405
+
load_max_docs: integer # (Optional) Maximum number of documents to load. Default is 2.
1406
1406
1407
1407
output:
1408
1408
documents: list # The documents returned from the Wikipedia search
@@ -1443,10 +1443,13 @@ output:
1443
1443
```yaml
1444
1444
setup:
1445
1445
llamaparse_api_key: string # The API key for Llama Parse
1446
+
params: dict # (Optional) Additional parameters for the Llama Parse integration
1446
1447
1447
1448
arguments:
1448
-
file: string # The base64 encoded file to parse
1449
-
filename: string # The filename of the file
1449
+
file: string | Array<string> # The base64 encoded file to parse or an array of URLs to load.
1450
+
filename: string # (Optional). The filename of the file. Default is a random UUID. Only used if file is a base64 encoded string.
1451
+
params: dict # (Optional) Additional parameters for the Llama Parse integration. Overrides the setup parameters.
1452
+
base64: boolean # Whether the input file is base64 encoded. Default is false.
1450
1453
1451
1454
output:
1452
1455
documents: list # The parsed data from the document
@@ -1468,20 +1471,21 @@ setup:
1468
1471
cloudinary_cloud_name: string # Your Cloudinary cloud name
1469
1472
cloudinary_api_key: string # Your Cloudinary API key
1470
1473
cloudinary_api_secret: string # Your Cloudinary API secret
1474
+
params: dict # (Optional) Additional parameters for the Cloudinary integration
1471
1475
1472
1476
arguments:
1473
1477
file: string # The URL of the file upload. Only available for media_upload method.
1474
-
upload_params: dict # Additional parameters for the upload. Only available for media_upload method.
1475
-
public_id: string # The public ID for the file. For media_edit method it is MANDATORY. For media_upload method it is optional.
1476
-
transformation: list[dict] # The transformations to apply to the file
1477
-
return_base64: boolean # Whether to return the file in base64 encoding
1478
+
upload_params: dict # (Optional) Additional parameters for the upload. Only available for media_upload method.
1479
+
public_id: string # (Optional) The public ID for the file. For media_edit method it is MANDATORY. For media_upload method it is optional. Default is a random UUID.
1480
+
transformation: list[dict] # The transformations to apply to the file. Only available for media_edit method.
1481
+
return_base64: boolean # Whether to return the file in base64 encoding. Default is false.
1478
1482
1479
1483
output:
1480
1484
url: string # The URL of the uploaded file. Only available for media_upload method.
1481
1485
meta_data: dict # Additional metadata from the upload response. Only available for media_upload method.
1482
1486
public_id: string # The public ID of the uploaded file. Only available for media_upload method.
1483
-
transformed_url: string # The transformed URL. Only available for media_edit method.
1484
-
base64: string # The base64 encoded file. Only available for media_edit method.
1487
+
transformed_url: string # (Optional) The transformed URL. Only available for media_edit method.
1488
+
base64: string # (Optional) The base64 encoded file if return_base64 is true.
0 commit comments