ai-legal-assistant/backend/requirements.txt
root 656f596d7e feat: implement AI legal assistant system MVP
Core modules:
- Laws: CRUD, search, AI-powered QA
- Analysis: legal research and case management
- Contracts: lifecycle management with templates
- Signatures: electronic signature workflow

Infrastructure:
- FastAPI + SQLite + async SQLAlchemy
- Docker deployment support
- 54 unit tests passing

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-01 03:34:44 +08:00

32 lines
457 B
Plaintext

# FastAPI and dependencies
fastapi==0.110.0
uvicorn[standard]==0.27.1
python-multipart==0.0.9
# Database
sqlalchemy==2.0.25
aiosqlite==0.19.0
# Vector search
sqlite-vss==0.1.2
# Pydantic
pydantic==2.6.0
pydantic-settings==2.1.0
# Authentication
python-jose[cryptography]==3.3.0
bcrypt==4.0.1
# HTTP client for external APIs
httpx==0.26.0
# Testing
pytest==7.4.4
pytest-asyncio==0.23.4
pytest-cov==4.1.0
# Utilities
python-dotenv==1.0.1
numpy==1.26.4