Nguyen Trong Lap
Recreate history without binary blobs
eeb0f9c
raw
history blame contribute delete
329 Bytes
"""
Fine-tuning Module
Collect conversation data and train custom models
"""
from .data_collector import ConversationDataCollector, get_data_collector
from .trainer import FineTuningTrainer, fine_tune_agent
__all__ = [
'ConversationDataCollector',
'get_data_collector',
'FineTuningTrainer',
'fine_tune_agent'
]