You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my priority list, previewing the directory is the most important thing. Assume there is a dir containing a large number of pictures (or videos, audios, etc), we cannot simply return all pictures' path (but we need a part of them), how to draw a clear file structure/pattern for LLMs meanwhile maintaining a acceptable (not scale) RAG information?
In my priority list, previewing the directory is the most important thing. Assume there is a dir containing a large number of pictures (or videos, audios, etc), we cannot simply return all pictures' path (but we need a part of them), how to draw a clear file structure/pattern for LLMs meanwhile maintaining a acceptable (not scale) RAG information?
Yes, let us make it easy:
Returning all file paths is not feasible: Most of the datast files are usually named under a fixed pattern. So we do not need to list all of them. Instead, giving some examples (3 to 5 files) in a directory is enough.
How to solve the directory recursion: We should limit the recursive depth for a dataset path. For the deeper directories, we only show the number of them.
list_files
function #252The text was updated successfully, but these errors were encountered: