Skip to content

Commit bf6723c

Browse files
iofu728QianhuiWuXufangLuo
authored
PreRelease(LLMLingua): fix the license (#32)
Co-authored-by: Qianhui Wu <wuqh_thu@foxmail.com> Co-authored-by: Xufang Luo <34053802+XufangLuo@users.noreply.github.com>
1 parent df3ec16 commit bf6723c

File tree

4 files changed

+12
-1
lines changed

4 files changed

+12
-1
lines changed

llmlingua/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# Copyright (c) 2023 Microsoft
2+
# Licensed under The MIT License [see LICENSE for details]
13
# flake8: noqa
24
from .prompt_compressor import PromptCompressor
35
from .version import VERSION as __version__

llmlingua/prompt_compressor.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023 Microsoft
2+
# Licensed under The MIT License [see LICENSE for details]
3+
14
import bisect
25
from collections import defaultdict
36
from typing import List

llmlingua/version.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
# Copyright (c) 2023 Microsoft
2+
# Licensed under The MIT License [see LICENSE for details]
3+
14
_MAJOR = "0"
25
_MINOR = "1"
36
# On master and in a nightly release the patch should be one ahead of the last
47
# released build.
5-
_PATCH = "4"
8+
_PATCH = "5"
69
# This is mainly for nightly builds which have the suffix ".dev$DATE". See
710
# https://semver.org/#is-v123-a-semantic-version for the semantics.
811
_SUFFIX = ""

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) 2023 Microsoft
2+
# Licensed under The MIT License [see LICENSE for details]
3+
14
from setuptools import find_packages, setup
25

36
# PEP0440 compatible formatted version, see:

0 commit comments

Comments
 (0)