Self-organizing file manager using LLMs
Top 9.6% on sourcepulse
LlamaFS is an AI-powered file organization tool designed to automatically rename and structure files based on their content and user-defined conventions. It targets users struggling with disorganized digital spaces, offering both batch processing for immediate organization and a continuous "watch mode" that learns from user renaming habits. The primary benefit is automated, intelligent file management that reduces manual effort and improves discoverability.
How It Works
LlamaFS leverages the Llama 3 model, primarily via Groq's inference API for speed, to analyze file content and suggest organizational structures. It supports various file types, including images (via Moondream) and audio (via Whisper). The system operates in two modes: batch processing for one-off organization and a daemon that monitors directories, learning from user interactions to proactively organize new files. An "incognito mode" routes requests through Ollama for local processing, enhancing privacy.
Quick Start & Requirements
pip install -r requirements.txt
.moondream
are optional for incognito mode..env
with API keys.fastapi dev server.py
to start the server. Example API call: curl -X POST http://127.0.0.1:8000/batch -H "Content-Type: application/json" -d '{"path": "/Users/<username>/Downloads/", "instruction": "string", "incognito": false}'
.Highlighted Details
Maintenance & Community
The project is maintained by iyaja. Further community or roadmap details are not explicitly provided in the README.
Licensing & Compatibility
The repository's license is not specified in the README. Compatibility for commercial use or closed-source linking is not detailed.
Limitations & Caveats
The README mentions that "filesystem diffs are hard," suggesting potential complexities or limitations in tracking and managing file changes. The integration of Ollama for incognito mode is marked as a "TODO," indicating it might not be fully implemented or stable.
5 months ago
Inactive