10 lines
232 B
Python
10 lines
232 B
Python
|
import py_trees as ptree
|
||
|
from typing import Any
|
||
|
from robowaiter.behavior_lib._base.Act import Act
|
||
|
from robowaiter.llm_client.ask_llm import ask_llm
|
||
|
|
||
|
class SubTaskPlaceHolder(Act):
|
||
|
|
||
|
def __init__(self):
|
||
|
super().__init__()
|