feat: implemented chord guide customization feature

This commit is contained in:
Xiaohan-Tian
2025-12-17 23:07:21 -08:00
parent 610b81e4cc
commit 5cceec0c01
10 changed files with 696 additions and 8 deletions
+6
View File
@@ -73,6 +73,9 @@ interface AppConfig {
templates: {
custom_instructions: string;
};
chord_guide: {
chord_definition: string;
};
[key: string]: unknown;
}
@@ -228,6 +231,9 @@ export class ConfigManager {
},
templates: {
custom_instructions: ''
},
chord_guide: {
chord_definition: ''
}
};
console.log('Using fallback hardcoded config due to load error');