⚠️ This shall be only for compute and NOT access shared.
⚠️ If retries enabled, ensure idempotent implementation.
Return exec_res, which is passed to post().
async post(shared, prep_res, exec_res)
Postprocess and write data back to shared.
Examples: update DB, change states, log results.
Decide the next action by returning a string (action = "default" if None).
Why 3 steps? To enforce the principle of separation of concerns. The data storage and data processing are operated separately.
All steps are optional. E.g., you can only implement prep and post if you just need to process data.
Fault Tolerance & Retries
You can retryexec() if it raises an exception via two parameters when defining the Node:
max_retries (int): Max times to run exec(). The default is 1 (no retry).
wait (int): The time to wait (in seconds) before next retry. By default, wait=0 (no waiting).wait is helpful when you encounter rate-limits or quota errors from your LLM provider and need to back off.
my_node = SummarizeFile(max_retries=3, wait=10)
const myNode = new SummarizeFile({ maxRetries: 3, wait: 10 })
When an exception occurs in exec(), the Node automatically retries until:
It either succeeds, or
The Node has retried max_retries - 1 times already and fails on the last attempt.
You can get the current retry times (0-based) from cur_retry.