Kevin Hu commited on
Commit
bc9f8af
·
1 Parent(s): da58b16

fix ci issue (#3245)

Browse files

### What problem does this PR solve?


### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

Files changed (1) hide show
  1. sdk/python/test/t_session.py +1 -1
sdk/python/test/t_session.py CHANGED
@@ -36,7 +36,7 @@ def test_create_conversation_with_success(get_api_key_fixture):
36
  assistant = rag.create_chat("test_create_conversation", dataset_ids=[kb.id])
37
  session = assistant.create_session()
38
  question = "What is AI"
39
- for ans in session.ask(question, stream=True):
40
  pass
41
 
42
  # assert not ans.content.startswith("**ERROR**"), "Please check this error."
 
36
  assistant = rag.create_chat("test_create_conversation", dataset_ids=[kb.id])
37
  session = assistant.create_session()
38
  question = "What is AI"
39
+ for ans in session.ask(question):
40
  pass
41
 
42
  # assert not ans.content.startswith("**ERROR**"), "Please check this error."