From d2064605bf7e6e18cb098875ff48caa866a9e549 Mon Sep 17 00:00:00 2001 From: Enrico Ros Date: Thu, 16 May 2024 04:14:41 -0700 Subject: [PATCH] Bits --- src/modules/llms/models-modal/ModelsList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/llms/models-modal/ModelsList.tsx b/src/modules/llms/models-modal/ModelsList.tsx index 379c8fa42..084d649e4 100644 --- a/src/modules/llms/models-modal/ModelsList.tsx +++ b/src/modules/llms/models-modal/ModelsList.tsx @@ -50,8 +50,8 @@ function ModelItem(props: { let tooltip = llm._source.label; if (llm.description) - tooltip += ' - ' + llm.description; - tooltip += ' - '; + tooltip += ' · ' + llm.description; + tooltip += ' · '; if (llm.contextTokens) { tooltip += llm.contextTokens.toLocaleString() + ' tokens'; if (llm.maxOutputTokens)