LORIEN_Hybrid / multimodal_adapter.py
the-drifter23's picture
Upload 20 files
60c1a1e verified
raw
history blame contribute delete
197 Bytes
class MultiModalAdapter:
def handle_image(self, image_path):
return f"Processed image: {image_path}"
def handle_file(self, file_path):
return f"Processed file: {file_path}"