mirror of
https://github.com/microsoft/LLMLingua.git
synced 2024-01-23 02:05:46 +03:00
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:
@@ -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__
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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 = ""
|
||||
|
||||
Reference in New Issue
Block a user