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.

what-next.md 2.1 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. # What Next?
  2. Now that you have learned the basics of AutoGen, you can start to build your own
  3. agents. Here are some ideas to get you started without going to the advanced
  4. topics:
  5. 1. **Chat with LLMs**: In [Human in the Loop](./human-in-the-loop) we covered
  6. the basic human-in-the-loop usage. You can try to hook up different LLMs
  7. using local model servers like
  8. [Ollama](https://github.com/ollama/ollama)
  9. and [LM Studio](https://lmstudio.ai/), and
  10. chat with them using the human-in-the-loop component of your human proxy
  11. agent.
  12. 2. **Prompt Engineering**: In [Code Executors](./code-executors) we
  13. covered the simple two agent scenario using GPT-4 and Python code executor.
  14. To make this scenario work for different LLMs and programming languages, you
  15. probably need to tune the system message of the code writer agent. Same with
  16. other scenarios that we have covered in this tutorial, you can also try to
  17. tune system messages for different LLMs.
  18. 3. **Complex Tasks**: In [ConversationPatterns](./conversation-patterns)
  19. we covered the basic conversation patterns. You can try to find other tasks
  20. that can be decomposed into these patterns, and leverage the code executors
  21. and tools
  22. to make the agents more powerful.
  23. ## Dig Deeper
  24. - Read the [user guide](/docs/topics) to learn more
  25. - Read the examples and guides in the [notebooks section](/docs/notebooks)
  26. - Check [research](/docs/Research) and [blog](/blog)
  27. ## Get Help
  28. If you have any questions, you can ask in our [GitHub
  29. Discussions](https://github.com/microsoft/autogen/discussions), or join
  30. our [Discord Server](https://aka.ms/autogen-dc).
  31. [![](https://img.shields.io/discord/1153072414184452236?logo=discord&style=flat.png)](https://aka.ms/autogen-dc)
  32. ## Get Involved
  33. - Check out [Roadmap Issues](https://aka.ms/autogen-roadmap) to see what we are working on.
  34. - Contribute your work to our [gallery](/docs/Gallery)
  35. - Follow our [contribution guide](/docs/contributor-guide/contributing) to make a pull request to AutoGen
  36. - You can also share your work with the community on the Discord server.