qatch-demo / test_get_db_schema_with_entries.py
simone-papicchio's picture
feat: add TQA prompt and db_schema with INSERT INTO
2321bd0
raw
history blame contribute delete
316 Bytes
from utils_get_db_tables_info import utils_extract_db_schema_as_string
def main():
db = utils_extract_db_schema_as_string(
db_id='',
base_path='mytable_7.sqlite',
normalize=True,
sql=None,
get_insert_into=True
)
print(db)
if __name__ == '__main__':
main()