diff --git a/examples/agent_framework_integrations/crewai/run.py b/examples/agent_framework_integrations/crewai/run.py index 38f2b0f77e..da14f99e62 100644 --- a/examples/agent_framework_integrations/crewai/run.py +++ b/examples/agent_framework_integrations/crewai/run.py @@ -20,9 +20,9 @@ environment={ "OPENAI_API_KEY": os.getenv("OPENAI_API_KEY"), # Set home directory to a writable location for CrewAI storage - "HOME": "/tmp", + "HOME": "/tmp", # nosec B108 - Docker env var, not insecure file operation # Alternative: override the specific appdirs behavior - "XDG_DATA_HOME": "/tmp/.local/share", + "XDG_DATA_HOME": "/tmp/.local/share", # nosec B108 - Docker env var, not insecure file operation }, ) diff --git a/examples/agent_framework_integrations/haystack/run.py b/examples/agent_framework_integrations/haystack/run.py index 9060079694..7d2231d12d 100644 --- a/examples/agent_framework_integrations/haystack/run.py +++ b/examples/agent_framework_integrations/haystack/run.py @@ -18,7 +18,7 @@ environment={ "OPENAI_API_KEY": os.getenv("OPENAI_API_KEY"), # Set home directory to a writable location for Haystack storage - "HOME": "/tmp", + "HOME": "/tmp", # nosec B108 - Docker env var, not insecure file operation # Override Haystack-specific environment variables "HAYSTACK_CONTENT_TRACING_ENABLED": "false", "HAYSTACK_TELEMETRY_ENABLED": "false",