-
-
Notifications
You must be signed in to change notification settings - Fork 191
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: add projects page, more examples and 'powered by gptme' badge
- Add new projects.rst page showcasing gptme-powered projects - Add 'powered by gptme' badge to README - Move demos under examples section - Add more examples to examples.rst - Improve documentation organization
- Loading branch information
Showing
4 changed files
with
87 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
Projects | ||
======== | ||
|
||
This page lists projects that are powered by or built using gptme. | ||
|
||
Official Projects | ||
----------------- | ||
|
||
* `gptme <https://github.com/ErikBjare/gptme>`_ | ||
gptme itself, of course! | ||
|
||
* `gptme-agent-template <https://github.com/ErikBjare/gptme-agent-template>`_ | ||
Template for creating new agents powered by gptme. | ||
|
||
* `Bob <https://github.com/TimeToBuildBob>`_ | ||
The first agent built using the gptme agent architecture. | ||
|
||
* `gptme-rag <https://github.com/ErikBjare/gptme-rag>`_ | ||
RAG (Retrieval-Augmented Generation) implementation for gptme context management. | ||
|
||
* `gptme-webui <https://github.com/ErikBjare/gptme-webui>`_ | ||
Fancy web-based user interface for gptme, built with the help of `Lovable <https://lovable.dev/>`_. | ||
|
||
Community Projects | ||
------------------ | ||
|
||
*Your project could be here! Add it by creating a PR.* | ||
|
||
* `ErikBjare/nbody-sim <https://github.com/ErikBjare/nbody-sim>`_ | ||
Simple but performant n-body simulation in Rust built with gptme using only a few prompts. | ||
|
||
|
||
.. rubric:: Adding Your Project | ||
|
||
|
||
If you've built something using gptme, we'd love to feature it here! | ||
|
||
1. Add the "Built with gptme" badge to your README: | ||
|
||
.. code-block:: markdown | ||
[![built using gptme](https://img.shields.io/badge/built%20using-gptme%20%F0%9F%A4%96-5151f5?style=flat)](https://github.com/ErikBjare/gptme) | ||
2. Create a PR adding your project to this list: | ||
|
||
.. code-block:: rst | ||
* `Project Name <https://github.com/username/project>`_ | ||
Brief description of your project. | ||
.. rubric:: Built with gptme Badge | ||
|
||
The "Built with gptme" badge helps showcase your project's use of gptme and connects it to the broader ecosystem. | ||
|
||
Standard Badge (for projects built using gptme): | ||
|
||
.. image:: https://img.shields.io/badge/built%20using-gptme%20%F0%9F%A4%96-5151f5?style=flat | ||
:target: https://github.com/ErikBjare/gptme | ||
:alt: Built using gptme | ||
|
||
"Powered by" Variant (for tools/services running on gptme): | ||
|
||
.. image:: https://img.shields.io/badge/powered%20by-gptme%20%F0%9F%A4%96-5151f5?style=flat | ||
:target: https://github.com/ErikBjare/gptme | ||
:alt: Powered by gptme | ||
|
||
Use the standard badge for projects created with gptme's assistance, and the "powered by" variant for tools or services that run on gptme. |