File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
examples/agent_framework_integrations Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 2020 environment = {
2121 "OPENAI_API_KEY" : os .getenv ("OPENAI_API_KEY" ),
2222 # Set home directory to a writable location for CrewAI storage
23- "HOME" : "/tmp" ,
23+ "HOME" : "/tmp" , # nosec B108 - Docker env var, not insecure file operation
2424 # Alternative: override the specific appdirs behavior
25- "XDG_DATA_HOME" : "/tmp/.local/share" ,
25+ "XDG_DATA_HOME" : "/tmp/.local/share" , # nosec B108 - Docker env var, not insecure file operation
2626 },
2727)
2828
Original file line number Diff line number Diff line change 1818 environment = {
1919 "OPENAI_API_KEY" : os .getenv ("OPENAI_API_KEY" ),
2020 # Set home directory to a writable location for Haystack storage
21- "HOME" : "/tmp" ,
21+ "HOME" : "/tmp" , # nosec B108 - Docker env var, not insecure file operation
2222 # Override Haystack-specific environment variables
2323 "HAYSTACK_CONTENT_TRACING_ENABLED" : "false" ,
2424 "HAYSTACK_TELEMETRY_ENABLED" : "false" ,
You can’t perform that action at this time.
0 commit comments