Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cfortuner/wellknown
A registry of AI Plugins
https://github.com/cfortuner/wellknown
Last synced: 3 months ago
JSON representation
A registry of AI Plugins
- Host: GitHub
- URL: https://github.com/cfortuner/wellknown
- Owner: cfortuner
- License: mit
- Created: 2023-03-29T00:39:46.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-08T06:27:54.000Z (almost 2 years ago)
- Last Synced: 2024-11-05T20:47:00.051Z (4 months ago)
- Language: TypeScript
- Homepage: https://wellknown.ai
- Size: 1.53 MB
- Stars: 94
- Watchers: 4
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Wellknown
What is this?
This is a directory of AI Plugins as defined by https://openai.com/blog/chatgpt-plugins#browsing
With the release of chatGPT plugins, developers can now publish `ai-plugin.json` manifest files alongside their APIs which chatGPT and other LLMs can use to interact with the api in natural language.
This enables ai modesl to use 'tools' to fetch and store data, take actions and listen for events.
# Goals
The main goal for this project is to be like npm for ai agents.
LLM's will eventually need to be able to find the right tools to complete a task, even if they haven't been installed by the user.
This app will provide a search api and a admin ui for managing plugins.
# Submitting a plugin
1. open a pr with your ai-plugin.json file in the `plugins` folder
2. for now, i'll review it and add it to the list# API
To fetch plugins from wellknown.ai, use the following api endpoint:
`GET https://wellknown.ai/api/plugins`
Response schema
```
{
name: string
manifest: object // the ai-plugin.json file as json
openAPI: object // the openapi json description json
}```
# Closed Plugins
- https://instacart.com/.well-known/ai-plugin.json
- https://www.kayak.com/.well-known/ai-plugin.json
- https://opentable.com/.well-known/ai-plugin.json
- https://apim.expedia.com/.well-known/ai-plugin.json# Plugin Templates
ChatGPT Retrieval Plugin Template:
https://github.com/openai/chatgpt-retrieval-plugin