Skip to content

Commit 6063579

Browse files
committed
Replace DEFAULT_CONFIG_PATH
To make breaking changes, I change the path of the config json path.
1 parent bc3d4f0 commit 6063579

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ygka/utils/ygka_config_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
class YGKAConfigManager:
9-
DEFAULT_CONFIG_PATH = os.path.expanduser('~/.ygka_config.json')
9+
DEFAULT_CONFIG_PATH = os.path.expanduser('~/.ygka_openai_config.json')
1010

1111
def __init__(
1212
self,
@@ -22,7 +22,7 @@ def __init__(
2222
An instance of YGKAConfigManager to use as the configuration.\
2323
If None and load_config is True, loads the configuration from the configuration file.
2424
config_path: Path to the configuration file. \
25-
If None, uses the default path "~/.ygka_config.json".
25+
If None, uses the default path "~/.ygka_openai_config.json".
2626
load_config: If True and config_model is None, loads the configuration from the configuration file.
2727
'''
2828
self.config_path = config_path or YGKAConfigManager.DEFAULT_CONFIG_PATH

0 commit comments

Comments
 (0)