|
|
|
|
|
by FeepingCreature
1067 days ago
|
|
Well, you can train the LLM to "provide source", but LLMs are prone to hallucination. You run into the same problem with a trainer model; the trainer also has no way to confirm where the model actually got the answer from. One thing that may work is a fundamental architectural shift where the LLM looks up all its info as it needs it, and then you can just list the sources it actually used. Microsoft tried that with Bing, but it turns out the model will search for a website, read it, and then ignore what the website says and claim "according to this website, <some other belief>". So it's definitely not easy at any rate. |
|
In operation, the "trainer" could do the same thing in the background. And then of course, human users could also check up on the sources if they need to be sure of catching hallucinations.