diff --git a/gpt4all-chat/main.qml b/gpt4all-chat/main.qml index 4549ca17..fd343a83 100644 --- a/gpt4all-chat/main.qml +++ b/gpt4all-chat/main.qml @@ -206,12 +206,6 @@ Window { valueRole: "filename" textRole: "name" property string currentModelName: "" - Timer { - id: startupTimer - interval: 3000 // 3 seconds - running: true - repeat: false - } function updateCurrentModelName() { // During application startup the model names might not be processed yet, so don't // set the combobox text until this is done OR the timer has timed out @@ -220,6 +214,15 @@ Window { var info = ModelList.modelInfo(currentChat.modelInfo.filename); comboBox.currentModelName = info.name !== "" ? info.name : info.filename; } + Timer { + id: startupTimer + interval: 3000 // 3 seconds + running: true + repeat: false + onTriggered: { + comboBox.updateCurrentModelName(); + } + } Connections { target: ModelList function onModelHasNamesChanged() { diff --git a/gpt4all-chat/metadata/models.json b/gpt4all-chat/metadata/models.json index 537bcc8b..3fe931fe 100644 --- a/gpt4all-chat/metadata/models.json +++ b/gpt4all-chat/metadata/models.json @@ -10,16 +10,7 @@ "parameters": "13 billion", "quant": "q4_0", "type": "LLaMA", - "description": " - Best overall model -
- ", + "description": "Best overall model
", "url": "https://huggingface.co/TheBloke/Nous-Hermes-13B-GGML/resolve/main/nous-hermes-13b.ggmlv3.q4_0.bin" }, { @@ -33,15 +24,7 @@ "parameters": "7 billion", "quant": "q4_0", "type": "MPT", - "description": " - Best overall smaller model -
- " + "description": "Best overall smaller model
" }, { "order": "c", @@ -53,16 +36,7 @@ "parameters": "7 billion", "quant": "q4_0", "type": "GPT-J", - "description": " - Best overall for commercial usage -
- " + "description": "Best overall for commercial usage
" }, { "order": "d", @@ -75,16 +49,7 @@ "parameters": "13 billion", "quant": "q4_0", "type": "LLaMA", - "description": " - Very good overall model -
- ", + "description": "Very good overall model
", "url": "https://huggingface.co/TheBloke/GPT4All-13B-snoozy-GGML/resolve/main/GPT4All-13B-snoozy.ggmlv3.q4_0.bin" }, { @@ -97,13 +62,7 @@ "parameters": "7 billion", "quant": "q4_2", "type": "LLaMA", - "description": " - Good small model - trained by teams from UC Berkeley, CMU, Stanford, MBZUAI, and UC San Diego -
- " + "description": "Good small model - trained by teams from UC Berkeley, CMU, Stanford, MBZUAI, and UC San Diego
" }, { "order": "f", @@ -115,13 +74,7 @@ "parameters": "13 billion", "quant": "q4_2", "type": "LLaMA", - "description": " - Good larger model - trained by teams from UC Berkeley, CMU, Stanford, MBZUAI, and UC San Diego -
- " + "description": "Good larger model - trained by teams from UC Berkeley, CMU, Stanford, MBZUAI, and UC San Diego
" }, { "order": "g", @@ -133,13 +86,7 @@ "parameters": "7 billion", "quant": "q4_2", "type": "LLaMA", - "description": " - Good small model - trained by by Microsoft and Peking University -
- " + "description": "Good small model - trained by by Microsoft and Peking University
" }, { "order": "h", @@ -151,13 +98,7 @@ "parameters": "13 billion", "quant": "q4_2", "type": "LLaMA", - "description": " - Trained with RHLF by Stability AI -
- " + "description": "Trained with RHLF by Stability AI
" }, { "order": "i", @@ -170,14 +111,7 @@ "parameters": "7 billion", "quant": "q4_0", "type": "MPT", - "description": " - Mosaic's instruction model -
- " + "description": "Mosaic's instruction model
" }, { "order": "j", @@ -190,14 +124,7 @@ "parameters": "7 billion", "quant": "q4_0", "type": "MPT", - "description": " - Trained for text completion with no assistant finetuning -
- " + "description": "Trained for text completion with no assistant finetuning
" }, { "order": "k", @@ -209,14 +136,7 @@ "parameters": "13 billion", "quant": "q4_0", "type": "LLaMA", - "description": " - Trained on ~180,000 instructions -
- " + "description": "Trained on ~180,000 instructions
" }, { "order": "l", @@ -229,13 +149,7 @@ "parameters": "13 billion", "quant": "q4_0", "type": "LLaMA", - "description": " - Trained on uncensored assistant data and instruction data -
- ", + "description": "Trained on uncensored assistant data and instruction data
", "url": "https://huggingface.co/TheBloke/WizardLM-13B-Uncensored-GGML/resolve/main/wizardLM-13B-Uncensored.ggmlv3.q4_0.bin" }, { @@ -250,13 +164,7 @@ "parameters": "3 billion", "quant": "f16", "type": "Replit", - "description": " - Trained on subset of the Stack -
- ", + "description": "Trained on subset of the Stack
", "url": "https://huggingface.co/nomic-ai/ggml-replit-code-v1-3b/resolve/main/ggml-replit-code-v1-3b.bin" } ]