Skip to content

Commit

Permalink
remove print config list (microsoft#1637)
Browse files Browse the repository at this point in the history
  • Loading branch information
sonichi authored Feb 12, 2024
1 parent 899b250 commit 5c58be6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion autogen/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.13"
__version__ = "0.2.14"
10 changes: 5 additions & 5 deletions test/oai/test_client_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,6 @@ def test_chat_tools_stream() -> None:
},
},
]
print(f"{config_list=}")
client = OpenAIWrapper(config_list=config_list)
response = client.create(
# the intention is to trigger two tool invocations as a response to a single message
Expand Down Expand Up @@ -294,7 +293,8 @@ def test_completion_stream() -> None:


if __name__ == "__main__":
test_aoai_chat_completion_stream()
test_chat_completion_stream()
test_chat_functions_stream()
test_completion_stream()
# test_aoai_chat_completion_stream()
# test_chat_completion_stream()
# test_chat_functions_stream()
# test_completion_stream()
test_chat_tools_stream()

0 comments on commit 5c58be6

Please sign in to comment.