We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47a1024 commit c1eea2dCopy full SHA for c1eea2d
tests/unittests/models/test_litellm.py
@@ -979,14 +979,14 @@ async def test_generate_content_async_adds_fallback_user_message(
979
]
980
assert any(
981
message.get("content")
982
- == "Handle the requests as specified in the System Instruction."
+ == "Handle the incoming request according to the provided requirements."
983
for message in user_messages
984
)
985
assert (
986
sum(1 for content in llm_request.contents if content.role == "user") == 1
987
988
assert llm_request.contents[-1].parts[0].text == (
989
- "Handle the requests as specified in the System Instruction."
+ "Handle the incoming request according to the provided requirements."
990
991
992
0 commit comments