Skip to content

Commit

Permalink
Fixed import errors for experimental JSONalyzeQueryEngine (#17228)
Browse files Browse the repository at this point in the history
  • Loading branch information
varospaxo authored Dec 10, 2024
1 parent 278bde0 commit 9a6f30d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,8 @@
from llama_index.experimental.query_engine.pandas.output_parser import (
PandasInstructionParser,
)
from llama_index.experimental.query_engine.jsonalyze.jsonalyze_query_engine import (
JSONalyzeQueryEngine,
)

__all__ = ["PandasQueryEngine", "PandasInstructionParser"]
__all__ = ["PandasQueryEngine", "PandasInstructionParser", "JSONalyzeQueryEngine"]
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Init file."""

from llama_index.core.query_engine.jsonalyze.jsonalyze_query_engine import (
from llama_index.experimental.query_engine.jsonalyze.jsonalyze_query_engine import (
JSONalyzeQueryEngine,
)

Expand Down
2 changes: 1 addition & 1 deletion llama-index-experimental/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-experimental"
readme = "README.md"
version = "0.5.1"
version = "0.5.2"

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

0 comments on commit 9a6f30d

Please sign in to comment.