Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 8 additions & 17 deletions chart/azimuth-ui.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,24 +5,15 @@ controls:
/huggingface/token:
type: TextControl
secret: true
/ui/appSettings/hf_model_instruction:
type: TextControl
/ui/appSettings/page_title:
type: TextControl
/ui/appSettings/llm_max_tokens:
type: NumberControl
/ui/appSettings/llm_temperature:
type: NumberControl
/ui/appSettings/llm_top_p:
type: NumberControl
/ui/appSettings/llm_frequency_penalty:
type: NumberControl
/ui/appSettings/llm_presence_penalty:
type: NumberControl
/ui/ingress/host:
type: TextControl
# Use mirror to mimic yaml anchor in base Helm chart
/ui/appSettings/hf_model_name:
type: MirrorControl
path: /huggingface/model
visuallyHidden: true
visuallyHidden: true

sortOrder:
- /huggingface/model
- /huggingface/token
- /ui/appSettings/hf_model_instruction
- /ui/appSettings/page_title
- /ui/appSettings/llm_temperature
14 changes: 2 additions & 12 deletions chart/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
"type": "string",
"title": "Model",
"description": "The [HuggingFace model](https://huggingface.co/models) to deploy (see [here](https://github.com/stackhpc/azimuth-llm?tab=readme-ov-file#tested-models) for a list of tested models).",
"default": "mistralai/Mistral-7B-Instruct-v0.2"
"default": "ise-uiuc/Magicoder-S-DS-6.7B"
},
"token": {
"type": ["string", "null"],
"title": "Access Token",
"description": "A HuggingFace [access token](https://huggingface.co/docs/hub/security-tokens). Only required for [gated models](https://huggingface.co/docs/hub/en/models-gated) (e.g. Llama 2)."
"description": "A HuggingFace [access token](https://huggingface.co/docs/hub/security-tokens). Required for [gated models](https://huggingface.co/docs/hub/en/models-gated) (e.g. Llama 3)."
}
},
"required": ["model"]
Expand Down Expand Up @@ -90,16 +90,6 @@

},
"required": ["hf_model_name", "hf_model_instruction"]
},
"ingress": {
"type": "object",
"properties": {
"host": {
"type": ["string", "null"],
"title": "Ingress Host",
"description": "An optional custom domain name to expose the UI on (requires an [Ingress controller](https://github.com/kubernetes/ingress-nginx) on the target cluster)"
}
}
}
}
}
Expand Down