From 7f523788c2a160d8093510dcf0196e24924def66 Mon Sep 17 00:00:00 2001 From: ZdenekSrotyr Date: Thu, 9 Apr 2026 16:31:56 +0200 Subject: [PATCH] fix: correct YAML path for instance name and subtitle get_instance_name and get_instance_subtitle now look up the nested instance.name and instance.subtitle keys to match the YAML structure. --- app/instance_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/instance_config.py b/app/instance_config.py index 97f944f..eb4202f 100644 --- a/app/instance_config.py +++ b/app/instance_config.py @@ -46,11 +46,11 @@ def get_data_source_type() -> str: def get_instance_name() -> str: - return get_value("instance_name", default="AI Data Analyst") + return get_value("instance", "name", default="AI Data Analyst") def get_instance_subtitle() -> str: - return get_value("instance_subtitle", default="") + return get_value("instance", "subtitle", default="") def get_allowed_domains() -> list: