Skip to content

Commit

Permalink
PreRelease(LLMLingua): fix the license (#32)
Browse files Browse the repository at this point in the history
Co-authored-by: Qianhui Wu <[email protected]>
Co-authored-by: Xufang Luo <[email protected]>
  • Loading branch information
3 people authored Dec 21, 2023
1 parent df3ec16 commit bf6723c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 1 deletion.
2 changes: 2 additions & 0 deletions llmlingua/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Copyright (c) 2023 Microsoft
# Licensed under The MIT License [see LICENSE for details]
# flake8: noqa
from .prompt_compressor import PromptCompressor
from .version import VERSION as __version__
Expand Down
3 changes: 3 additions & 0 deletions llmlingua/prompt_compressor.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Microsoft
# Licensed under The MIT License [see LICENSE for details]

import bisect
from collections import defaultdict
from typing import List
Expand Down
5 changes: 4 additions & 1 deletion llmlingua/version.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Copyright (c) 2023 Microsoft
# Licensed under The MIT License [see LICENSE for details]

_MAJOR = "0"
_MINOR = "1"
# On master and in a nightly release the patch should be one ahead of the last
# released build.
_PATCH = "4"
_PATCH = "5"
# 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
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# Copyright (c) 2023 Microsoft
# Licensed under The MIT License [see LICENSE for details]

from setuptools import find_packages, setup

# PEP0440 compatible formatted version, see:
Expand Down

0 comments on commit bf6723c

Please sign in to comment.