diff --git a/src/pages/llmodels/components/table-list.tsx b/src/pages/llmodels/components/table-list.tsx index 6503bff7..4add68a5 100644 --- a/src/pages/llmodels/components/table-list.tsx +++ b/src/pages/llmodels/components/table-list.tsx @@ -328,6 +328,20 @@ const Models: React.FC = ({ key="name" width={400} span={5} + render={(text, record: ListItem) => { + return ( + + {text} + + {record.embedding_only && ( + + Embedding Only + + )} + + + ); + }} /> = ({ ? `${modelSourceMap.huggingface} / ${record.huggingface_filename}` : `${modelSourceMap.ollama_library} / ${record.ollama_library_model_name}`} - - {record.embedding_only && ( - Embedding Only - )} - ); }}