We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26f578c commit 573b15bCopy full SHA for 573b15b
taleweave/main.py
@@ -198,7 +198,7 @@ def load_prompt_library(args) -> None:
198
for prompt_file in args.prompts:
199
with open(prompt_file, "r") as f:
200
new_library = PromptLibrary(**load_yaml(f))
201
- logger.info(f"loaded prompt library from {args.prompts}")
+ logger.info(f"loaded prompt library from {prompt_file}")
202
library = get_prompt_library()
203
library.prompts.update(new_library.prompts)
204
0 commit comments