We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e50bcd commit 4fbcf89Copy full SHA for 4fbcf89
gptme/config.py
@@ -453,7 +453,7 @@ def get_project_config(workspace: Path | None) -> ProjectConfig | None:
453
local_config_path = project_config_path.parent / "gptme.local.toml"
454
if local_config_path.exists():
455
console.log(
456
- f"Loading local configuration from {path_with_tilde(local_config_path)}"
+ f"Using local configuration from {path_with_tilde(local_config_path)}"
457
)
458
with open(local_config_path) as f:
459
local_config_data = tomlkit.load(f).unwrap()
0 commit comments