|
|
|
Looking to build a personalized AI for myself. Any resources?
|
|
23 points
by eerop
816 days ago
|
|
Hey, I'm looking to create a personalized AI for myself in the context of me in an online community. I spend a lot of time in an online community, and I'd like to have a personalized AI to help me with communicating there. I want to have the AI know all the members there and give me ideas for conversation topics. I know I could probably do this with ChatGPT, but I'm wondering if there's a specific solution built for this. Thanks! |
|
What you write to the LLM might be "give me a conversation topic I might have with a member of the community", and your vector DB will have a bunch of things like "Dumbledore is a member of the community. Dumbledore likes to talk about magic". In theory the vector DB search will turn that up, and then it gets stuffed into the prompt so what actually goes to the LLM is something more like "You are a helpful AI assistant. Dumbledore is a member of the community. Dumbledore likes to talk about magic. give me a conversation topic I might have with a member of the community".
The heavy lifting will then be collecting and storing all of the data that goes into the vector DB.