| ▲ | laurowyn 7 hours ago | |||||||
> Why does AI need that folder structure? Why not a flat list of files and let the AI agent explore with BM25 / grep, etc. It doesn't. The human creating the files needs it, to make it easier to traverse in future as the file count grows. At 52k files, that's a horrendous list to scroll through to find the thing you're looking for. Meanwhile, an AI can just `find . -type f -exec whatever {} \;` and be able to process it however it needs. Human doesn't need to change the way they work to appease the magic rock in the box under the desk. | ||||||||
| ▲ | itake 7 hours ago | parent [-] | |||||||
> The human creating the files needs it why? The human would just talk to the AI agent. Why would they need to scroll through that many files? I made a similar system with 232k files (1 file might be a slack message, gitlab comment, etc). it does a decent job at answering questions with only keyword search, but I think i can have better results with RAG+BM25. | ||||||||
| ||||||||