Metadata-Version: 2.4
Name: projectdavid-services
Version: 1.0.9
Summary: Shared service classes for ProjectDavid services
Author-email: "Francis N." <francis.neequaye@projectdavid.co.uk>
License: Polyform
Project-URL: Homepage, https://github.com/project-david-ai/projectdavid-services
Keywords: services,sqlalchemy,projectdavid,internal
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: sqlalchemy>=2.0.0
Requires-Dist: PyMySQL
Requires-Dist: pydantic>=2.0.0
Requires-Dist: python-dotenv
Requires-Dist: python-multipart
Requires-Dist: pysmb
Requires-Dist: projectdavid-orm==1.1.10
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: httpx; extra == "dev"
Dynamic: license-file

# projectdavid-services

Shared services for the ProjectDavid platform.

Provides a single source of truth for all service classes across ProjectDavid microservices, eliminating duplication between the core API, training service, and any future services.

---

## Overview

ProjectDavid is a self-hosted, multi-provider LLM runtime API. As the platform grows into multiple microservices (inference API, training API, sandbox, etc.), each service needs access to the same database schema. Rather than duplicating model definitions or making inter-service HTTP calls just to read data, `projectdavid-orm` exposes the full SQLAlchemy model layer as a shared, versioned package.

Any service that needs direct DB access simply installs this package and imports the models it needs.

---
## Installation
```bash
pip install projectdavid-services
