Spaces:
Running
Running
from abc import ABC, abstractmethod | |
from typing import Dict, List, Tuple | |
class BaseAnalyzer(ABC): | |
def analyze(self, text: str): | |
pass | |
def format_output(self, result) -> str: | |
pass |