Doggo π, your loyal digital companion who finds files the way you think about them.
Doggo is a CLI tool that uses AI to help you search for and organize images using natural language queries. Instead of remembering exact filenames, just describe what you're looking for!
- π Semantic Search: Find images by describing them in natural language
- ποΈ AI-Powered Organization: Automatically organize images into intelligent categories
- βοΈ Smart Renaming: Generate descriptive filenames based on image content
- π― Smart Results: AI-powered similarity matching
- π» CLI Interface: Simple command-line interface
- π Rich Output: Beautiful, informative search results
demo.mov
pip install doggo
-
Initialize Doggo:
doggo init
-
Configure your AI provider:
For OpenAI (default):
doggo config set --api-key "sk-your-openai-api-key"
For Ollama (local models):
doggo config set --provider-url "http://localhost:11434/v1" \ --chat-model "gemma3:latest" \ --embedding-model "nomic-embed-text:latest"
Custom OpenAI setup:
doggo config set --provider-url "https://api.openai.com/v1" \ --chat-model "gpt-4" \ --embedding-model "text-embedding-ada-002" \ --api-key "sk-your-openai-api-key"
-
View current configuration:
doggo config show
-
Index your images:
doggo index /path/to/your/images
-
Search naturally:
doggo search "a cute dog playing in the park" doggo search "sunset over mountains" doggo search "people having dinner"
By default, Doggo shows the top 5 results and automatically opens the best match in your system's previewer. Use
--no-open
to disable auto-opening or--limit
to change the number of results. -
Organize your images:
# Organize images into AI-generated category folders doggo organize /path/to/your/images # Organize with descriptive filenames doggo organize /path/to/your/images --rename # Organize to a custom output directory doggo organize /path/to/your/images --rename --output /path/to/organized # Organize in place (within the same directory) doggo organize /path/to/your/images --inplace
Doggo can intelligently organize your images using AI-generated categories and descriptive filenames:
During indexing, Doggo analyzes each image and assigns it to a category (e.g., "flower", "dog", "landscape", "food"). When you run the organize command, images are automatically grouped into folders based on these categories.
With the --rename
flag, Doggo generates descriptive filenames based on the image content. Instead of generic names like "IMG_001.jpg", you get meaningful names like "red_rose_garden.jpg" or "golden_retriever_park.jpg".
- Default: Creates an "organized" folder in the source directory
- Custom output: Use
--output
to specify a different destination - In-place: Use
--inplace
to organize within the original directory - Combined: Use
--rename
with any output option for descriptive filenames
Before:
π photos/
βββ IMG_001.jpg (a red rose)
βββ DSC_123.jpg (a dog in park)
βββ photo.jpg (sunset)
After:
π organized/
βββ π flower/
β βββ red_rose_garden.jpg
βββ π dog/
β βββ golden_retriever_park.jpg
βββ π landscape/
βββ sunset_beach_view.jpg
-
AI-Powered Indexing: Doggo scans directories for images, uses AI vision models to generate detailed descriptions and categories of each image, and converts these descriptions into vector embeddings for semantic search capabilities. Supports both OpenAI and local Ollama models.
-
Vector Database Storage: The tool stores image metadata, AI-generated descriptions, categories, and vector embeddings in a local ChromaDB database, enabling fast similarity-based retrieval and intelligent organization without needing to re-process images on each search.
-
Natural Language Search: Users can search for images using descriptive queries like "cute dog playing in the park" - the system converts the query to a vector embedding and finds the most semantically similar images using vector similarity search.
-
Intelligent Organization: Using the AI-generated categories and descriptions, Doggo can automatically organize images into meaningful folders and generate descriptive filenames, making it easy to find and manage large collections of images.
-
CLI Interface: Provides a simple command-line interface with commands for initialization (doggo init), configuration (doggo config), indexing (doggo index ), searching (doggo search "query"), and organizing (doggo organize ) with rich output formatting and progress tracking.
Doggo supports multiple AI providers through a flexible configuration system:
- OpenAI: Cloud-based AI services (default)
- Ollama: Local AI models running on your machine
--provider-url
: AI provider endpoint (default: OpenAI)--chat-model
: Model for image analysis and chat (default: gpt-4o)--embedding-model
: Model for text embeddings (default: text-embedding-3-small)--api-key
: API key (required for OpenAI, optional for Ollama)
OpenAI with custom models:
doggo config set --provider-url "https://api.openai.com/v1" \
--chat-model "gpt-4" \
--embedding-model "text-embedding-ada-002" \
--api-key "sk-your-key"
Ollama with local models:
doggo config set --provider-url "http://localhost:11434/v1" \
--chat-model "llama3.2:3b" \
--embedding-model "nomic-embed-text:latest"
View current settings:
doggo config show
- OpenAI: Requires API key, supports vision models for image analysis
- Ollama: No API key required, ensure Ollama is running locally
- Vision Support: Not all Ollama models support image analysis - use models like
llama3.2:3b
that have vision capabilities
- Contributions are welcome! Please feel free to submit a pull request.
- See open issues for ideas.
MIT License - see the LICENSE file for details.