diff --git a/my-config.pbtxt b/my-config.pbtxt new file mode 100644 index 0000000..c6001f8 --- /dev/null +++ b/my-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 + } +] \ No newline at end of file