Summarizer FastAPI tool

This commit is contained in:
isopod
2025-04-20 20:10:56 -04:00
parent 134d4e6778
commit e597b248da
8 changed files with 189 additions and 0 deletions
@@ -0,0 +1,7 @@
from abc import ABC, abstractmethod
class BaseSummarizer(ABC):
@abstractmethod
def summarize(self, data: str) -> dict:
"""Summarize data"""
pass