We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0049e99 commit 2c2628bCopy full SHA for 2c2628b
adf_core_python/core/agent/office/office.py
@@ -1,6 +1,7 @@
1
from threading import Event
2
from typing import Optional
3
4
+from adf_core_python.core.agent.action.common.action_rest import ActionRest
5
from adf_core_python.core.agent.agent import Agent
6
from adf_core_python.core.agent.config.module_config import ModuleConfig
7
from adf_core_python.core.agent.develop.develop_data import DevelopData
@@ -125,3 +126,8 @@ def think(self) -> None:
125
126
self._message_manager,
127
self._develop_data,
128
)
129
+ self.send_msg(
130
+ ActionRest()
131
+ .get_command(self.agent_id, self._agent_info.get_time())
132
+ .prepare_cmd()
133
+ )
0 commit comments