From 3fa0e197f9c5bec6e86dc807045c806820a33b2f Mon Sep 17 00:00:00 2001 From: groupuser Date: Wed, 17 Sep 2025 01:06:57 +0000 Subject: [PATCH] Automatically created by CHEETAH --- config.pbtxt | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 config.pbtxt diff --git a/config.pbtxt b/config.pbtxt new file mode 100644 index 0000000..1476d27 --- /dev/null +++ b/config.pbtxt @@ -0,0 +1,36 @@ +# Triton backend to use +name: "triton-python-backend-model" +backend: "python" +max_batch_size: 0 + +input [ + { + name: "INPUT" + data_type: TYPE_STRING + dims: [ 1 ] + } +] + +output [ + { + name: "OUTPUT" + data_type: TYPE_STRING + dims: [ 1 ] + } +] + + +parameters: [ + { + key: "model_path", + value: {string_value: "/cheetah/input/model/groupuser/triton-python-backend-model"} + } +] + + +instance_group [ + { + kind: KIND_AUTO + count: 1 + } +]