From 9a9c283f6a6ea8e7bb7cd3124f1121b888f7ad7d Mon Sep 17 00:00:00 2001 From: Jack Gerrits Date: Thu, 8 Feb 2024 01:28:35 -0500 Subject: [PATCH] Fix a couple of tiny issues in blog posts (#1578) Co-authored-by: Eric Zhu --- website/blog/2023-11-13-OAI-assistants/index.mdx | 2 +- website/blog/2023-12-01-AutoGenStudio/index.mdx | 2 +- website/blog/2023-12-29-AgentDescriptions/index.mdx | 2 +- .../blog/2024-01-23-Code-execution-in-docker/index.mdx | 2 +- website/blog/2024-01-25-AutoGenBench/index.mdx | 4 ++-- website/blog/2024-02-02-AutoAnny/index.mdx | 10 +++++----- 6 files changed, 11 insertions(+), 11 deletions(-) diff --git a/website/blog/2023-11-13-OAI-assistants/index.mdx b/website/blog/2023-11-13-OAI-assistants/index.mdx index 13b5383d0..e73e31ad5 100644 --- a/website/blog/2023-11-13-OAI-assistants/index.mdx +++ b/website/blog/2023-11-13-OAI-assistants/index.mdx @@ -8,7 +8,7 @@ tags: [openai-assistant]

AutoGen enables collaboration among multiple ChatGPTs for complex tasks.

-## TLDR +## TL;DR OpenAI assistants are now integrated into AutoGen via [`GPTAssistantAgent`](https://github.com/microsoft/autogen/blob/main/autogen/agentchat/contrib/gpt_assistant_agent.py). This enables multiple OpenAI assistants, which form the backend of the now popular GPTs, to collaborate and tackle complex tasks. Checkout example notebooks for reference: diff --git a/website/blog/2023-12-01-AutoGenStudio/index.mdx b/website/blog/2023-12-01-AutoGenStudio/index.mdx index 8692d43af..b6191eae6 100644 --- a/website/blog/2023-12-01-AutoGenStudio/index.mdx +++ b/website/blog/2023-12-01-AutoGenStudio/index.mdx @@ -13,7 +13,7 @@ tags: [AutoGen, UI, web, UX] ![AutoGen Studio Playground View: Solving a task with multiple agents that generate a pdf document with images.](img/autogenstudio_home.png)

AutoGen Studio: Solving a task with multiple agents that generate a pdf document with images.

-## TLDR +## TL;DR To help you rapidly prototype multi-agent solutions for your tasks, we are introducing AutoGen Studio, an interface powered by [AutoGen](https://github.com/microsoft/autogen/tree/main/autogen). It allows you to: diff --git a/website/blog/2023-12-29-AgentDescriptions/index.mdx b/website/blog/2023-12-29-AgentDescriptions/index.mdx index b72f74e1a..0471d545d 100644 --- a/website/blog/2023-12-29-AgentDescriptions/index.mdx +++ b/website/blog/2023-12-29-AgentDescriptions/index.mdx @@ -6,7 +6,7 @@ tags: [AutoGen] --- -## TLDR +## TL;DR AutoGen 0.2.2 introduces a [description](https://microsoft.github.io/autogen/docs/reference/agentchat/conversable_agent#__init__) field to ConversableAgent (and all subclasses), and changes GroupChat so that it uses agent `description`s rather than `system_message`s when choosing which agents should speak next. diff --git a/website/blog/2024-01-23-Code-execution-in-docker/index.mdx b/website/blog/2024-01-23-Code-execution-in-docker/index.mdx index a08e42c6c..067f16210 100644 --- a/website/blog/2024-01-23-Code-execution-in-docker/index.mdx +++ b/website/blog/2024-01-23-Code-execution-in-docker/index.mdx @@ -6,7 +6,7 @@ tags: [AutoGen] --- -## TLDR +## TL;DR AutoGen 0.2.8 enhances operational safety by making 'code execution inside a Docker container' the default setting, focusing on informing users about its operations and empowering them to make informed decisions regarding code execution. diff --git a/website/blog/2024-01-25-AutoGenBench/index.mdx b/website/blog/2024-01-25-AutoGenBench/index.mdx index ba95c2e24..517fecc8a 100644 --- a/website/blog/2024-01-25-AutoGenBench/index.mdx +++ b/website/blog/2024-01-25-AutoGenBench/index.mdx @@ -10,8 +10,8 @@ tags: [AutoGen]

AutoGenBench is a standalone tool for evaluating AutoGen agents and workflows on common benchmarks.

-## TLDR -Today we are releasing AutoGenBench – a tool for evaluating AutoGen agents and workflows on established LLM and agentic benchmarks. +## TL;DR +Today we are releasing AutoGenBench - a tool for evaluating AutoGen agents and workflows on established LLM and agentic benchmarks. AutoGenBench is a standalone command line tool, installable from PyPI, which handles downloading, configuring, running, and reporting supported benchmarks. AutoGenBench works best when run alongside Docker, since it uses Docker to isolate tests from one another. diff --git a/website/blog/2024-02-02-AutoAnny/index.mdx b/website/blog/2024-02-02-AutoAnny/index.mdx index 7226f74e9..b8e0d84bd 100644 --- a/website/blog/2024-02-02-AutoAnny/index.mdx +++ b/website/blog/2024-02-02-AutoAnny/index.mdx @@ -13,12 +13,12 @@ import AutoAnnyLogo from './img/AutoAnnyLogo.jpg';

Anny is a Discord bot powered by AutoGen to help AutoGen's Discord server.

-### TLDR +## TL;DR We are adding a new sample app called Anny-- a simple Discord bot powered -by AutoGen that's intended to assist AutoGen Devs. See `samples/apps/auto-anny` for details. +by AutoGen that's intended to assist AutoGen Devs. See [`samples/apps/auto-anny`](https://github.com/microsoft/autogen/tree/main/samples/apps/auto-anny) for details. -### Introduction +## Introduction Over the past few months, AutoGen has experienced large growth in number of users and number of community requests and feedback. However, accommodating this demand and feedback requires manually sifting through issues, PRs, and discussions on GitHub, as well as managing messages @@ -34,7 +34,7 @@ This requires a significant amount of effort. Agentic-workflows and interfaces p our lives easier?!* So we're turning to automation to help us and allow us to focus on what's most critical. -### Current Version of Anny +## Current Version of Anny The current version of Anny is pretty simple -- it uses the Discord API and AutoGen to enable a bot that can respond to a set of commands. @@ -43,5 +43,5 @@ For example, it supports commands like `/heyanny help` for command listing, `/he To use Anny, please follow instructions in [`samples/apps/auto-anny`](https://github.com/microsoft/autogen/tree/main/samples/apps/auto-anny). -### Its Not Just for AutoGen +## It's Not Just for AutoGen If you're an open-source developer managing your own project, you can probably relate to our challenges. We invite you to check out Anny and contribute to its development and roadmap.