Skip to content

Commit

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

* remove example link

* update

---------

Co-authored-by: Qingyun Wu <[email protected]>
Co-authored-by: kevin666aa <[email protected]>
  • Loading branch information
3 people authored Dec 5, 2023
1 parent 195c87e commit 73d7e92
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 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.0"
__version__ = "0.2.1"
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",
"openai~=1.2,<1.3",
"diskcache",
"termcolor",
"flaml",
Expand Down
2 changes: 1 addition & 1 deletion test/oai/test_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ def test_cost(cache_seed, model):
def test_usage_summary():
config_list = config_list_openai_aoai(KEY_LOC)
client = OpenAIWrapper(config_list=config_list)
response = client.create(prompt="1+3=", model="gpt-3.5-turbo-instruct", cache_seed=42)
response = client.create(prompt="1+3=", model="gpt-3.5-turbo-instruct", cache_seed=None)

# usage should be recorded
assert client.actual_usage_summary["total_cost"] > 0, "total_cost should be greater than 0"
Expand Down
1 change: 0 additions & 1 deletion website/docs/Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ Links to notebook examples:
- Use Provided Tools as Functions - [View Notebook](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_function_call.ipynb)
- Task Solving with Langchain Provided Tools as Functions - [View Notebook](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_langchain.ipynb)
- **RAG**: Group Chat with Retrieval Augmented Generation (with 5 group member agents and 1 manager agent) - [View Notebook](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_groupchat_RAG.ipynb)
- In-depth Guide to OpenAI Utility Functions - [View Notebook](https://github.com/microsoft/autogen/blob/main/notebook/oai_openai_utils.ipynb)
- Function Inception: Enable AutoGen agents to update/remove functions during conversations. - [View Notebook](https://github.com/microsoft/autogen/blob/main/notebook/agentchat_inception_function.ipynb)

1. **Human Involvement**
Expand Down

0 comments on commit 73d7e92

Please sign in to comment.