mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +08:00
13 lines
243 B
Python
13 lines
243 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, session_id = None) -> bool:
|
|
pass |