From 07068927d0bb493896600b30bae78ae2bb347adb Mon Sep 17 00:00:00 2001 From: Maycon Ritzmann Date: Wed, 18 Dec 2024 23:42:56 -0300 Subject: [PATCH] Update README.md (#17318) --- .../readers/llama-index-readers-gitlab/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/llama-index-integrations/readers/llama-index-readers-gitlab/README.md b/llama-index-integrations/readers/llama-index-readers-gitlab/README.md index 92a8684417c4d..66d751fc21518 100644 --- a/llama-index-integrations/readers/llama-index-readers-gitlab/README.md +++ b/llama-index-integrations/readers/llama-index-readers-gitlab/README.md @@ -15,7 +15,7 @@ This reader will read through files in a repo based on branch or commit. ```python import gitlab -from llama_index.readers.github import GitLabRepositoryReader +from llama_index.readers.gitlab import GitLabRepositoryReader gitlab_client = gitlab.Gitlab("https://gitlab.com") @@ -32,7 +32,7 @@ docs = project_repo_reader.load_data(file_path="README.rst", ref="develop") ```python import gitlab -from llama_index.readers.github import GitLabIssuesReader +from llama_index.readers.gitlab import GitLabIssuesReader gitlab_client = gitlab.Gitlab("https://gitlab.com")