Skip to main content

Retrieving Run ID

If you need to access the run ID in your code, you can use the get_execution_id utility function. This is useful for logging, tracking, or any other situation where you need to reference the run ID.

To use it, import the get_execution_id utility function as follows:

from abstra.common import get_execution_id

execution_id = get_execution_id()

print(execution_id)