Skip to content

Commit

Permalink
Fix dataset url (run-llama#9290)
Browse files Browse the repository at this point in the history
fix bug
  • Loading branch information
Disiok authored Dec 4, 2023
1 parent d3dec16 commit f2bf906
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions llama_index/download/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
)

LLAMA_DATASETS_LFS_URL = (
f"https://media.githubusercontent.com/media/run-llama/llama_datasets/main"
f"https://media.githubusercontent.com/media/run-llama/llama-datasets/main"
)

LLAMA_DATASETS_SOURCE_FILES_GITHUB_TREE_URL = (
"https://github.com/run-llama/llama_datasets/tree/main"
"https://github.com/run-llama/llama-datasets/tree/main"
)
LLAMA_RAG_DATASET_FILENAME = "rag_dataset.json"
LLAMA_SOURCE_FILES_PATH = "source_files"
Expand Down Expand Up @@ -167,7 +167,8 @@ def download_llama_dataset(
override_path: bool = False,
show_progress: bool = False,
) -> Any:
"""Download a module from LlamaHub.
"""
Download a module from LlamaHub.
Can be a loader, tool, pack, or more.
Expand Down

0 comments on commit f2bf906

Please sign in to comment.