Azure devops
AzureDevopsReader #
Bases: BaseReader
A loader class for Azure DevOps repositories. This class provides methods to authenticate with Azure DevOps, access repositories, and retrieve file content.
Attributes:
Name | Type | Description |
---|---|---|
access_token |
str
|
The personal access token for Azure DevOps. |
organization_name |
str
|
The name of the organization in Azure DevOps. |
project_name |
str
|
The name of the project in Azure DevOps. |
repo |
str
|
The name of the repository in the project. |
organization_url |
str
|
The URL to the organization in Azure DevOps. |
git_client |
The Git client for interacting with Azure DevOps. |
|
repository_id |
The ID of the repository in Azure DevOps. |
Source code in llama-index-integrations/readers/llama-index-readers-azure-devops/llama_index/readers/azure_devops/base.py
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 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 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 |
|
create_git_client #
create_git_client()
Creates and returns a Git client for interacting with Azure DevOps.
Returns:
Type | Description |
---|---|
The Git client object for Azure DevOps. |
Source code in llama-index-integrations/readers/llama-index-readers-azure-devops/llama_index/readers/azure_devops/base.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
get_file_paths #
get_file_paths(folder: str = '/', version_descriptor=None) -> List[Dict]
Retrieves the paths of all files within a given folder in the repository.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
folder
|
str
|
The folder to retrieve file paths from, defaults to root. |
'/'
|
version_descriptor
|
Optional
|
The version descriptor to specify a version or branch. |
None
|
Returns:
Type | Description |
---|---|
List[Dict]
|
A list of paths of the files. |
Source code in llama-index-integrations/readers/llama-index-readers-azure-devops/llama_index/readers/azure_devops/base.py
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 |
|
get_file_content_by_path #
get_file_content_by_path(path: str, version_descriptor=None)
Retrieves the content of a file by its path in the repository.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
path
|
str
|
The path of the file in the repository. |
required |
version_descriptor
|
Optional
|
The version descriptor to specify a version or branch. |
None
|
Returns:
Type | Description |
---|---|
The content of the file as a string. |
Source code in llama-index-integrations/readers/llama-index-readers-azure-devops/llama_index/readers/azure_devops/base.py
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 |
|
load_data #
load_data(folder: Optional[str] = '/', branch: Optional[str] = None)
Loads the documents from a specified folder and branch in the repository.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
folder
|
Optional[str]
|
The folder to load documents from, defaults to root. |
'/'
|
branch
|
Optional[str]
|
The branch to load documents from. |
None
|
Returns:
Type | Description |
---|---|
A list of Document objects representing the loaded documents. |
Source code in llama-index-integrations/readers/llama-index-readers-azure-devops/llama_index/readers/azure_devops/base.py
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 |
|