autogen
autogen copied to clipboard
A programming framework for agentic AI 🤖 (PyPi: autogen-agentchat)
### Describe the bug In all examples I try to run, I get the same error. Concretely, simple chat example: https://github.com/microsoft/autogen/blob/main/samples/simple_chat.py ``` agent (to user): How can I help you...
## Why are these changes needed? This PR adds support for the above mentioned LLMs using LiteLLM https://github.com/BerriAI/litellm/ LiteLLM is a lightweight package to simplify LLM API calls - use...
### How to install AutoGen with this PR Because this PR is still not merged into the main branch, you need to run the following setup to install AutoGen with...
``` 请尝试使用以下更新的代码: ```py # filename: news_report.py import requests url = 'https://newsapi.org/v2/top-headlines?country=us&apiKey=' response = requests.get(url) data = response.json() headlines = [article['title'] for article in data['articles']] markdown_report = '\n'.join(['- ' + headline...
### Describe the issue Github organization is going to update the default permission defined by the `permissions` block in all workflows by end of January. If this block is not...
## Why are these changes needed? By default, only the GroupChatManager knows the full list of agents participating in a GroupChat discussion. This can be problematic, as an agent may...
## Why are these changes needed? Adds class methods for using AutoGen to control robots and other embodied agents ## Related issue number ## Checks - [ ] I've included...
## Why are these changes needed? This adds classes for using AutoGen to control autonomous robots and other embodied agents. The user just needs to add the functions and interfaces...
### Describe the bug Hi, with pyautogen==0.2.2 I tried to run three codes provided in #274 and previously in #252 and #152 about function calling in groupchats but I got...
### Is your feature request related to a problem? Please describe. If a user wants to change the behavior of any of the functions that got registered for a reply,...