well. So when a sqldatabase instance is initialized there should be an engine and that's where the open ai input?
https://docs.llamaindex.ai/en/stable/examples/index_structs/struct_indices/SQLIndexDemo.html#define-sql-databasefrom llama_index import SQLDatabase, ServiceContext
from llama_index.llms import OpenAI
llm = OpenAI(temperature=0.1, model="gpt-3.5-turbo")
service_context = ServiceContext.from_defaults(llm=llm)
sql_database = SQLDatabase(~~engine~~ service_context , include_tables=["city_stats"])
Just need to replace engine with service_context, right?