add lm studio option
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user