triton-python-model/config.pbtxt

36 lines
393 B
Plaintext

# Triton backend to use
backend: "openvino"
platform: "openvino_ov"
max_batch_size: 0
input [
{
name: "text_input"
data_type: TYPE_STRING
dims: [ -1 ]
},
{
name: "stream"
data_type: TYPE_BOOL
dims: [ 1 ]
}
]
output [
{
name: "text_output"
data_type: TYPE_STRING
dims: [ -1 ]
}
]
instance_group [
{
kind: KIND_AUTO
count: 1
}
]