Configuration Reference¶
This page contains the list of all available Airflow configurations for the
apache-airflow-providers-common-ai provider that can be set in the airflow.cfg file or using environment variables.
Note
For more information see Setting Configuration Options.
[common.ai]¶
Options for the apache-airflow-providers-common-ai provider.
durable_cache_path¶
Added in version 0.1.0.
ObjectStorage URI used to persist per-step caches when running
AgentOperator / @task.agent with durable=True. Each task
execution writes a single JSON file under this path containing its
cached model responses and tool results, so that on retry the agent
can replay completed steps instead of re-issuing LLM calls and tool
invocations. The file is deleted on successful task completion.
Required when durable=True is used. Any scheme supported by
airflow.sdk.ObjectStoragePath is accepted (file://, s3://,
gs://, azure://, …).
- Type:
string
- Default:
''- Environment Variable:
AIRFLOW__COMMON_AI__DURABLE_CACHE_PATH- Example:
file:///tmp/airflow_durable_cache