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>
This commit is contained in:
Huiqiang Jiang
2023-12-21 16:54:53 +08:00
committed by GitHub
parent df3ec16d69
commit bf6723c3ec
4 changed files with 12 additions and 1 deletions

View File

@@ -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__

View File

@@ -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

View File

@@ -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 = ""

View File

@@ -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: