mirror of
				https://github.com/microsoft/autogen.git
				synced 2025-11-04 03:39:52 +00:00 
			
		
		
		
	bump version to 0.2.1 (#867)
* bump version to 0.2.1 * remove example link * update --------- Co-authored-by: Qingyun Wu <qingyun.wu@psu.edu> Co-authored-by: kevin666aa <yrwu000627@gmail.com>
This commit is contained in:
		
							parent
							
								
									195c87e309
								
							
						
					
					
						commit
						73d7e9203b
					
				@ -1 +1 @@
 | 
			
		||||
__version__ = "0.2.0"
 | 
			
		||||
__version__ = "0.2.1"
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										2
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								setup.py
									
									
									
									
									
								
							@ -14,7 +14,7 @@ with open(os.path.join(here, "autogen/version.py")) as fp:
 | 
			
		||||
__version__ = version["__version__"]
 | 
			
		||||
 | 
			
		||||
install_requires = [
 | 
			
		||||
    "openai~=1.2",
 | 
			
		||||
    "openai~=1.2,<1.3",
 | 
			
		||||
    "diskcache",
 | 
			
		||||
    "termcolor",
 | 
			
		||||
    "flaml",
 | 
			
		||||
 | 
			
		||||
@ -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"
 | 
			
		||||
 | 
			
		||||
@ -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**
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user