This commit is contained in:
OlivierDehaene 2024-02-21 14:50:57 +01:00 committed by Karol Damaszke
parent a461257066
commit e7183c2c03
6 changed files with 15 additions and 15 deletions

20
Cargo.lock generated
View File

@ -1654,9 +1654,9 @@ dependencies = [
[[package]]
name = "num"
version = "0.4.1"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b05180d69e3da0e530ba2a1dae5110317e49e3b7f3d41be227dc5f92e49ee7af"
checksum = "3135b08af27d103b0a51f2ae0f8632117b7b185ccf931445affa8df530576a41"
dependencies = [
"num-bigint",
"num-complex",
@ -2961,7 +2961,7 @@ dependencies = [
[[package]]
name = "text-generation-benchmark"
version = "1.4.1"
version = "1.4.2"
dependencies = [
"average",
"clap",
@ -2982,7 +2982,7 @@ dependencies = [
[[package]]
name = "text-generation-client"
version = "1.4.1"
version = "1.4.2"
dependencies = [
"futures",
"grpc-metadata",
@ -2999,7 +2999,7 @@ dependencies = [
[[package]]
name = "text-generation-launcher"
version = "1.4.1"
version = "1.4.2"
dependencies = [
"clap",
"ctrlc",
@ -3015,7 +3015,7 @@ dependencies = [
[[package]]
name = "text-generation-router"
version = "1.4.1"
version = "1.4.2"
dependencies = [
"async-stream",
"axum",
@ -3684,9 +3684,9 @@ dependencies = [
[[package]]
name = "uuid"
version = "1.7.0"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "valuable"
@ -4129,9 +4129,9 @@ dependencies = [
[[package]]
name = "zeroize"
version = "1.7.0"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
checksum = "63381fa6624bf92130a6b87c0d07380116f80b565c42cf0d754136f0238359ef"
[[package]]
name = "zip"

View File

@ -9,7 +9,7 @@ members = [
resolver = "2"
[workspace.package]
version = "1.4.1"
version = "1.4.2"
edition = "2021"
authors = ["Olivier Dehaene"]
homepage = "https://github.com/huggingface/text-generation-inference"

View File

@ -10,7 +10,7 @@
"name": "Apache 2.0",
"url": "https://www.apache.org/licenses/LICENSE-2.0"
},
"version": "1.4.1"
"version": "1.4.2"
},
"paths": {
"/": {

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "text-generation-integration-tests"
version = "1.4.1"
version = "1.4.2"
description = "Text Generation Inference integration tests"
authors = ["Nicolas Patry <nicolas@huggingface.co>"]

View File

@ -299,7 +299,7 @@ async fn main() -> Result<(), RouterError> {
let compat_return_full_text = match &model_info.pipeline_tag {
None => {
tracing::warn!("no pipeline tag found for model {tokenizer_name}");
false
true
}
Some(pipeline_tag) => pipeline_tag.as_str() == "text-generation",
};

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "text-generation-server"
version = "1.4.1"
version = "1.4.2"
description = "Text Generation Inference Python gRPC Server"
authors = ["Olivier Dehaene <olivier@huggingface.co>"]