diff --git a/chart/azimuth-ui.schema.yaml b/chart/azimuth-ui.schema.yaml index aab0c44..929e7ef 100644 --- a/chart/azimuth-ui.schema.yaml +++ b/chart/azimuth-ui.schema.yaml @@ -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 \ No newline at end of file + visuallyHidden: true + +sortOrder: + - /huggingface/model + - /huggingface/token + - /ui/appSettings/hf_model_instruction + - /ui/appSettings/page_title + - /ui/appSettings/llm_temperature diff --git a/chart/values.schema.json b/chart/values.schema.json index 3cbace1..309a9fa 100644 --- a/chart/values.schema.json +++ b/chart/values.schema.json @@ -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"] @@ -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)" - } - } } } }