dbt-fal
dbt-fal copied to clipboard
feat(dbt-fal): add fal cloud context
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