mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-23 00:42:54 +00:00
36 lines
1.4 KiB
Plaintext
36 lines
1.4 KiB
Plaintext
![]() |
import GalleryPage from '../src/components/GalleryPage';
|
||
|
|
||
|
# 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.
|
||
|
|
||
|
<GalleryPage />
|
||
|
|
||
|
## 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.
|
||
|
2. extension: Enhacing AutoGen beyond the features in current version.
|
||
|
3. ui: Building user interface for AutoGen.
|
||
|
4. tool: Strengthing AutoGen Agents with exteral tools.
|
||
|
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.
|