We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b57dc7 commit 4f126a9Copy full SHA for 4f126a9
chart/azimuth-ui.schema.yaml
@@ -15,6 +15,8 @@ controls:
15
# constrain to (optional) integer here.
16
/api/modelMaxContextLength:
17
type: IntegerControl
18
+ minimum: 100
19
+ step: 100
20
required: false
21
22
sortOrder:
chart/templates/api/deployment.yml
@@ -31,7 +31,7 @@ spec:
31
{{- include "azimuth-llm.chatTemplate" . | nindent 10 }}
32
{{- if .Values.api.modelMaxContextLength -}}
33
- --max-model-len
34
- - {{ .Values.api.modelMaxContextLength }}
+ - {{ .Values.api.modelMaxContextLength | quote }}
35
{{- end -}}
36
{{- if .Values.api.extraArgs -}}
37
{{- .Values.api.extraArgs | toYaml | nindent 10 }}
0 commit comments