[demo video] | [bilibili video]
OpenPlugin-v0.0.8 is updated on Aug 17, 2023
Toolkit for managing plugins of Large Language Model (LLM). You can install, uninstall, run and list plugins with op
.
pip install openplugin-py
(or clone this repo andpip install -e .
).
We provide plugins in Plugin Store. Users can download these plugins and use them with op
.
- Check OpenPlugin's version with:
op --version
- Check system information:
op --system_info
- Install a plugin:
op install <plugin_name>
. You can also install local plugins withop install .
.- You can also install a plugin from a zip file:
op install <zip_file_path>
.
- You can also install a plugin from a zip file:
- Uninstall a plugin:
op uninstall <plugin_name>
- Start a plugin:
op run <plugin_name>
. You can use-p
to specify the port of the plugin. By default, the port is 5003. You can also run a local plugin withop run ./
. - List installed plugins:
op list
- Reinstall plugin:
op reinstall <plugin_name>
- Install QRcode_plugin:
op install QRcode_plugin
- Or You can install QRcode_plugin from local:
- Go to the directory of QRcode_plugin:
cd plugins/QRcode_plugin
- Install QRcode_plugin:
op install .
- Go to the directory of QRcode_plugin:
- Or you can install QRcode_plugin from a zip file:
op install QRcode_plugin.zip
- Start QRcode_plugin:
op run QRcode_plugin -p server_port
- Or you can start QRcode_plugin from local:
- Go to the directory of QRcode_plugin:
cd plugins/QRcode_plugin
- Start QRcode_plugin:
op run ./ -p server_port
- Go to the directory of QRcode_plugin:
- Then you can get the
ai-plugin.json
file via visitinghttp://<server_ip>:server_port/ai-plugin.json
- You can get the
openaip.yaml
file via visitinghttp://<server_ip>:server_port/openaip.yaml
We provide some source codes of plugins. You can find them in plugins. We call for contributions of plugins. You can fork our repo, add your plugin into plugins and submit a Pull Request.
If our work has been helpful to you, please feel free to cite us:
@misc{openplugin2023,
title={OpenPlugin},
author={OpenRL Contributors},
publisher = {GitHub},
howpublished = {\url{https://github.com/OpenRL-Lab/OpenPlugin}},
year={2023},
}