Skip to content

Commit

Permalink
Fix: Properly add documents from Gitlab Repo (#17392)
Browse files Browse the repository at this point in the history
  • Loading branch information
hashemian authored Dec 30, 2024
1 parent 0aa4124 commit 32c7485
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,7 @@ def load_data(

for item in repo_items:
if item["type"] == "blob":
document = self._load_single_file(item["path"], ref)

documents.append(document)
documents.append(self._load_single_file(item["path"], ref))

return documents

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ maintainers = ["jiachengzhang1"]
name = "llama-index-readers-gitlab"
packages = [{include = "llama_index/"}]
readme = "README.md"
version = "0.3.0"
version = "0.3.1"

[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Expand Down

0 comments on commit 32c7485

Please sign in to comment.