Automatically created by CHEETAH

This commit is contained in:
groupuser 2025-10-16 06:43:09 +00:00
parent 60c329504a
commit 39866d397c

91
config.pbtxt Normal file

@ -0,0 +1,91 @@
# Triton backend to use
name: "Llama-3.2-1B-Instruct"
backend: "python"
max_batch_size: 0
# Triton should expect as input a single string
# input of variable length named 'text_input'
input [
{
name: "INPUT0"
data_type: TYPE_FP64
dims: [ 1, 1, 1, 1 ]
reshape {
shape: [ 11, 11, 11 ]
}
},
{
name: "INPUT1"
data_type: TYPE_INT64
dims: [ 2, 2, 2, 2 ]
reshape {
shape: [ 22, 22, 22 ]
}
}
]
# Triton should expect to respond with a single string
# output of variable length named 'text_output'
output [
{
name: "OUTPUT0"
data_type: TYPE_FP64
dims: [ 1, 100 ]
reshape {
shape: [ 100 ]
}
},
{
name: "OUTPUT1"
data_type: TYPE_BOOL
dims: [ 1 ]
},
{
name: "text_output"
data_type: TYPE_STRING
dims: [ -1 ]
}
]
parameters: [
{
key: "base_model_path",
value: {string_value: "/cheetah/input/model/groupuser/Llama-3.2-1B-Instruct"}
},
{
key: "is_adapter_model",
value: {string_value: "false"}
},
{
key: "adapter_model_path",
value: {string_value: ""}
},
{
key: "quantization",
value: {string_value: "none"}
}
]
instance_group [
{
kind: KIND_AUTO
count: 1
}
]