From 2493723f8be9837b7a59da42b4c5fd9b079cc4f1 Mon Sep 17 00:00:00 2001 From: acano Date: Thu, 12 Mar 2026 16:09:41 +0100 Subject: [PATCH] docs: correct spelling errors in changelog and update project root method name in Settings class --- changelog | 4 ++-- src/config.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/changelog b/changelog index 61f3ec8..3d90407 100644 --- a/changelog +++ b/changelog @@ -8,10 +8,10 @@ All notable changes to the **Brunix Assistance Engine** will be documented in th ### Added - IMPLEMENTED: - - `scripts/pipelines/flows/translate_mbpp.py`: pipeline to generate synthethic dataset from mbpp dataset. + - `scripts/pipelines/flows/translate_mbpp.py`: pipeline to generate synthetic dataset from mbpp dataset. - `scripts/tasks/prompts.py`: module containing prompts for pipelines. - `scripts/tasks/chunk.py`: module containing functions related to chunk management. - - `synthethic_datasets`: folder containing generated synthethic datasets. + - `synthetic_datasets`: folder containing generated synthetic datasets. - `src/config.py`: environment variables configuration file. ### Changed diff --git a/src/config.py b/src/config.py index bec0acd..23c0ddd 100644 --- a/src/config.py +++ b/src/config.py @@ -33,13 +33,13 @@ class Settings(BaseSettings): ) @property - def project_root(self) -> Path: + def proj_root(self) -> Path: return Path(__file__).resolve().parents[1] def _resolve_path(self, path: Optional[str]) -> Optional[Path]: if path is None: return None - return self.project_root / path + return self.proj_root / path @property def data_path(self) -> Optional[Path]: