The official docs explain it quite well. Simply import the quote
function with:
from prefect.utilities.annotations import quote
Then, within your flow use:
def my_flow():
# ...
large_item = task_1()
result = task_2(quote(large_item))
# ...
instead of directly passing large_item
to the next task.