Gcs
GCSReader #
Bases: BasePydanticReader
, ResourcesReaderMixin
, FileSystemReaderMixin
A reader for Google Cloud Storage (GCS) files and directories.
This class allows reading files from GCS, listing resources, and retrieving resource information. It supports authentication via service account keys and implements various reader mixins.
Attributes:
Name | Type | Description |
---|---|---|
bucket |
str
|
The name of the GCS bucket. |
key |
Optional[str]
|
The specific file key to read. If None, the entire bucket is parsed. |
prefix |
Optional[str]
|
The prefix to filter by when iterating through the bucket. |
recursive |
bool
|
Whether to recursively search in subdirectories. |
file_extractor |
Optional[Dict[str, Union[str, BaseReader]]]
|
Custom file extractors. |
required_exts |
Optional[List[str]]
|
List of required file extensions. |
filename_as_id |
bool
|
Whether to use the filename as the document ID. |
num_files_limit |
Optional[int]
|
Maximum number of files to read. |
file_metadata |
Optional[Callable[[str], Dict]]
|
Function to extract metadata from filenames. |
service_account_key |
Optional[Dict[str, str]]
|
Service account key as a dictionary. |
service_account_key_json |
Optional[str]
|
Service account key as a JSON string. |
service_account_key_path |
Optional[str]
|
Path to the service account key file. |
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
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 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
|
class_name
classmethod
#
class_name() -> str
Return the name of the class.
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
77 78 79 80 |
|
load_data #
load_data() -> List[Document]
Load data from the specified GCS bucket or file.
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: A list of loaded documents. |
Raises:
Type | Description |
---|---|
Exception
|
If there's an error loading the data. |
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 |
|
list_resources #
list_resources(**kwargs) -> List[str]
List resources in the specified GCS bucket or directory.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
**kwargs
|
Additional arguments to pass to the underlying list_resources method. |
{}
|
Returns:
Type | Description |
---|---|
List[str]
|
List[str]: A list of resource identifiers. |
Raises:
Type | Description |
---|---|
Exception
|
If there's an error listing the resources. |
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 |
|
get_resource_info #
get_resource_info(resource_id: str, **kwargs) -> Dict
Get information about a specific GCS resource.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resource_id
|
str
|
The identifier of the resource. |
required |
**kwargs
|
Additional arguments to pass to the underlying info method. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
Dict |
Dict
|
A dictionary containing resource information. |
Raises:
Type | Description |
---|---|
Exception
|
If there's an error retrieving the resource information. |
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
|
load_resource #
load_resource(resource_id: str, **kwargs) -> List[Document]
Load a specific resource from GCS.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
resource_id
|
str
|
The identifier of the resource to load. |
required |
**kwargs
|
Additional arguments to pass to the underlying load_resource method. |
{}
|
Returns:
Type | Description |
---|---|
List[Document]
|
List[Document]: A list containing the loaded document. |
Raises:
Type | Description |
---|---|
Exception
|
If there's an error loading the resource. |
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
|
read_file_content #
read_file_content(input_file: Path, **kwargs) -> bytes
Read the content of a specific file from GCS.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_file
|
Path
|
The path to the file to read. |
required |
**kwargs
|
Additional arguments to pass to the underlying read_file_content method. |
{}
|
Returns:
Name | Type | Description |
---|---|---|
bytes |
bytes
|
The content of the file. |
Raises:
Type | Description |
---|---|
Exception
|
If there's an error reading the file content. |
Source code in llama-index-integrations/readers/llama-index-readers-gcs/llama_index/readers/gcs/base.py
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 |
|