- Added DATABASE_SETUP.md with comprehensive guide for PostgreSQL and Redis installation on Windows - Created .claude/settings.local.json with permission settings for pytest and database fix scripts - Updated .gitignore to exclude .env.backup file - Included database connection test utilities in lyra/database_setup.py - Added environment variable configuration examples for local development
16 lines
451 B
Python
16 lines
451 B
Python
"""
|
|
Lyra Knowledge Acquisition Module
|
|
|
|
Handles acquisition of legally obtained knowledge from various sources
|
|
including Project Gutenberg, with emphasis on quality, legality, and ethics.
|
|
"""
|
|
|
|
from .gutenberg_crawler import GutenbergCrawler
|
|
from .knowledge_processor import KnowledgeProcessor
|
|
from .acquisition_manager import KnowledgeAcquisitionManager
|
|
|
|
__all__ = [
|
|
"GutenbergCrawler",
|
|
"KnowledgeProcessor",
|
|
"KnowledgeAcquisitionManager"
|
|
] |