remove print config list (#1637)

This commit is contained in:
Chi Wang
2024-02-12 10:26:15 -08:00
committed by GitHub
parent 899b250c08
commit 5c58be65f4
2 changed files with 6 additions and 6 deletions

View File

@@ -1 +1 @@
__version__ = "0.2.13"
__version__ = "0.2.14"

View File

@@ -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
@@ -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()