Skip to content

Commit

Permalink
init v0.0.8
Browse files Browse the repository at this point in the history
init v0.0.8
  • Loading branch information
huangshiyu13 authored Aug 17, 2023
2 parents 1630ed8 + 5ede0c6 commit 7938bce
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,9 @@ format:
isort ${PYTHON_FILES}
black ${PYTHON_FILES} --preview

pypi:
./scripts/pypi_build.sh

pypi-test-upload:
twine upload dist/* -r testpypi

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@

[[demo video](https://youtu.be/QByu8i9zO04)] | [[bilibili video](https://www.bilibili.com/video/BV1AM4y1s7Qu)]

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`.

## Installation
Expand Down
2 changes: 1 addition & 1 deletion openplugin/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@


__TITLE__ = "openplugin"
__VERSION__ = "v0.0.7"
__VERSION__ = "v0.0.8"
__DESCRIPTION__ = "Toolkit and Collection for Plugins of Large Language Models"
__AUTHOR__ = "OpenRL Contributors"
__EMAIL__ = "[email protected]"
Expand Down
5 changes: 5 additions & 0 deletions scripts/pypi_build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

rm -r ./dist/
rm -r ./build/
python -m build

0 comments on commit 7938bce

Please sign in to comment.