added hotfix for batched bo

This commit is contained in:
2026-08-12 14:50:05 +09:00
parent c638cc57a0
commit 781ec07b1e
7 changed files with 102 additions and 49 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ class BOEngine(ABC):
self.state = None
@abstractmethod
def ask(self):
def ask(self, n: int = 1) -> list[dict]:
pass
@abstractmethod