Theom
03/21/2025, 3:24 PMfrom prefect import flow
from prefect.results import get_result_store
@flow(persist_result=True)
def pipeline():
store = get_result_store()
result = store.read("my-key") # Where I know that a file corresponding to this key exists on disk
return result
if __name__ == "__main__":
pipeline()
But I get the following error.Chris White
Theom
03/21/2025, 5:53 PM