Run a complete private AI ecosystem locally using Ollama, Open WebUI, and purpose-built tools for email, finance, 3D generation, image generation, speech-to-text, and social media marketing. No cloud. No subscriptions. No data leaving your machine.
| Tool | Purpose | Port |
|---|---|---|
| π¬ Open WebUI + SearXNG | Chat UI with private web search | :3000 / :8080 |
| π Quant AI | Stock & crypto analysis + portfolio tracker | :8000 |
| π¬ Gmail AI Manager | AI email triage, summarize, draft replies + Calendar | :5051 |
| π¨ Stable Diffusion | Local text-to-image generation Β· Apple Silicon MPS | :5050 |
| π§ TripoSR 3D Pipeline | Image β 3D mesh (Apple Silicon) | :5050 |
| π€ Tax AI Social | AI social media content engine for tax/accounting firms | :5055 |
| ποΈ Whisper STT | 100% local speech-to-text for Open WebUI | :9000 |
π¦ Ollama (localhost:11434)
mistral:7b Β· deepseek-coder:6.7b
Apple Silicon MPS Β· ~4-10GB RAM
β
ββββββββββββββββββββΌβββββββββββββββββββββββ
β β β
βΌ βΌ βΌ
π¬ Open WebUI π Quant AI π¬ Gmail AI
:3000 :8000 :5051
+ SearXNG FastAPI+ChromaDB Gmail API
:8080 vectorbt Auto-triage
β β
βΌ βΌ
π§ TripoSR π€ Tax AI Social
:5050 :5055
Imageβ3D Instagram/Facebook/TikTok
OBJ/GLB export Compliance + Auto-Post
- macOS (Apple Silicon M1/M2/M3/M4 recommended) or Linux
- 16 GB RAM recommended (8GB minimum for basic use)
- Docker Desktop β https://www.docker.com/products/docker-desktop/
- 15+ GB free disk space (for models + tools)
- Internet connection (for initial setup only)
git clone https://github.com/jup313/MYLLM.git
cd MYLLMchmod +x setup.sh install-tools.sh
./setup.shThis will:
- Install Ollama
- Download
mistral:7banddeepseek-coder:6.7bmodels - Start Open WebUI on http://localhost:3000
- Start SearXNG on http://localhost:8080
- Open http://localhost:3000
- Click Sign Up and create your admin account
- The first account is automatically admin
Chat with local AI models + private web search.
| URL | Description |
|---|---|
| http://localhost:3000 | Chat interface |
| http://localhost:8080 | SearXNG search engine |
- Click the β¨ sparkle icon in chat input
- Toggle Web Search ON
- Ask any question β AI searches privately via SearXNG
./install-tools.sh your@email.com yourpasswordAI-powered stock and crypto analysis running 100% locally.
cd quant_api
pip install -r requirements.txt
python main.py- FastAPI + ChromaDB vector database
- vectorbt for backtesting
- curl-cffi for market data
- Ask natural language questions about stocks and crypto
Local AI that reads, summarizes, categorizes, and drafts replies to your emails.
cd gmail-ai-manager
bash setup.sh
bash start.sh
# Open: http://localhost:5051Features:
- β Auto-summarize inbox (no email ever leaves your machine)
- β Categorize by priority (urgent / action / info / promo)
- β Draft AI replies with one click
- β Unsubscribe detection
- β Requires Gmail OAuth credentials (stays 100% local)
Generate 3D meshes from images using Apple Silicon GPU (MPS).
cd triposr-pipeline
bash setup.sh # First time only β installs TripoSR
bash start-ui.sh
# Open: http://localhost:5050Pipeline:
Your prompt β Stable Diffusion image β TripoSR β OBJ/GLB mesh
- Uses Apple Silicon MPS (Metal Performance Shaders)
- Memory usage: ~6β10GB
- Output: OBJ + GLB files ready for Blender, Unity, web
- Best open-source 3D model for Mac 16GB
AI-powered social media content engine for tax preparation, tax resolution, and bookkeeping firms.
- Automatically generates Instagram, Facebook, and TikTok posts daily at 6 AM
- Uses your local Ollama LLM (
mistral:7b) β no OpenAI API needed - 35+ compliance rules block misleading tax claims automatically
- Human review dashboard β Approve β , Edit βοΈ, or Reject β before posting
- Auto-posts to Facebook/Instagram via Meta Graph API on approval
- Business contact info (phone, WhatsApp, email, website) auto-appended to every post
cd tax-ai-social
bash setup.sh
cp .env.example .env
# Edit .env β add your firm info and Meta API credentials
bash start.sh
# Open: http://localhost:5055- β‘ Generate Now β single post or full daily batch (5 posts)
- π Posts tab β review drafts, approve, edit, or reject
- βοΈ Business Settings tab β update firm name, phone, email, website, WhatsApp, fax, etc. without touching files
- 6 AM auto-generation β every morning, 5 posts ready for review
- Compliance checker β flags and blocks prohibited phrases before you see them
| Platform | Type | Auto-posts? |
|---|---|---|
| Image caption | β (with image URL) | |
| Text post | β | |
| TikTok | Video script | β Manual (record yourself) |
- Tax Preparation
- Tax Resolution (IRS debt, payment plans, OIC)
- Bookkeeping
| Model | Size | Best For |
|---|---|---|
mistral:7b |
4.4 GB | General chat, posts, email, social media |
deepseek-coder:6.7b |
3.8 GB | Code generation, debugging, quant analysis |
ollama pull llama3.2 # Meta's Llama 3.2 (3B)
ollama pull phi4 # Microsoft Phi-4 (14B)
ollama pull qwen2.5-coder # Qwen coding model
ollama list # See all installed models# Stop Docker services (Open WebUI + SearXNG)
docker compose down
# Start Docker services
docker compose up -d
# View logs
docker compose logs -f
# Restart a specific service
docker compose restart open-webuiMYLLM/
βββ README.md # This file
βββ docker-compose.yml # Open WebUI + SearXNG
βββ setup.sh # One-command setup
βββ install-tools.sh # Install Open WebUI tools
βββ shopping_search_tool.py # Amazon/eBay search tool
βββ quant_tool.py # Quant analysis Open WebUI tool
βββ searxng/ # SearXNG config
βββ quant_api/ # Quant AI FastAPI backend
βββ gmail-ai-manager/ # Gmail AI email manager
βββ triposr-pipeline/ # Image β 3D mesh pipeline
β βββ architecture.svg # Full stack diagram
β βββ ...
βββ tax-ai-social/ # β Tax AI Social Media Engine
β βββ app/
β β βββ main.py # Flask API + routes
β β βββ generator.py # Post generation engine
β β βββ compliance.py # 35+ tax compliance rules
β β βββ poster.py # Meta Graph API posting
β β βββ scheduler.py # 6 AM daily auto-generation
β β βββ database.py # SQLite post tracking
β βββ prompts/ # 7 platform-specific prompts
β βββ templates/index.html # Dark-mode dashboard
β βββ .env.example # Config template
β βββ requirements.txt
β βββ setup.sh
β βββ start.sh
βββ whisper-stt/ # β Local Voice / Speech-to-Text
βββ server.py # OpenAI-compatible STT API
βββ requirements.txt
βββ setup.sh
βββ start.sh
βββ README.md
ollama list # Check if running
ollama serve # Start if not runningdocker compose down
docker compose up -d
docker compose logsollama pull mistral:7b # Download the model
ollama serve # Make sure Ollama is runningEdit docker-compose.yml or the relevant .env file to change ports.
Everything runs 100% locally:
- No data sent to OpenAI, Anthropic, or any cloud service
- SearXNG proxies web searches anonymously
- Gmail AI only reads emails locally via OAuth β nothing uploaded
- Tax AI Social posts never leave until you click Approve
- All AI inference runs on your Mac's Apple Silicon chip
100% local speech-to-text for Open WebUI β talk to your AI instead of typing.
cd whisper-stt
bash start.sh
# Server starts at http://localhost:9000First run downloads the Whisper small model (~460 MB, one time).
- Open http://localhost:3000
- Profile icon β Settings β Audio
- Speech to Text:
- Engine: OpenAI API
- Base URL:
http://localhost:9000/v1 - API Key:
local
- Save β click the π€ microphone in chat to speak!
| Model | Size | Speed | Best For |
|---|---|---|---|
tiny |
~75 MB | ~0.3s | Quick testing |
base |
~145 MB | ~0.5s | English-only |
small |
~460 MB | ~1s | Recommended β |
medium |
~1.5 GB | ~3s | Best accuracy |
WHISPER_MODEL=medium bash start.sh # Use a larger model- β 100% private β audio never leaves your Mac
- β Works offline after first setup
- β Multi-language support (auto-detects)
- β OpenAI-compatible API format
Track your stock/crypto holdings with live prices, gain/loss, and allocation chart.
Open: http://localhost:8000/portfolio
| Feature | Details |
|---|---|
| π Positions table | Ticker, shares, avg cost, current price, gain/loss, day change |
| π© Allocation donut chart | Visual portfolio breakdown (Chart.js) |
| ποΈ Watchlist | Track tickers without holding them |
| β³ Live prices | Auto-fetches via Yahoo Finance on page load |
| β Add / remove | Simple form β no file editing needed |
cd quant_api
python main.py
# Open: http://localhost:8000/portfolioDetect meetings in emails and add them to Google Calendar automatically.
Open: http://localhost:5051 β click π Calendar in sidebar
| Feature | Details |
|---|---|
| π Meeting detection | Scans emails for Zoom, time mentions, meeting keywords |
| π€ LLM extraction | Uses Ollama to extract date/time/location from email body |
| π One-click add | Click π Add to Calendar on any detected meeting email |
| β Manual events | Create events directly from the dashboard |
| π Upcoming view | See next 7 days of Google Calendar events |
Requires: Google Calendar API scope (enabled automatically when you re-connect Gmail OAuth)
β οΈ If you already connected Gmail, click π Re-connect Gmail in Settings to add Calendar scope.
100% local text-to-image generation on your Mac. No API key. No cloud. No limits.
cd stable-diffusion
bash setup.sh # First time only (~2-3 min)
bash start.sh
# Open: http://localhost:5050| Feature | Details |
|---|---|
| β‘ SDXL-Turbo | Default model β ~3β8s per image on M1/M2/M3 |
| π§ 6 Models | SDXL-Turbo, SD 2.1, SD 1.5, DreamShaper, OpenJourney, Realistic Vision |
| π Any size | 512Γ512 to 1280Γ1280 with 1:1, 16:9, 9:16, 4:3 presets |
| π² Seed control | Reproduce or vary any image |
| ποΈ History | Browse all generated images |
| π± Social Post tab | Auto-generate images for Tax AI Social posts |
When Stable Diffusion is running (:5050), Tax AI Social will automatically generate images for Instagram and Facebook posts. Just start both services:
# Terminal 1
cd stable-diffusion && bash start.sh
# Terminal 2
cd tax-ai-social && bash start.shImages are auto-selected based on post content (IRS/debt β resolution style, family β family style, etc.).
# Generate image
curl -X POST http://localhost:5050/api/generate \
-H "Content-Type: application/json" \
-d '{"prompt": "professional tax accountant, modern office, 4K", "model": "sdxl-turbo", "steps": 4}'
# Use in Python
from stable_diffusion.sd_client import generate_for_post
img_url = generate_for_post("Tax deadline April 15th", specialty="tax_preparation")-
Stable Diffusion image generationβ β Done! (stable-diffusion/+ Tax AI Social integration) - LinkedIn support for Tax AI Social
-
Quant AI portfolio tracker dashboardβ β Done! (/portfolio) -
Gmail AI calendar integrationβ β Done! (Calendar tab) -
Voice interface for Open WebUIβ β Done! (Whisper STT)
Built with β€οΈ using Ollama Β· Open WebUI Β· SearXNG Β· TripoSR Β· Flask Β· Apple Silicon π