Skip to content
Snippets Groups Projects
Unverified Commit 3eaf3fa0 authored by Logan's avatar Logan Committed by GitHub
Browse files

fix import error in CLI (#11544)

parent 0e39c369
No related branches found
No related tags found
No related merge requests found
...@@ -4,10 +4,10 @@ from typing import Any, Optional ...@@ -4,10 +4,10 @@ from typing import Any, Optional
from llama_index.cli.rag import RagCLI, default_ragcli_persist_dir from llama_index.cli.rag import RagCLI, default_ragcli_persist_dir
from llama_index.cli.upgrade import upgrade_dir, upgrade_file from llama_index.cli.upgrade import upgrade_dir, upgrade_file
from llama_index.core.ingestion import IngestionCache, IngestionPipeline from llama_index.core.ingestion import IngestionCache, IngestionPipeline
from llama_index.core.download.module import LLAMA_HUB_URL
from llama_index.core.llama_dataset.download import ( from llama_index.core.llama_dataset.download import (
LLAMA_DATASETS_LFS_URL, LLAMA_DATASETS_LFS_URL,
LLAMA_DATASETS_SOURCE_FILES_GITHUB_TREE_URL, LLAMA_DATASETS_SOURCE_FILES_GITHUB_TREE_URL,
LLAMA_HUB_URL,
download_llama_dataset, download_llama_dataset,
) )
from llama_index.core.llama_pack.download import ( from llama_index.core.llama_pack.download import (
......
...@@ -32,7 +32,7 @@ maintainers = [ ...@@ -32,7 +32,7 @@ maintainers = [
name = "llama-index-cli" name = "llama-index-cli"
packages = [{include = "llama_index/"}] packages = [{include = "llama_index/"}]
readme = "README.md" readme = "README.md"
version = "0.1.6" version = "0.1.7"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8.1,<4.0" python = ">=3.8.1,<4.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment