16 lines
207 B
Python
16 lines
207 B
Python
|
|
||
|
from langchain.schema import BaseRetriever, Document
|
||
|
|
||
|
class BaseAction:
|
||
|
|
||
|
|
||
|
def __init__(self, ):
|
||
|
pass
|
||
|
|
||
|
def step(self, ):
|
||
|
pass
|
||
|
|
||
|
def astep(self, ):
|
||
|
pass
|
||
|
|
||
|
|