Skip to content

Commit 5c58be6

Browse files
authored
remove print config list (#1637)
1 parent 899b250 commit 5c58be6

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

autogen/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.2.13"
1+
__version__ = "0.2.14"

test/oai/test_client_stream.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,6 @@ def test_chat_tools_stream() -> None:
254254
},
255255
},
256256
]
257-
print(f"{config_list=}")
258257
client = OpenAIWrapper(config_list=config_list)
259258
response = client.create(
260259
# the intention is to trigger two tool invocations as a response to a single message
@@ -294,7 +293,8 @@ def test_completion_stream() -> None:
294293

295294

296295
if __name__ == "__main__":
297-
test_aoai_chat_completion_stream()
298-
test_chat_completion_stream()
299-
test_chat_functions_stream()
300-
test_completion_stream()
296+
# test_aoai_chat_completion_stream()
297+
# test_chat_completion_stream()
298+
# test_chat_functions_stream()
299+
# test_completion_stream()
300+
test_chat_tools_stream()

0 commit comments

Comments
 (0)