No Description

Brad Lance a370e3c44d Fix: Use actual audiobook duration instead of wall-clock time for hours 3 months ago
app a370e3c44d Fix: Use actual audiobook duration instead of wall-clock time for hours 3 months ago
.env.example 8c681f5d40 Switch AI backend from Claude to Gemini 3 months ago
.gitignore e1e9d13f7c Add Audiobookshelf recommendation system 3 months ago
README.md 47f038a0f7 Rename application to 'Dewy Oracle' 3 months ago
absrecommend.service 47f038a0f7 Rename application to 'Dewy Oracle' 3 months ago
download-all-covers.py 47774cb200 Fix: Download and cache book cover images locally 3 months ago
fix-cover-urls.py c00db3aad5 Fix: Proxy book cover images through authenticated endpoint 3 months ago
main.py 47f038a0f7 Rename application to 'Dewy Oracle' 3 months ago
migrate_database.py 000cd2ad4a Add admin panel, service management, and deployment tooling 3 months ago
remove-service.sh 000cd2ad4a Add admin panel, service management, and deployment tooling 3 months ago
requirements.txt 52245e6f69 Add multi-user authentication and reading log features 3 months ago
reset-password.py 000cd2ad4a Add admin panel, service management, and deployment tooling 3 months ago
restart-service.sh 000cd2ad4a Add admin panel, service management, and deployment tooling 3 months ago
revert-cover-urls.py c00db3aad5 Fix: Proxy book cover images through authenticated endpoint 3 months ago
setup-service.sh 000cd2ad4a Add admin panel, service management, and deployment tooling 3 months ago
test-auth.py 000cd2ad4a Add admin panel, service management, and deployment tooling 3 months ago

README.md

Dewy Oracle

A web application that tracks your Audiobookshelf listening history and provides AI-powered book recommendations.

Features

  • Syncs with Audiobookshelf server to track reading progress
  • AI-powered book recommendations based on your listening history
  • Web interface to view history and recommendations
  • REST API for programmatic access

Setup

  1. Install dependencies:

    pip install -r requirements.txt
    
  2. Configure environment variables:

    cp .env.example .env
    # Edit .env with your Audiobookshelf URL, API token, and AI API key
    
  3. Run the application:

    python main.py
    
  4. Access the web interface at http://localhost:8000

API Endpoints

  • GET / - Web interface
  • GET /api/sync - Sync with Audiobookshelf
  • GET /api/recommendations - Get book recommendations
  • GET /api/history - View listening history

Configuration

See .env.example for all configuration options.