mirror of
https://github.com/open-webui/openapi-servers
synced 2025-06-26 18:17:04 +00:00
7 lines
169 B
Python
7 lines
169 B
Python
from abc import ABC, abstractmethod
|
|
|
|
class BaseSummarizer(ABC):
|
|
@abstractmethod
|
|
def summarize(self, data: str) -> dict:
|
|
"""Summarize data"""
|
|
pass |