@Logan M
The solution you point to i think is better than extracting json file .
I am working on the exmple at the llama_inde x document text to sql
i want to use huggingface, gemini and multiple models other than openai.
but i am stuck at the following section :
py
from llama_index.core.query_engine import NLSQLTableQueryEngine
query_engine = NLSQLTableQueryEngine(
sql_database=sql_database, tables=["city_stats"], llm=llm
)
query_str = "Which city has the highest population?"
response = query_engine.query(query_str)
the problem is it for the embedding part it requries openaiEmbedding, what if i want to use sentence-transformers model!