Box
BoxReaderAIExtract #
Bases: BoxReaderBase
A reader class for loading data from Box files using Box AI Extract.
This class inherits from the BaseReader
class and specializes in
processing data from Box files using Box AI Extract. It utilizes the
provided BoxClient object to interact with the Box API and extracts
data based on a specified AI prompt.
Attributes:
Name | Type | Description |
---|---|---|
_box_client |
BoxClient
|
An authenticated Box client object used for interacting with the Box API. |
Source code in llama-index-integrations/readers/llama-index-readers-box/llama_index/readers/box/BoxReaderAIExtraction/base.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
load_data #
load_data(ai_prompt: str, file_ids: Optional[List[str]] = None, folder_id: Optional[str] = None, is_recursive: bool = False) -> List[Document]
Extracts data from Box files using Box AI and creates Document objects.
This method utilizes the Box AI Extract functionality to extract data based on the provided AI prompt from the specified Box files. It then creates Document objects containing the extracted data along with file metadata.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
ai_prompt
|
str
|
The AI prompt that specifies what data to extract from the files. |
required |
file_ids
|
Optional[List[str]]
|
A list of Box file IDs to extract data from. If provided, folder_id is ignored. Defaults to None. |
None
|
folder_id
|
Optional[str]
|
The ID of the Box folder to extract data from. If provided, along with is_recursive set to True, retrieves data from sub-folders as well. Defaults to None. |
None
|
is_recursive
|
bool
|
If True and folder_id is provided, extracts data from sub-folders within the specified folder. Defaults to False. |
False
|
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: A list of Document objects containing the extracted data and file metadata. |
Source code in llama-index-integrations/readers/llama-index-readers-box/llama_index/readers/box/BoxReaderAIExtraction/base.py
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 |
|
load_resource #
load_resource(box_file_id: str, ai_prompt: str) -> List[Document]
Load data from a specific resource.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resource
|
str
|
The resource identifier. |
required |
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: A list of documents loaded from the resource. |
Source code in llama-index-integrations/readers/llama-index-readers-box/llama_index/readers/box/BoxReaderAIExtraction/base.py
113 114 115 116 117 118 119 120 121 122 123 |
|