get_gitlab_repo
Extract and process code from a GitLab repository branch, converting it into a text format optimized for LLM input while preserving structure and context.
Instructions
Process and return the code from a GitLab repository branch as text
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | master | |
repo_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"default": "master",
"title": "Branch",
"type": "string"
},
"repo_url": {
"title": "Repo Url",
"type": "string"
}
},
"required": [
"repo_url"
],
"title": "get_gitlab_repoArguments",
"type": "object"
}