File size: 1,078 Bytes
ed1b365 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | """
Codette Dataset Generation Engine
==================================
Production-quality dataset generation for LoRA adapter training.
Generates chat-format JSONL files for fine-tuning Llama 3.1 8B
on multi-perspective reasoning tasks.
Adapters supported:
- newton: Classical physics and mechanics reasoning
- davinci: Creative invention and cross-domain design
- empathy: Emotional intelligence and compassionate reasoning
- philosophy: Philosophical analysis and ethical reasoning
- quantum: Quantum physics concepts and mathematics
- consciousness: RC+xi recursive cognition framework
- multi_perspective: Cross-perspective synthesis and integration
- systems_architecture: AI system design and infrastructure
"""
from dataset_engine.template_registry import TemplateRegistry
from dataset_engine.answer_generator import AnswerGenerator
from dataset_engine.dataset_generator import DatasetGenerator
__all__ = [
"TemplateRegistry",
"AnswerGenerator",
"DatasetGenerator",
]
__version__ = "1.0.0"
|