mirror of
https://github.com/web-arena-x/webarena.git
synced 2026-02-06 11:16:53 +00:00
7 lines
128 B
Python
7 lines
128 B
Python
from typing import Union
|
|
|
|
from .actions import Action
|
|
from .utils import StateInfo
|
|
|
|
Trajectory = list[Union[StateInfo, Action]]
|