You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(aws): add --tool-call-parser and --chat-template flags for RHEL AI
Enable vLLM tool calling by adding --tool-call-parser and --chat-template
flags. When --tool-call-parser is set, --enable-auto-tool-choice is
automatically added. Chat template filename is resolved to /opt/app-root/template/.
Updated Tekton task template with new params.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: cmd/mapt/cmd/params/params.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -131,6 +131,8 @@ const (
131
131
RhelAIAutoStartDescstring="automatically configure and start RHAIIS after provisioning"
132
132
RhelAIExposePortsstring="expose-ports"
133
133
RhelAIExposePortsDescstring="comma-separated list of ports to expose through the load balancer and security group (e.g. 8000,8080)"
134
+
RhelAIVLLMExtraArgsstring="vllm-extra-args"
135
+
RhelAIVLLMExtraArgsDescstring="extra vLLM arguments appended to the RHAIIS Exec line (e.g. '--enable-auto-tool-choice --tool-call-parser llama3_json --max-model-len 16384')"
Copy file name to clipboardExpand all lines: tkn/infra-aws-rhel-ai.yaml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -155,6 +155,9 @@ spec:
155
155
- name: expose-ports
156
156
description: Comma-separated list of ports to expose through the load balancer and security group (e.g. 8000,8080).
157
157
default: ""
158
+
- name: vllm-extra-args
159
+
description: Extra vLLM arguments appended to the RHAIIS Exec line (e.g. '--enable-auto-tool-choice --tool-call-parser llama3_json --max-model-len 16384').
Copy file name to clipboardExpand all lines: tkn/template/infra-aws-rhel-ai.yaml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -155,6 +155,9 @@ spec:
155
155
- name: expose-ports
156
156
description: Comma-separated list of ports to expose through the load balancer and security group (e.g. 8000,8080).
157
157
default: ""
158
+
- name: vllm-extra-args
159
+
description: Extra vLLM arguments appended to the RHAIIS Exec line (e.g. '--enable-auto-tool-choice --tool-call-parser llama3_json --max-model-len 16384').
0 commit comments