Skip to content

Commit 6011d1f

Browse files
committed
Fixed issue
1 parent 70231e0 commit 6011d1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

giskard/llm/client/bedrock.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def complete(
4444
system_prompts = []
4545
for msg in messages:
4646
if msg.role.lower() == "system":
47-
system_prompts = system_prompts.append(msg.content)
47+
system_prompts.append(msg.content)
4848
elif msg.role.lower() == "assistant":
4949
input_msg_prompt.append({"role": "assistant", "content": [{"type": "text", "text": msg.content}]})
5050
else:

0 commit comments

Comments
 (0)