For most use cases, web search engines are fine. But I am wondering if there are alternative ways to finding information. There is also the enshittification of google and tbh most(free) search engines just give google search result
Obviously, the straight answer is just asking other people, in person or online, in general forums or specialised communities
Libraries are good source too but for those of is that don’t have access to physical libraries, there free online public libraries(I will post the links for those that I found below)
Books in general, a lot of them have reference to outside materials.
So, I been experimenting with an AI chat bot(Le chat), partially as life coach of sorts and partially as a fine tuned web search engine. To cut to the chase, its bad. when its not just listing google top results it list tools that are long gone or just makes shit up. I was hoping it to be a fine tuned search engine, cuz with google, if what you want is not in the top 10 websites, your on your own.
So yeah, that all I can think of. Those are all the routes I can think of for finding information and probably all there is but maybe I missed some other routes.


Even local models are trained on stolen art and content. That’s the immoral part.
No one seems to get this part.
There’s many models that use open source training sets and weights. You can choose them.
AI models aren’t trained on anything “stolen”. When you steal something, the original owner doesn’t have it anymore. That’s not being pedantic, it’s the truth.
Also, if you actually understand how AI training works, you wouldn’t even use this sort of analogy in the first place. It’s so wrong it’s like describing a Flintstones car and saying that’s how automobiles work.
Let’s say you wrote a book and I used it as part of my AI model (LLM) training set. As my code processes your novel, token-by-token (not word-by-word!), it’ll increase or decrease a floating point value by something like 0.001. That’s it. That’s all that’s happening.
To a layman, that makes no sense whatever but it’s the truth. How can a huge list of floating point values be used to generate semi-intelligent text? That’s the actually really fucking complicated part.
Before you can even use a model you need to tokenize the prompt and then perform an inference step which then gets processed a zillion ways before that .safetensors file (which is the AI model) gets used at all.
When an AI model is outputting text, it’s using a random number generator in conjunction with a word prediction algorithm that’s based on the floating point values inside the model. It doesn’t even “copy” anything. It’s literally built upon the back of an RNG!
If an LLM successfully copies something via it’s model that is just random chance. The more copies of something that went into its training, the higher the chance of it happening (and that’s considered a bug, not a feature).
There’s also a problem that can occur on the opposite end: When a single set of tokens gets associated with just one tiny bit of the training set. That’s how you can get it to output the same thing relatively consistently when given the same prompt (associated with that set of tokens). This is also considered a bug and AI researchers are always trying to find ways to prevent this sort of thing from happening.