Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sonichi committed Sep 21, 2023
1 parent c8cdb2a commit 7dd9831
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/test_notebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_agentchat_auto_feedback_from_code(save=False):
skip or not sys.version.startswith("3.10"),
reason="do not run if openai is not installed or py!=3.10",
)
def test_openai_completion(save=False):
def test_oai_completion(save=False):
run_notebook("oai_completion.ipynb", save=save)


Expand All @@ -80,13 +80,13 @@ def test_agentchat_MathChat(save=False):
skip or not sys.version.startswith("3.11"),
reason="do not run if openai is not installed or py!=3.11",
)
def test_chatgpt_gpt4(save=False):
def test_oai_chatgpt_gpt4(save=False):
run_notebook("oai_chatgpt_gpt4.ipynb", save=save)


if __name__ == "__main__":
test_agentchat_auto_feedback_from_code(save=True)
# test_chatgpt_gpt4(save=True)
# test_openai_completion(save=True)
# test_oai_chatgpt_gpt4(save=True)
# test_oai_completion(save=True)
# test_agentchat_MathChat(save=True)
# test_agentchat_function_call(save=True)

0 comments on commit 7dd9831

Please sign in to comment.