Spaces:
Sleeping
Sleeping
File size: 981 Bytes
7d18ad1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
# coding: utf-8
# Copyright (c) 2025 inclusionAI.
from typing import Any, List
from aworld.core.common import ActionResult, Observation
DEFAULT_VIRTUAL_ENV_ID = "env_0"
def build_observation(observer: str,
ability: str,
container_id: str = None,
content: Any = None,
dom_tree: Any = None,
action_result: List[ActionResult] = [],
image: str = '',
images: List[str] = [],
**kwargs):
return Observation(container_id=container_id if container_id else DEFAULT_VIRTUAL_ENV_ID,
observer=observer,
ability=ability,
content=content,
action_result=action_result,
dom_tree=dom_tree,
image=image,
images=images,
info=kwargs)
|