You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

function-comparison-page-between-python-AutoGen-and-autogen.net.md 1.2 kB

12345678910111213141516171819202122232425262728293031323334353637
  1. ### Function comparison between Python AutoGen and AutoGen\.Net
  2. #### Agentic pattern
  3. | Feature | AutoGen | AutoGen\.Net |
  4. | :---------------- | :------ | :---- |
  5. | Code interpreter | run python code in local/docker/notebook executor | run csharp code in dotnet interactive executor |
  6. | Single agent chat pattern | ✔️ | ✔️ |
  7. | Two agent chat pattern | ✔️ | ✔️ |
  8. | group chat (include FSM)| ✔️ | ✔️ (using workflow for FSM groupchat) |
  9. | Nest chat| ✔️ | ✔️ (using middleware pattern)|
  10. |Sequential chat | ✔️ | ❌ (need to manually create task in code) |
  11. | Tool | ✔️ | ✔️ |
  12. #### LLM platform support
  13. ℹ️ Note
  14. ``` Other than the platforms list below, AutoGen.Net also supports all the platforms that semantic kernel supports via AutoGen.SemanticKernel as a bridge ```
  15. | Feature | AutoGen | AutoGen\.Net |
  16. | :---------------- | :------ | :---- |
  17. | OpenAI (include third-party) | ✔️ | ✔️ |
  18. | Mistral | ✔️| ✔️|
  19. | Ollama | ✔️| ✔️|
  20. |Claude |✔️ |✔️|
  21. |Gemini (Include Vertex) | ✔️ | ✔️ |
  22. #### Popular Contrib Agent support
  23. | Feature | AutoGen | AutoGen\.Net |
  24. | :---------------- | :------ | :---- |
  25. | Rag Agent | ✔️| ❌ |
  26. | Web surfer | ✔️| ❌ |