2024-02-13 16:23:12 -05:00
---
hide_table_of_contents: true
---
2023-12-08 09:02:15 -05:00
import GalleryPage from '../src/components/GalleryPage';
2024-02-03 12:01:00 -05:00
import galleryData from "../src/data/gallery.json";
2023-12-08 09:02:15 -05:00
# Gallery
This page contains a list of demos that use AutoGen in various applications from the community.
**Contribution guide:**
Built something interesting with AutoGen? Submit a PR to add it to the list! See the [Contribution Guide below](#contributing) for more details.
2024-02-03 12:01:00 -05:00
<GalleryPage items={galleryData} />
2023-12-08 09:02:15 -05:00
## Contributing
To contribute, please open a PR that adds an entry to the `data/gallery.json` file in the `src` directory. The entry should be an object with the following properties:
```js
{
"title": "AutoGen Playground",
"link": "https://huggingface.co/spaces/thinkall/AutoGen_Playground",
"description": "A space to explore the capabilities of AutoGen.",
"image": "default.png",
"tags": ["ui"]
}
```
The `image` property should be the name of a file in the `static/img/gallery` directory.
The `tags` property should be an array of strings that describe the demo. We recommend using no more than two tags for clarity.
Here are the meanings of several tags for reference:
1. app: Using Autogen for specific applications.
2023-12-23 00:00:46 +08:00
2. extension: Enhancing AutoGen beyond the features in current version.
2023-12-08 09:02:15 -05:00
3. ui: Building user interface for AutoGen.
2023-12-23 00:00:46 +08:00
4. tool: Strengthening AutoGen Agents with external tools.
2023-12-08 09:02:15 -05:00
5. groupchat: Solving complex tasks with a group of Agents.
if the existing ones do not precisely portray your own demos, new tags are also encouraged to add.