We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8f3e03 commit c956d8eCopy full SHA for c956d8e
test/stdlib_basics/test_session.py
@@ -74,8 +74,8 @@ async def test_async_await_with_chat_context(m_session):
74
75
m1 = Message(role="user", content="1")
76
m2 = Message(role="user", content="2")
77
- r1 = await m_session.aact(m1)
78
- r2 = await m_session.aact(m2)
+ r1 = await m_session.aact(m1, strategy=None)
+ r2 = await m_session.aact(m2, strategy=None)
79
80
# This should be the order of these items in the session's context.
81
history = [r2, m2, r1, m1]
0 commit comments