• bitcoinBitcoin(BTC)$76,930.00-1.85%
  • ethereumEthereum(ETH)$2,457.38-0.69%
  • tetherTether(USDT)$1.000.00%
  • binancecoinBNB(BNB)$713.95-1.36%
  • rippleXRP(XRP)$1.34-3.68%
  • usd-coinUSDC(USDC)$1.000.01%
  • solanaSolana(SOL)$99.35-2.17%
  • tronTRON(TRX)$0.3407750.41%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.040.98%
  • zcashZcash(ZEC)$1,095.96-11.83%
  • HyperliquidHyperliquid(HYPE)$79.38-4.76%
  • dogecoinDogecoin(DOGE)$0.083539-3.01%
  • RainRain(RAIN)$0.015780-2.53%
  • USDSUSDS(USDS)$1.00-0.02%
  • moneroMonero(XMR)$511.570.58%
  • whitebitWhiteBIT Coin(WBT)$79.67-1.55%
  • chainlinkChainlink(LINK)$11.51-2.24%
  • leo-tokenLEO Token(LEO)$9.190.04%
  • cardanoCardano(ADA)$0.206592-2.70%
  • stellarStellar(XLM)$0.175893-2.70%
  • daiDai(DAI)$1.000.00%
  • bitcoin-cashBitcoin Cash(BCH)$226.48-10.02%
  • Ethena USDeEthena USDe(USDE)$1.00-0.01%
  • USD1USD1(USD1)$1.00-0.01%
  • litecoinLitecoin(LTC)$52.69-1.16%
  • CantonCanton(CC)$0.098464-5.31%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.36-0.64%
  • uniswapUniswap(UNI)$6.06-2.10%
  • Global DollarGlobal Dollar(USDG)$1.000.01%
  • hedera-hashgraphHedera(HBAR)$0.075304-2.14%
  • nearNEAR Protocol(NEAR)$2.521.30%
  • avalanche-2Avalanche(AVAX)$7.48-4.17%
  • suiSui(SUI)$0.74-4.75%
  • shiba-inuShiba Inu(SHIB)$0.000005-3.49%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • crypto-com-chainCronos(CRO)$0.056760-2.29%
  • tether-goldTether Gold(XAUT)$4,337.78-1.62%
  • MemeCoreMemeCore(M)$1.15-5.02%
  • Circle USYCCircle USYC(USYC)$1.140.01%
  • Ripple USDRipple USD(RLUSD)$1.00-0.01%
  • okbOKB(OKB)$109.74-4.43%
  • BittensorBittensor(TAO)$236.87-6.80%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.150.01%
  • polkadotPolkadot(DOT)$1.130.91%
  • AsterAster(ASTER)$0.70-3.80%
  • mantleMantle(MNT)$0.57-4.86%
  • aaveAave(AAVE)$122.23-2.03%
  • pax-goldPAX Gold(PAXG)$4,341.77-1.58%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.0563210.57%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

Microsoft’s AutoGen has multiple AI agents talk to do your work

October 3, 2023
in AI & Technology
Reading Time: 5 mins read
A A
Microsoft’s AutoGen has multiple AI agents talk to do your work
ShareShareShareShareShare

VentureBeat presents: AI Unleashed – An exclusive executive event for enterprise data leaders. Network and learn with industry peers. Learn More


Microsoft has joined the race for large language model (LLM) application frameworks with its open source Python library, AutoGen. 

YOU MAY ALSO LIKE

How These XL Phones Compete

Meet Redis LangCache: A Managed Semantic Cache That Cuts LLM API Costs by Up to 90% and Returns Cache Hits Up to 15x Faster

As described by Microsoft, AutoGen is “a framework for simplifying the orchestration, optimization, and automation of LLM workflows.” The fundamental concept behind AutoGen is the creation of “agents,” which are programming modules powered by LLMs such as GPT-4. These agents interact with each other through natural language messages to accomplish various tasks.

Agents can be customized and augmented using prompt engineering techniques and external tools that enable them to retrieve information or execute code. With AutoGen, developers can create an ecosystem of agents that specialize in different tasks and cooperate with each other.

A simplified view of the agent ecosystem is to view each agent as an individual ChatGPT session with its unique system instruction. For instance, one agent could be instructed to act as a programming assistant that generates Python code based on user requests. Another agent can be a code reviewer that takes Python code snippets and troubleshoots them. The response from the first agent can then be passed on as input to the second agent. Some of these agents might even have access to external tools, which is the equivalent of ChatGPT plugins like Code Interpreter or Wolfram Alpha.

Event

AI Unleashed

An exclusive invite-only evening of insights and networking, designed for senior enterprise executives overseeing data stacks and strategies.

 

Learn More

Image source: Microsoft blog

AutoGen provides the necessary tools for creating these agents and enabling them to interact automatically. 

Multi-agent applications can be fully autonomous or moderated through “human proxy agents,” which allow users to step into the conversation between the AI agents, acting as another voice to provide oversight and control over their process. In a way, the human user is turned into a team leader overseeing a team of multiple AIs.

Human agents are useful for applications where the agent framework must make sensitive decisions and require confirmation from the user, such as making purchases or sending emails.

They can also enable users to help agents steer course when they start going in the wrong direction. For example, the user can start with an initial idea for an application and gradually refine it and add or modify features as they start writing the code with the help of agents.

The modular architecture of AutoGen allows developers to create general-purpose reusable components that can be assembled together to rapidly build custom applications.

Multiple AutoGen agents can collaborate to accomplish complex tasks. For example, a human agent might request assistance in writing code for a specific task. 

A coding assistant agent can generate and return the code, which the AI user agent can then verify using a code execution module. Together, the two AI agents can then troubleshoot the code and produce a final executable version, with the human user able to interrupt or provide feedback at any point. 

This collaborative approach can lead to significant efficiency gains. According to Microsoft, AutoGen can speed up coding by up to four times.

AutoGen also supports more complex scenarios and architectures, such as the hierarchical arrangement of LLM agents. For instance, a group chat manager agent could moderate conversations between multiple human users and LLM agents and pass on messages between them according to a set of rules.

A competitive field

The field of LLM application frameworks is fast developing and Microsoft AutoGen is competing with many other contenders. LangChain is a framework for creating various types of LLM applications, from chatbots to text summarizers and agents. LlamaIndex offers rich tools for connecting LLMs to external data sources such as documents and databases.

Libraries like AutoGPT, MetaGPT, and BabyAGI are specifically focused on LLM agents and multi-agent applications. ChatDev uses LLM agents to emulate an entire software development team. And Hugging Face’s Transformers Agents library enables developers to create conversational applications that connect LLMs to external tools.

LLM agents are a hot area of research and development, with prototypes already created for tasks ranging from product development to executive functions, shopping, and market research. Studies have also shown how LLM agents can be used to simulate mass population behavior or create realistic non-playable characters in games. However, much of this work remains proof of concept and is not yet production-ready due to challenges, such as hallucinations and unpredictable behavior from LLM agents.

Despite these challenges, the future of LLM applications appears bright, with agents set to play a significant role. Big tech companies are already betting big on AI copilots being a big part of future applications and operating systems. And LLM agent frameworks will enable companies to create their own customized copilots. Microsoft’s entrance into this field with AutoGen is a testament to the intensifying competition around LLM agents and their future potential.

VentureBeat’s mission is to be a digital town square for technical decision-makers to gain knowledge about transformative enterprise technology and transact. Discover our Briefings.

Credit: Source link

ShareTweetSendSharePin

Related Posts

How These XL Phones Compete
AI & Technology

How These XL Phones Compete

September 10, 2026
Meet Redis LangCache: A Managed Semantic Cache That Cuts LLM API Costs by Up to 90% and Returns Cache Hits Up to 15x Faster
AI & Technology

Meet Redis LangCache: A Managed Semantic Cache That Cuts LLM API Costs by Up to 90% and Returns Cache Hits Up to 15x Faster

September 10, 2026
Meta Is Testing Community Notes In Latin America. Fact Checkers Are Worried.
AI & Technology

Meta Is Testing Community Notes In Latin America. Fact Checkers Are Worried.

September 10, 2026
IDScan Is Offering Free Credit Monitoring And ID Protection After Leaking Driver’s Licenses
AI & Technology

IDScan Is Offering Free Credit Monitoring And ID Protection After Leaking Driver’s Licenses

September 10, 2026
Next Post
Electronic vs. Traditional Trading

Electronic vs. Traditional Trading

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
My Wife Is Blowing All Of Our Money On Parties

My Wife Is Blowing All Of Our Money On Parties

September 9, 2026
XPENG Commissions Humanoid Robot Lines as IRON Walks Off Production – Unite.AI

XPENG Commissions Humanoid Robot Lines as IRON Walks Off Production – Unite.AI

September 8, 2026
Meet the Press Full Episode — July 26

Meet the Press Full Episode — July 26

September 4, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!