mirror of
https://github.com/JefferyHcool/BiliNote.git
synced 2026-05-11 18:10:06 +08:00
13 lines
224 B
Python
13 lines
224 B
Python
from abc import ABC,abstractmethod
|
|
|
|
from app.models.gpt_model import GPTSource
|
|
|
|
|
|
class GPT(ABC):
|
|
def summarize(self, source:GPTSource )->str:
|
|
'''
|
|
|
|
:param source:
|
|
:return:
|
|
'''
|
|
pass |