Skip to content

Commit

Permalink
Feature(LLMLingua): update pypi information
Browse files Browse the repository at this point in the history
  • Loading branch information
iofu728 committed Oct 8, 2023
1 parent b917a05 commit b44fd13
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -396,4 +396,8 @@ FodyWeavers.xsd

# JetBrains Rider
*.sln.iml
*.egg-info
*.egg-info

# build
build/*
dist/*
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ If you find this repo helpful, please cite the following paper:
Install LLMLingua,

```bash
pip install -e .
pip install llmlingua
```

Then, you can use LLMLingua to compress your prompt,
Expand Down
2 changes: 1 addition & 1 deletion llmlingua/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
_MINOR = "1"
# On master and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "0"
_PATCH = "1"
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
# https://semver.org/#is-v123-a-semantic-version for the semantics.
_SUFFIX = ""
Expand Down
9 changes: 7 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,14 @@
setup(
name="llmlingua",
version=VERSION["VERSION"],
description="An open-source prompt compression library for black-box LLMs like ChatGPT.",
author="The LLMLingua team",
author_email="[email protected]",
description="To speed up LLMs' inference and enhance LLM's perceive of key information, compress the prompt and KV-Cache, which achieves up to 20x compression with minimal performance loss.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords="Prompt Compression, LLMs, Inference Acceleration, Black-box LLMs, Efficient LLMs",
license="MIT License",
url="https://github.com/microsoft/LLMLingua",
classifiers=[
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
Expand All @@ -53,6 +58,6 @@
},
install_requires=INSTALL_REQUIRES,
include_package_data=True,
python_requires=">=3.7.0",
python_requires=">=3.8.0",
zip_safe=False,
)

0 comments on commit b44fd13

Please sign in to comment.