We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70231e0 commit 6011d1fCopy full SHA for 6011d1f
giskard/llm/client/bedrock.py
@@ -44,7 +44,7 @@ def complete(
44
system_prompts = []
45
for msg in messages:
46
if msg.role.lower() == "system":
47
- system_prompts = system_prompts.append(msg.content)
+ system_prompts.append(msg.content)
48
elif msg.role.lower() == "assistant":
49
input_msg_prompt.append({"role": "assistant", "content": [{"type": "text", "text": msg.content}]})
50
else:
0 commit comments