this post was submitted on 18 Apr 2025
5 points (61.9% liked)

Asklemmy

47561 readers
1187 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_A@discuss.tchncs.de~

founded 6 years ago
MODERATORS
 

What service can I use to ask questions about my database of blog posts? "Tell me everything you know about Grideon, my fictional character" etc

you are viewing a single comment's thread
view the rest of the comments
[โ€“] scrubbles@poptalk.scrubbles.tech 4 points 3 days ago (1 children)

I understand conceptually how these work, but I have a hard time of how to get started . I have the model, I know embeddings exist and what they are, and rags, and vector dbs, and then I have my SQL DB. I just don't know what the steps are.

Do you have any guides you recommend?

[โ€“] Danitos@reddthat.com 2 points 2 days ago (1 children)

Milvus documentation has a nice example: link. After this, you just need to use a persistent Milvus DB, instead of the ephimeral one in the documentation.

Let me know if you have further questions.

[โ€“] scrubbles@poptalk.scrubbles.tech 2 points 2 days ago (1 children)

That's a great start! A lot of it depends on OpenAI, is there any guide you know of that lets me run completely locally? I use TabbyAPI for most of my inference, and happy to run anything else for training

[โ€“] Danitos@reddthat.com 1 points 2 days ago* (last edited 2 days ago) (1 children)

It would work the same way, you would just need to connect with your local model. For example, change the code to find the embeddings with your local model, and store that in Milvus. After that, do the inference calling your local model.

I've not used inference with local API, can't help with that, but for embeddings, I used this model and it worked quite fast, plus was a top2 model in Hugging Face. Leaderboard. Model.

I didn't do any training, just simple embed+interference.

Ah okay, I think that makes sense. Thanks for your input! I'll give it a whirl