-
Notifications
You must be signed in to change notification settings - Fork 5.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding a new page Function comparison between Python AutoGen and Auto… (
#3367) * adding a new page Function comparison between Python AutoGen and AutoGen\.Net * add page to autogen website
- Loading branch information
1 parent
829758f
commit f775ac1
Showing
2 changed files
with
41 additions
and
1 deletion.
There are no files selected for viewing
37 changes: 37 additions & 0 deletions
37
...ite/articles/function-comparison-page-between-python-AutoGen-and-autogen.net.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ✔️| ❌ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters