Metadata-Version: 2.4
Name: littlehive
Version: 0.7.1
Summary: LittleHive local-first multi-agent assistant foundation
Author: LittleHive
License: MIT
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: google-auth-httplib2
Requires-Dist: google-auth-oauthlib
Requires-Dist: google-api-python-client
Requires-Dist: sentence-transformers
Requires-Dist: scikit-learn
Requires-Dist: mlx-lm
Requires-Dist: apscheduler
Requires-Dist: semantic-router
Requires-Dist: requests
Requires-Dist: markdown
Requires-Dist: fpdf2
Requires-Dist: ddgs
Provides-Extra: dev
Requires-Dist: ruff>=0.4; extra == "dev"
Requires-Dist: build>=1.2; extra == "dev"
Requires-Dist: twine>=5.1; extra == "dev"
Requires-Dist: pytest>=8.0; extra == "dev"

# LittleHive 🐝

**A private, local-first AI executive assistant built exclusively for Apple Silicon.**

LittleHive runs entirely on your Mac — powered by Mistral's **Ministral 8B or 14B** model via Apple's **MLX** framework. Your emails, calendar, and personal data never leave your machine.

No cloud AI. No subscription. Just a fast, intelligent assistant on your hardware.

---

## ✨ Features

- **100% Local AI** — Runs Ministral 8B/14B natively on Apple Silicon via MLX with KV prompt caching for sub-second responses.
- **Google Workspace** — Connects to Gmail, Google Calendar, and Google Tasks. Read, draft, send emails; create events; manage tasks.
- **Web Search** — Search the web via DuckDuckGo for current events, prices, or facts the model isn't confident about.
- **Proactive Scheduling** — Background threads poll for new emails, fire reminders on time, and sync your calendar automatically.
- **Long-Term Memory** — Remembers important facts across conversations. Nightly extraction saves key details from your chats.
- **Contacts Directory** — Manage stakeholders with optional auto-reply drafting for trusted contacts.
- **Finance Tracking** — Track bills, due dates, and mark payments as they come in.
- **Telegram Bot** — Chat with your assistant from Telegram with typing indicators and chat ID authorization.
- **Web Dashboard** — A local web interface with real-time chat, context usage monitoring, dark mode, and full configuration.
- **Self-Updating** — Check for and install updates directly from PyPI with a single command.

---

## 💻 Requirements

- **Hardware:** Apple Silicon Mac (M1, M2, M3, or M4). Intel Macs are not supported.
- **Software:** macOS with Python 3.11+.

---

## 🚀 Installation

**1. Create a virtual environment:**
```bash
python3 -m venv littlehive-env
source littlehive-env/bin/activate
```

**2. Install LittleHive:**
```bash
pip install littlehive
```

**3. Run the setup wizard:**
```bash
lhive setup
```

The wizard walks you through identity, Google OAuth, Telegram, model selection, and preferences. Takes about 2 minutes.

---

## 🕹️ CLI Commands

```
lhive setup          Interactive setup wizard (run this first)
lhive start          Start the agent in the background
lhive stop           Stop the agent
lhive restart        Restart the agent
lhive status         Show agent status and configuration
lhive update         Check for and install updates from PyPI
lhive version        Show current version
lhive auth google    Re-run Google OAuth flow
```

The first `lhive start` downloads the AI model (~4–8 GB). Subsequent starts are instant.

---

## 🖥️ Dashboard

Once the agent is running, open your browser:

👉 **http://localhost:8080**

The dashboard includes:
- **Chat** — Talk to your assistant with real-time tool indicators
- **Contacts** — Manage your contacts directory and auto-reply settings
- **Memories** — View, edit, or delete facts the agent has memorized
- **Settings** — Configure identity, model, Telegram, and Do Not Disturb hours
- **Scheduler** — Control background jobs (reminders, API sync, nightly cleanup)
- **Top Bar** — Live clock, context usage %, model name, connection status

---

## 💬 What Can You Ask?

- **Email:** *"Do I have unread emails?"* · *"Send a PDF summary to Sarah."* · *"Archive all newsletters."*
- **Calendar:** *"What's on my schedule tomorrow?"* · *"Block 2 hours for deep work."*
- **Reminders:** *"Remind me about the dentist at 3 PM."* · *"What reminders do I have?"*
- **Web Search:** *"What's the latest news on AI?"* · *"Current weather in London."*
- **Finance:** *"Add a bill for electricity — ₹2,400 due March 20."* · *"Mark the internet bill as paid."*
- **Memory:** *"Remember that my son's name is Vivaan."* · *"Who is in my family?"*
- **Contacts:** *"Look up Sarah's email."* · *"Add John as a contact."*

### Chat Commands

Type these directly in the chat window or Telegram:

```
/reset    Wipe context and start a fresh conversation
/context  Show current token usage and context health
/clear    Clear the chat window (UI only, keeps memory)
/help     Show available commands
```

---

## 📂 Data Storage

Everything stays local:

| Path | Contents |
|------|----------|
| `~/.littlehive/config/` | Configuration and Google OAuth tokens |
| `~/.littlehive/db/littlehive.db` | Chat history, memories, reminders, cached emails |
| `~/.littlehive/logs/agent.log` | Runtime logs for troubleshooting |

---

## 📄 License

MIT
