v0.1.1
v0.1.1 — 2025‑07‑22
This patch release ensures that your .env
file (at the repo root) is properly loaded before any environment checks run in the CLI. If you previously had to manually export your WatsonX or OpenAI keys despite having them in .env
, this update fixes exactly that by:
- Adjusting the
project_root
calculation incli.py
to two levels up. - Calling
load_dotenv(...)
on the correct path before verifying credentials.
No new features — purely a reliability/bugfix release.
Bug fixes
- CLI: fix
.env
loader path (project_root = parents[2]
), soload_dotenv()
actually finds your.env
at the repo root. - Env check: moved pre‑flight variable validation to run after
.env
is loaded, so missing‑var errors only occur if truly unset.
No new features — purely a reliability/bugfix release.