mirror of
https://github.com/AstrBotDevs/AstrBot
synced 2026-07-16 01:40:15 +08:00
18 lines
268 B
Python
18 lines
268 B
Python
import abc
|
|
|
|
class Provider:
|
|
def __init__(self, cfg):
|
|
pass
|
|
|
|
def text_chat(self, prompt):
|
|
pass
|
|
|
|
def image_chat(self, prompt):
|
|
pass
|
|
|
|
def memory(self):
|
|
pass
|
|
|
|
@abc.abstractmethod
|
|
def forget(self) -> bool:
|
|
pass |