2024-03-13 08:47:41 -07:00
|
|
|
# What Next?
|
2024-03-09 09:45:58 -08:00
|
|
|
|
|
|
|
Now that you have learned the basics of AutoGen, you can start to build your own
|
|
|
|
agents. Here are some ideas to get you started without going to the advanced
|
|
|
|
topics:
|
|
|
|
|
|
|
|
1. **Chat with LLMs**: In [Human in the Loop](./human-in-the-loop) we covered
|
|
|
|
the basic human-in-the-loop usage. You can try to hook up different LLMs
|
2024-03-20 12:31:58 -07:00
|
|
|
using local model servers like
|
|
|
|
[Ollama](https://github.com/ollama/ollama)
|
|
|
|
and [LM Studio](https://lmstudio.ai/), and
|
2024-03-09 09:45:58 -08:00
|
|
|
chat with them using the human-in-the-loop component of your human proxy
|
|
|
|
agent.
|
|
|
|
2. **Prompt Engineering**: In [Code Executors](./code-executors) we
|
|
|
|
covered the simple two agent scenario using GPT-4 and Python code executor.
|
|
|
|
To make this scenario work for different LLMs and programming languages, you
|
|
|
|
probably need to tune the system message of the code writer agent. Same with
|
|
|
|
other scenarios that we have covered in this tutorial, you can also try to
|
|
|
|
tune system messages for different LLMs.
|
|
|
|
3. **Complex Tasks**: In [ConversationPatterns](./conversation-patterns)
|
|
|
|
we covered the basic conversation patterns. You can try to find other tasks
|
|
|
|
that can be decomposed into these patterns, and leverage the code executors
|
2024-03-20 12:31:58 -07:00
|
|
|
and tools
|
2024-03-09 09:45:58 -08:00
|
|
|
to make the agents more powerful.
|
|
|
|
|
|
|
|
## Dig Deeper
|
|
|
|
|
|
|
|
- Read the [topic docs](/docs/topics) to learn more
|
|
|
|
- Read the examples and guides in the [notebooks section](/docs/notebooks)
|
2024-03-12 12:05:00 -07:00
|
|
|
- Check [research](/docs/Research) and [blog](/blog)
|
2024-03-09 09:45:58 -08:00
|
|
|
|
|
|
|
## Get Help
|
|
|
|
|
|
|
|
If you have any questions, you can ask in our [GitHub
|
|
|
|
Discussions](https://github.com/microsoft/autogen/discussions), or join
|
2024-04-01 11:32:41 -07:00
|
|
|
our [Discord Server](https://aka.ms/autogen-dc).
|
2024-03-09 09:45:58 -08:00
|
|
|
|
2024-04-01 11:32:41 -07:00
|
|
|
[](https://aka.ms/autogen-dc)
|
2024-03-09 09:45:58 -08:00
|
|
|
|
|
|
|
## Get Involved
|
|
|
|
|
2024-04-01 11:32:41 -07:00
|
|
|
- Check out [Roadmap Issues](https://aka.ms/autogen-roadmap) to see what we are working on.
|
2024-03-09 09:45:58 -08:00
|
|
|
- Contribute your work to our [gallery](../Gallery)
|
|
|
|
- Follow our [contribution guide](../Contribute) to make a pull request to AutoGen
|
|
|
|
- You can also share your work with the community on the Discord server.
|