Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

adding a new page Function comparison between Python AutoGen and Auto… #3367

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading