dbt-fal icon indicating copy to clipboard operation
dbt-fal copied to clipboard

feat(dbt-fal): add fal cloud context

Open mederka opened this issue 1 year ago • 0 comments

Provides new cloud context, with store_open method that works like open but in cloud context.

def model(dbt, fal):
    from utils.get_bool import get_bool
    with fal.store_open("test", "w") as f:
        f.write("hello world")

    df = dbt.ref("model_b")

    df["my_bool"] = get_bool()
    return df

mederka avatar Mar 14 '23 16:03 mederka