Skip to content

Commit

Permalink
bump version to 0.2.2 (#906)
Browse files Browse the repository at this point in the history
* bump version to 0.2.2

* openai version
  • Loading branch information
sonichi committed Dec 10, 2023
1 parent fd84ef1 commit a31b240
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 0 additions & 4 deletions .github/workflows/openai.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,6 @@ jobs:
if: matrix.python-version == '3.9'
run: |
pip install docker
- name: Install dependencies for test when needed
if: matrix.python-version == '3.10' # test_agentchat_function_call
run: |
pip install -e.[mathchat]
- name: Coverage
if: matrix.python-version == '3.9'
env:
Expand Down
2 changes: 1 addition & 1 deletion autogen/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
__version__ = version["__version__"]

install_requires = [
"openai~=1.2,<1.3",
"openai~=1.3",
"diskcache",
"termcolor",
"flaml",
Expand Down
5 changes: 3 additions & 2 deletions test/agentchat/test_function_call.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import json
import autogen
from autogen.math_utils import eval_math_responses
from test_assistant_agent import KEY_LOC
from test_assistant_agent import KEY_LOC, OAI_CONFIG_LIST
import sys


Expand Down Expand Up @@ -195,10 +195,11 @@ def get_number():
)
def test_update_function():
config_list_gpt4 = autogen.config_list_from_json(
"OAI_CONFIG_LIST",
OAI_CONFIG_LIST,
filter_dict={
"model": ["gpt-4", "gpt-4-0314", "gpt4", "gpt-4-32k", "gpt-4-32k-0314", "gpt-4-32k-v0314"],
},
file_location=KEY_LOC,
)
llm_config = {
"config_list": config_list_gpt4,
Expand Down

0 comments on commit a31b240

Please sign in to comment.