from schema_cache import (
    get_cached_tables,
    get_cached_columns
)

def get_schema_context():

    return {
        "tables": get_cached_tables(),
        "columns": get_cached_columns()
    }