Connect plugins to AI
Project description
🎸 Plug and Plai
Plug and Plai is an open source library aiming to simplify the integration of AI plugins into open-source language models (LLMs).
It provides utility functions to get a list of active plugins from plugnplai.com directory, get plugin manifests, and extract OpenAPI specifications and load plugins.
Installation
You can install Plug and PlAI using pip:
pip install plugnplai
Quick Start Example
More Examples
Generate Prompt with Plugins Description:
Usage
Get a list of plugins
-
urls = get_plugins()
: Get a list of available plugins from a plugins repository. -
urls = get_plugins(filter = 'ChatGPT', category='dev')
: Use 'filter' or 'category' variables to query specific plugins
Example:
import plugnplai
# Get all plugins from plugnplai.com
urls = plugnplai.get_plugins()
# Get ChatGPT plugins - only ChatGPT verified plugins
urls = plugnplai.get_plugins(filter = 'ChatGPT')
# Get working plugins - only tested plugins (in progress)
urls = plugnplai.get_plugins(filter = 'working')
# Get plugins by category - only tested plugins (in progress)
urls = plugnplai.get_plugins(category = 'travel')
# Get the names list of categories
urls = plugnplai.get_category_names()
Utility Functions
Help to load the plugins manifest and OpenAPI specification
manifest = get_plugin_manifest(url)
: Get the AI plugin manifest from the specified plugin URL.specUrl = get_openapi_url(url, manifest)
: Get the OpenAPI URL from the plugin manifest.spec = get_openapi_spec(openapi_url)
: Get the OpenAPI specification from the specified OpenAPI URL.manifest, spec = spec_from_url(url)
: Returns the Manifest and OpenAPI specification from the plugin URL.
Example:
import plugnplai
# Get the Manifest and the OpenAPI specification from the plugin URL
manifest, openapi_spec = plugnplai.spec_from_url(urls[0])
Load Plugins
from plugnplai import Plugins
###### ACTIVATE A MAX OF 3 PLUGINS ######
# Context length limits the number of plugins you can activate,
# you need to make sure the prompt fits in your context lenght,
# still leaving space for the user message
# Initialize 'Plugins' by passing a list of urls, this function will
# load the plugins and build a default description to be used as prefix prompt
plugins = Plugins.install_and_activate(urls)
# Print the deafult prompt for the activated plugins
print(plugins.prompt)
# Print the number of tokens of the prefix prompt
print(plugins.tokens)
Example on installing (loading) all plugins, and activating a few later:
from plugnplai import Plugins
# If you just want to load the plugins, but activate only
# some of them later use Plugins(urls) instead
plugins = Plugins(urls)
# Print the names of installed plugins
print(plugins.list_installed)
# Activate the plugins you want
plugins.activate(name1)
plugins.activate(name2)
plugins.activate(name3)
# Deactivate the last plugin
plugins.deactivate(name3)
Prompt and Tokens Counting
The plugins.prompt
attribute contains a prompt with descriptions of the active plugins.
The plugins.tokens
attribute contains the number of tokens in the prompt.
For example:
plugins = Plugins.install_and_activate(urls)
print(plugins.prompt)
print(plugins.tokens)
This will print the prompt with plugin descriptions and the number of tokens.
Parse LLM Response for API Tag
The parse_llm_response()
function parses an LLM response searching for API calls. It looks for the <API>
pattern defined in the plugins.prompt
and extracts the plugin name, operation ID, and parameters.
Call API
The call_api()
function calls an operation in an active plugin. It takes the plugin name, operation ID, and parameters extracted by parse_llm_response()
and makes a request to the plugin API.
Apply Plugins
The @plugins.apply_plugins
decorator can be used to easily apply active plugins to an LLM function. To use it:
- Import the Plugins class and decorator:
from plugnplai import Plugins, plugins.apply_plugins
- Define your LLM function, that necessarily takes a string (the user input) as the first argument and returns a string (the response):
@plugins.apply_plugins
def call_llm(user_input):
...
return response
- The decorator will handle the following:
- Prepending the prompt (with plugin descriptions) to the user input
- Checking the LLM response for API calls (the ... pattern)
- Calling the specified plugins
- Summarizing the API calls in the LLM response
- Calling the LLM function again with the summary to get a final response
- If no API calls are detected, the original LLM response is returned.
To more details on the implementation of these steps, see example "Step by Step":
Plugins Retrieval
from plugnplai import PluginRetriever
# Initialize the plugins retriever vector database and index the plugins descriptions.
# Loading the plugins from plugnplai.com directory
plugin_retriever = PluginRetriever.from_directory()
# Retrieve the names of the plugins given a user's message
plugin_retriever.retrieve_names("what shirts can i buy?")
Contributing
Plug and Plai is an open source library, and we welcome contributions from the entire community. If you're interested in contributing to the project, please feel free to fork, submit pull requests, report issues, or suggest new features.
To dos
- [Load] Define a default object to read plugins - use LangChain standard? (for now using only manifest and specs jsons)
- [Load] Fix breaking on reading certain plugins specs
- [Load] Accept different specs methods and versions (param, query, body)
- [Prompt] Build a utility function to return a default prompts for a plugin
- [Prompt] Fix prompt building for body (e.g. "Speak")
- [Prompt] Build a utility function to return a default prompts for a set of plugins
- [Prompt] Build a utility function to count tokens of the plugins prompt
- [Prompt] Use the prompt tokens number to short or expand a plugin prompt, use LLM to summarize the prefix prompt
- [CallAPI] Build a function to call API given a dictionary of parameters
- [CallAPI] Add example for calling API
- [Embeddings] Add filter option (e.g. "working", "ChatGPT") to "PluginRetriever.from_directory()"
- [Docs] Add Sphynx docs
- [Verification] Build automated tests to verify new plugins
- [Verification] Build automated monitoring for working plugins
- [Website] Build an open-source website
Project Roadmap
- Build auxiliary functions that helps everyone to use plugins as defined by OpenAI
- Build in compatibility with different open-source formats (e.g. LangChain, BabyAGI, etc)
- Find a best prompt format for plugins, optimizing for token number and description completness
- Build a dataset to finetune open-source models to call plugins
- Finetune an open-source model to call plugins
- Help with authentication
- Etc.
Links
- Plugins directory: https://plugnplai.com/
- API reference: https://plugnplai.github.io/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file plugnplai-0.0.20.tar.gz
.
File metadata
- Download URL: plugnplai-0.0.20.tar.gz
- Upload date:
- Size: 23.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.9.13 Linux/5.15.0-67-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e333465df5a9cef3e533ce7f4e139c641de5451f2696f53528b51556ceae3c5f |
|
MD5 | e2554f1d5df42259ee9de577481cf624 |
|
BLAKE2b-256 | 4c540dd7af0130c89240eadfccdff7ca64a90914b014c7c52ff44657b7c4a4de |
File details
Details for the file plugnplai-0.0.20-py3-none-any.whl
.
File metadata
- Download URL: plugnplai-0.0.20-py3-none-any.whl
- Upload date:
- Size: 23.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.2 CPython/3.9.13 Linux/5.15.0-67-generic
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0278b3a2cce6330e8db379edf06ba99ca7e10656e2ba300ed418405cc01447f0 |
|
MD5 | b25e2ee89de5f0078d00a6089cd0f26c |
|
BLAKE2b-256 | ba0975b76fa7c507cd26a36d1f458ee1a77876e0aa2c5c1cea87d90d28dd20bb |