Skip to content

Commit

Permalink
Merge branch 'main' into EcoAssistant-blog
Browse files Browse the repository at this point in the history
  • Loading branch information
JieyuZ2 committed Nov 12, 2023
2 parents 3f7f42c + 337ac4c commit 4f23622
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
10 changes: 5 additions & 5 deletions autogen/oai/completion.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
import diskcache

ERROR = None
except ImportError:
ERROR = ImportError(
"(Deprecated) The autogen.Completion class requires openai<1 and diskcache. "
"Please switch to autogen.OpenAIWrapper for openai>=1."
)
assert openai.__version__ < "1"
except (AssertionError, ImportError):
openai_Completion = object
# The autogen.Completion class requires openai<1
ERROR = AssertionError("(Deprecated) The autogen.Completion class requires openai<1 and diskcache. ")

logger = logging.getLogger(__name__)
if not logger.handlers:
# Add the console handler.
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.0b4"
__version__ = "0.2.0b5"
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.1.1",
"openai~=1.2",
"diskcache",
"termcolor",
"flaml",
Expand Down
8 changes: 4 additions & 4 deletions test/agentchat/contrib/test_gpt_assistant.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
except ImportError:
skip_test = True

config_list = autogen.config_list_from_json(
OAI_CONFIG_LIST, file_location=KEY_LOC, filter_dict={"api_type": ["openai"]}
)


def ask_ossinsight(question):
return f"That is a good question, but I don't know the answer yet. Please ask your human developer friend to help you. \n\n{question}"
Expand All @@ -38,7 +42,6 @@ def test_gpt_assistant_chat():
"description": "This is an API endpoint allowing users (analysts) to input question about GitHub in text format to retrieve the realted and structured data.",
}

config_list = autogen.config_list_from_json(OAI_CONFIG_LIST, file_location=KEY_LOC)
analyst = GPTAssistantAgent(
name="Open_Source_Project_Analyst",
llm_config={"tools": [{"type": "function", "function": ossinsight_api_schema}], "config_list": config_list},
Expand Down Expand Up @@ -73,7 +76,6 @@ def test_get_assistant_instructions():
and assert that the retrieved instructions match the set instructions.
"""

config_list = autogen.config_list_from_json(OAI_CONFIG_LIST, file_location=KEY_LOC)
assistant = GPTAssistantAgent(
"assistant",
instructions="This is a test",
Expand Down Expand Up @@ -107,7 +109,6 @@ def test_gpt_assistant_instructions_overwrite():
instructions1 = "This is a test #1"
instructions2 = "This is a test #2"

config_list = autogen.config_list_from_json(OAI_CONFIG_LIST, file_location=KEY_LOC)
assistant = GPTAssistantAgent(
"assistant",
instructions=instructions1,
Expand Down Expand Up @@ -144,7 +145,6 @@ def test_gpt_assistant_existing_no_instructions():
"""
instructions = "This is a test #1"

config_list = autogen.config_list_from_json(OAI_CONFIG_LIST, file_location=KEY_LOC)
assistant = GPTAssistantAgent(
"assistant",
instructions=instructions,
Expand Down

0 comments on commit 4f23622

Please sign in to comment.