add lm studio option

This commit is contained in:
2026-04-08 10:17:20 -04:00
parent 08c5757b31
commit c7c4019ecc
6 changed files with 112 additions and 13 deletions
+12
View File
@@ -0,0 +1,12 @@
import pathlib
import yaml
_CONFIG_PATH = pathlib.Path(__file__).parent.parent / "config.yml"
def load_config() -> dict:
with open(_CONFIG_PATH) as f:
return yaml.safe_load(f)
config = load_config()