Skip to content

Commit

Permalink
adding a new page Function comparison between Python AutoGen and Auto… (
Browse files Browse the repository at this point in the history
#3367)

* adding a new page Function comparison between Python AutoGen and AutoGen\.Net

* add page to autogen website
  • Loading branch information
olaoluwasalami authored and victordibia committed Aug 28, 2024
1 parent 829758f commit f775ac1
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
### Function comparison between Python AutoGen and AutoGen\.Net


#### Agentic pattern

| Feature | AutoGen | AutoGen\.Net |
| :---------------- | :------ | :---- |
| Code interpreter | run python code in local/docker/notebook executor | run csharp code in dotnet interactive executor |
| Single agent chat pattern | ✔️ | ✔️ |
| Two agent chat pattern | ✔️ | ✔️ |
| group chat (include FSM)| ✔️ | ✔️ (using workflow for FSM groupchat) |
| Nest chat| ✔️ | ✔️ (using middleware pattern)|
|Sequential chat | ✔️ | ❌ (need to manually create task in code) |
| Tool | ✔️ | ✔️ |


#### LLM platform support

ℹ️ Note

``` Other than the platforms list below, AutoGen.Net also supports all the platforms that semantic kernel supports via AutoGen.SemanticKernel as a bridge ```

| Feature | AutoGen | AutoGen\.Net |
| :---------------- | :------ | :---- |
| OpenAI (include third-party) | ✔️ | ✔️ |
| Mistral | ✔️| ✔️|
| Ollama | ✔️| ✔️|
|Claude |✔️ |✔️|
|Gemini (Include Vertex) | ✔️ | ✔️ |

#### Popular Contrib Agent support


| Feature | AutoGen | AutoGen\.Net |
| :---------------- | :------ | :---- |
| Rag Agent | ✔️||
| Web surfer | ✔️||
5 changes: 4 additions & 1 deletion dotnet/website/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@

- name: Tutorial
href: tutorial/

- name: API Reference
href: api/

- name: Release Notes
href: release_note/

- name: Comparison between Python AutoGen and AutoGen.Net
href: articles/function-comparison-page-between-python-AutoGen-and-autogen.net.md

- name: Other Languages
dropdown: true
items:
Expand Down

0 comments on commit f775ac1

Please sign in to comment.