Jamone Kelly
jamone
AI & ML interests
None yet
Recent Activity
upvoted a collection 2 days ago
Inpainting (MLX) liked a model 11 months ago
openai/gpt-oss-20b reacted to singhsidhukuldeep's post with ๐ almost 2 years ago
AutoGen from @Microsoft is crazy! ๐ It's an open-source framework that allows LLM agents to chat with each other to solve your tasks. ๐ค๐ฌ
They use the Assistant-Agent and User-Proxy-Agent framework! ๐ ๏ธ
As the name suggests, the Assistant-Agent does the work, and the User-Proxy-Agent behaves like a human, guiding the Assistant-Agent and double-checking its work! ๐งโ๐ปโ
Both Assistant-Agent and User-Proxy-Agent can be the same or different LLMs. ๐ค๐
AutoGen is an open-source programming framework for building AI agents and facilitating cooperation among multiple agents to solve tasks. ๐
This is truly amazing for building agentic AI quickly! ๐โจ
GitHub: https://github.com/microsoft/autogen ๐
```Python
from autogen import AssistantAgent, UserProxyAgent, config_list_from_json
#config
config_list = config_list_from_json(env_or_file="OAI_CONFIG_LIST")
assistant = AssistantAgent("assistant", llm_config={"config_list": config_list})
user_proxy = UserProxyAgent("user_proxy", code_execution_config={"work_dir": "coding", "use_docker": False})
user_proxy.initiate_chat(assistant, message="Plot a chart of NVDA and TESLA stock price change YTD.")
# This initiates an automated chat between the two agents to solve the task
```