Skip to content

Commit

Permalink
🔧 Adjust newline in prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
shroominic committed Dec 5, 2023
1 parent 851ce19 commit b0bd167
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/funcchain/chain/prompt.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def create_instruction_prompt(
for var, _ in input_kwargs.items()
if var not in required_f_str_vars
]
added_instruction = "".join(inject_vars)
added_instruction = "\n".join(inject_vars)
instruction = added_instruction + instruction

images = [image_to_base64_url(image) for image in images]
Expand Down

0 comments on commit b0bd167

Please sign in to comment.