You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When run the "gravitino_llamaIndex_demo.ipynb", in the "Define SQLJoinQueryEngine" step, it couldn't execute the generated SQL:
response = query_engine.query( "Tell me about the arts and culture of the city with the highest" " population" )
Querying SQL database: The first choice is more relevant as it mentions 'city_stats' and 'population' which could be used to determine the city with the highest population. The second choice does not provide any specific information that could be used to answer the question.
SQL query: SELECT city_name, population, country
FROM city_stats
ORDER BY population DESC
LIMIT 1;
SQL response: I'm sorry, but there was an error in retrieving the information about the city with the highest population. Can you provide me with the name of the city you are interested in so I can give you more specific information about its arts and culture?
As the generated SQL is correct, the Trino engine is active, so this problem seems from Llamaindex.
The text was updated successfully, but these errors were encountered:
When run the "gravitino_llamaIndex_demo.ipynb", in the "Define SQLJoinQueryEngine" step, it couldn't execute the generated SQL:
response = query_engine.query( "Tell me about the arts and culture of the city with the highest" " population" )
Querying SQL database: The first choice is more relevant as it mentions 'city_stats' and 'population' which could be used to determine the city with the highest population. The second choice does not provide any specific information that could be used to answer the question.
SQL query: SELECT city_name, population, country
FROM city_stats
ORDER BY population DESC
LIMIT 1;
SQL response: I'm sorry, but there was an error in retrieving the information about the city with the highest population. Can you provide me with the name of the city you are interested in so I can give you more specific information about its arts and culture?
As the generated SQL is correct, the Trino engine is active, so this problem seems from Llamaindex.
The text was updated successfully, but these errors were encountered: