Skip to content

Commit

Permalink
Modified specs
Browse files Browse the repository at this point in the history
  • Loading branch information
dhuynh-lovable committed Sep 24, 2024
1 parent bc9a1d0 commit c883193
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lavague-core/lavague/trajectory/base.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import Optional, List
from typing import Optional, List, Tuple
from pydantic import BaseModel, SerializeAsAny
from lavague.action import Action, WebExtractionAction, WebNavigationAction
from enum import Enum
Expand All @@ -14,9 +14,9 @@ class Trajectory(BaseModel):

run_id: str
start_url: str
viewport_size: Tuple[int, int]
objective: str
status: TrajectoryStatus
output: Optional[str]
actions: List[SerializeAsAny[Action]]

def write_to_file(self, file_path: str):
Expand Down

0 comments on commit c883193

Please sign in to comment.