Skip to content

Commit bf28207

Browse files
authored
[FIX] Move JSONalyzeQueryEngine to experimental (run-llama#17110)
* add new deprecated JSONalyzeQueryEngine deprecation * rename folder * wip * mv jsonalyze to experimental * pants BUILD * more pants BUILD
1 parent 5ede468 commit bf28207

File tree

8 files changed

+57
-2
lines changed

8 files changed

+57
-2
lines changed

llama-index-core/llama_index/core/query_engine/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from llama_index.core.query_engine.graph_query_engine import (
1616
ComposableGraphQueryEngine,
1717
)
18-
from llama_index.core.query_engine.jsonalyze_query_engine import (
18+
from llama_index.core.query_engine.jsonalyze import (
1919
JSONalyzeQueryEngine,
2020
)
2121
from llama_index.core.query_engine.knowledge_graph_query_engine import (
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""Init file."""
2+
3+
from llama_index.core.query_engine.jsonalyze.jsonalyze_query_engine import (
4+
JSONalyzeQueryEngine,
5+
)
6+
7+
__all__ = ["JSONalyzeQueryEngine"]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""JSONalyze Query Engine.
2+
3+
WARNING: This tool executes a SQL prompt generated by the LLM with SQL Lite and
4+
may lead to arbitrary file creation on the machine running this tool.
5+
This tool is not recommended to be used in a production setting, and would
6+
require heavy sandboxing or virtual machines.
7+
8+
DEPRECATED: Use `JSONalyzeQueryEngine` from `llama-index-experimental` instead.
9+
10+
"""
11+
12+
from typing import Any
13+
14+
15+
class JSONalyzeQueryEngine:
16+
"""JSONalyze query engine.
17+
18+
DEPRECATED: Use `JSONalyzeQueryEngine` from `llama-index-experimental` instead.
19+
"""
20+
21+
def __init__(self, *args: Any, **kwargs: Any) -> None:
22+
raise DeprecationWarning(
23+
"JSONalyzeQueryEngine has been moved to `llama-index-experimental`.\n"
24+
"`pip install llama-index-experimental`\n"
25+
"`from llama_index.experimental.query_engine import JSONalyzeQueryEngine`\n"
26+
"Note that the JSONalyzeQueryEngine allows for arbitrary file creation, \n"
27+
"and should be used in a secure environment."
28+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
python_sources()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
"""Init file."""
2+
3+
from llama_index.core.query_engine.jsonalyze.jsonalyze_query_engine import (
4+
JSONalyzeQueryEngine,
5+
)
6+
7+
__all__ = ["JSONalyzeQueryEngine"]

llama-index-core/llama_index/core/query_engine/jsonalyze_query_engine.py llama-index-experimental/llama_index/experimental/query_engine/jsonalyze/jsonalyze_query_engine.py

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
"""JSONalyze Query Engine.
2+
3+
WARNING: This tool executes a SQL prompt generated by the LLM with SQL Lite and
4+
may lead to arbitrary file creation on the machine running this tool.
5+
This tool is not recommended to be used in a production setting, and would
6+
require heavy sandboxing or virtual machines.
7+
8+
DEPRECATED: Use `JSONalyzeQueryEngine` from `llama-index-experimental` instead.
9+
10+
"""
11+
112
import asyncio
213
import json
314
import logging

llama-index-experimental/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ exclude = ["**/BUILD"]
2525
license = "MIT"
2626
name = "llama-index-experimental"
2727
readme = "README.md"
28-
version = "0.5.0"
28+
version = "0.5.1"
2929

3030
[tool.poetry.dependencies]
3131
python = ">=3.10,<4.0"

0 commit comments

Comments
 (0)