mirror of
https://github.com/yuruotong1/autoMate.git
synced 2025-12-26 05:16:21 +08:00
9 lines
140 B
Python
9 lines
140 B
Python
class BaseAgent:
|
|
def __init__(self, *args, **kwargs):
|
|
self.SYSTEM_PROMPT = ""
|
|
|
|
|
|
def chat(self, messages):
|
|
pass
|
|
|