Skip to content

Commit

Permalink
fix logging when loading prompt libs
Browse files Browse the repository at this point in the history
  • Loading branch information
ssube committed Jun 4, 2024
1 parent 26f578c commit 573b15b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taleweave/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ def load_prompt_library(args) -> None:
for prompt_file in args.prompts:
with open(prompt_file, "r") as f:
new_library = PromptLibrary(**load_yaml(f))
logger.info(f"loaded prompt library from {args.prompts}")
logger.info(f"loaded prompt library from {prompt_file}")
library = get_prompt_library()
library.prompts.update(new_library.prompts)

Expand Down

0 comments on commit 573b15b

Please sign in to comment.