Live data from Hacker News

Your website's content -> Q&A bot / chatbot

github.com

1–10 of 28 posts

Re: Your website's content -> Q&A bot / chatbot

#2
Nice to have tools like this to wrap up features, definitely makes these types of solutions more accessible, thanks!

It would be nice to know from your experience if there is a kind of rule of thumb for calculating cost of fine tuning and running a solution like this against a docs site?

Re: Your website's content -> Q&A bot / chatbot

#4
Awesome!

Are you planning on adding agent/tools support?

It would be cool to use this with internal data, then allow clients to chat with a bot fine-tunes on their data, but that can also run queries, or get reports for specific dates, or charts, all via tools.

Re: Your website's content -> Q&A bot / chatbot

#9
Reading the readme makes me think it's only searching the top 4 most likely docs via the embeddings, not the wiki at any time? or am I misunderstanding how this works? With embeddings being close to just term vector matching via dot(?) product?

So basically get all the sub-prhases/sounds -> vector -> check vector db for closest matching documents -> send to gpt for summarization and answering the quetsion.

If that's ture wouldn't that have severe limitations with scattered information? I guess it would help you get answers and walk the data better than the "I don't even know the term" problem with google?

Re: Your website's content -> Q&A bot / chatbot

#10

Reading the readme makes me think it's only searching the top 4 most likely docs via the embeddings, not the wiki at any time? or am I misunderstanding how this works? With embeddings being close to just term vector matching via dot(?) product? So basically get all the sub-prhases/sounds -> vector -> check vector db for closest matching documents -> send to gpt for summarization and answering the quetsion. If that's…

They probably took this approach because it's the only thing you can do with the OpenAI APIs (for now). Training your own corpus will be the way to go once it's possible.
Post reply on HN