Skip to content

Commit

Permalink
fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
weilirs committed Nov 7, 2024
1 parent f353ed2 commit a7fc515
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ const EmbeddingModelSelect: React.FC<EmbeddingModelSelectProps> = ({
{Object.entries(embeddingModels).map(([model, config]) => (
<SelectItem key={model} value={model}>
<div>
<div>{model}</div>
<div className="text-xs text-gray-400">{config.type}</div>
<div>{config.readableName || model}</div>
<div className="text-xs text-gray-400">{config.description}</div>
</div>
</SelectItem>
))}
Expand Down

0 comments on commit a7fc515

Please sign in to comment.