The Python Risk Identification Tool for generative AI (PyRIT) is an open access automation framework to empower security professionals and machine learning engineers to proactively find risks in their generative AI systems.
MIT License
1.91k
stars
366
forks
source link
FEAT Enhance .env loading with optional .env.local overrides #559
Enhances the experience of using .env by supporting an optional .env.local file, which can include local environment-specific details may include memory labels that may differ from the main .env file.
Variables in .env.local will override those in .env if both are present. If .env.local is absent, only .env will be loaded.
Description
Enhances the experience of using
.env
by supporting an optional.env.local
file, which can include local environment-specific details may includememory labels
that may differ from the main.env
file.Variables in
.env.local
will override those in.env
if both are present. If.env.local
is absent, only.env
will be loaded.Tests and Documentation
Tests added