15 lines
439 B
Python
15 lines
439 B
Python
"""真实 RPA 档位占位:无 API 时最后手段,谨慎实现。"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from .base import AdapterBase, ExampleItem, ExampleResult
|
|
|
|
|
|
class RealRpaAdapter(AdapterBase):
|
|
name = "real_rpa"
|
|
|
|
def do_batch(self, target: str, items: list[ExampleItem]) -> ExampleResult:
|
|
raise NotImplementedError(
|
|
"RealRpaAdapter: 复制 example_adapter 后在此实现生产界面 RPA"
|
|
)
|