This commit is contained in:
OlivierDehaene 2024-03-22 18:44:05 +01:00 committed by Karol Damaszke
parent da4199ed97
commit 6ac93d8f28
10 changed files with 13 additions and 13 deletions

8
Cargo.lock generated
View File

@ -2960,7 +2960,7 @@ dependencies = [
[[package]]
name = "text-generation-benchmark"
version = "1.4.3"
version = "1.4.4"
dependencies = [
"average",
"clap",
@ -2981,7 +2981,7 @@ dependencies = [
[[package]]
name = "text-generation-client"
version = "1.4.3"
version = "1.4.4"
dependencies = [
"futures",
"grpc-metadata",
@ -2998,7 +2998,7 @@ dependencies = [
[[package]]
name = "text-generation-launcher"
version = "1.4.3"
version = "1.4.4"
dependencies = [
"clap",
"ctrlc",
@ -3014,7 +3014,7 @@ dependencies = [
[[package]]
name = "text-generation-router"
version = "1.4.3"
version = "1.4.4"
dependencies = [
"async-stream",
"axum",

View File

@ -9,7 +9,7 @@ members = [
resolver = "2"
[workspace.package]
version = "1.4.3"
version = "1.4.4"
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.3"
"version": "1.4.4"
},
"paths": {
"/": {

View File

@ -17,7 +17,7 @@
"id": "",
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"object": "text_completion",
"system_fingerprint": "1.4.3-native",
"system_fingerprint": "1.4.4-native",
"usage": {
"completion_tokens": 100,
"prompt_tokens": 60,

View File

@ -31,7 +31,7 @@
"id": "",
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"object": "text_completion",
"system_fingerprint": "1.4.3-native",
"system_fingerprint": "1.4.4-native",
"usage": {
"completion_tokens": 29,
"prompt_tokens": 316,

View File

@ -31,7 +31,7 @@
"id": "",
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"object": "text_completion",
"system_fingerprint": "1.4.3-native",
"system_fingerprint": "1.4.4-native",
"usage": {
"completion_tokens": 29,
"prompt_tokens": 316,

View File

@ -30,7 +30,7 @@
"id": "",
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"object": "text_completion",
"system_fingerprint": "1.4.3-native",
"system_fingerprint": "1.4.4-native",
"usage": {
"completion_tokens": 21,
"prompt_tokens": 187,

View File

@ -23,5 +23,5 @@
"id": "",
"model": "TinyLlama/TinyLlama-1.1B-Chat-v1.0",
"object": "text_completion",
"system_fingerprint": "1.4.3-native"
"system_fingerprint": "1.4.4-native"
}

View File

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

View File

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