mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-15 17:30:13 +08:00
13 lines
224 B
Python
13 lines
224 B
Python
import abc
|
|
|
|
class Provider:
|
|
def __init__(self, cfg):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def text_chat(self, prompt, session_id):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def forget(self) -> bool:
|
|
pass |