brianpetro / obsidian-smart-connections

Chat with your notes & see links to related content with AI embeddings. Use local models or 100+ via APIs like Claude, Gemini, ChatGPT & Llama 3
https://smartconnections.app
GNU General Public License v3.0
2.5k stars 172 forks source link

Two problems need improvement #567

Open liuling73 opened 4 months ago

liuling73 commented 4 months ago

Thank you for constantly upgrading the plugin. I have two questions that I don't understand.

  1. The layout is best to place the current title on top of the icon to avoid white space, as shown in the figure.

  2. The quality of the smart key is very poor, and no related content is more than 90% similar. My Settings are as shown below, and all the cards are Chinese content.

image

image

liuling73 commented 4 months ago

A blank area is displayed as shown in the figure

image

brianpetro commented 4 months ago

Hi @liuling73

For the high similarity issue, I recommend trying the bilingual Jina model:

Screenshot 2024-04-26 at 11 36 17 PM

And thanks for bringing the UI issue to my attention. Unfortunately, there isn't an easy fix right now.

However, you can add this code to your CSS snippets to limit the file height to reduce the whitespace:

.sc-context {
  max-height: var(--input-height);
  overflow: hidden;
}

🌴