Skip to content

Commit

Permalink
Bits
Browse files Browse the repository at this point in the history
  • Loading branch information
enricoros committed May 16, 2024
1 parent 05aa4b5 commit d206460
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/llms/models-modal/ModelsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit d206460

Please sign in to comment.