Skip to content

Commit 9a4cdd5

Browse files
revert types back from schema
1 parent 227badf commit 9a4cdd5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stagehand/handlers/act_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
method_handler_map,
88
)
99
from stagehand.llm.prompts import build_act_observe_prompt
10-
from stagehand.schemas import ActOptions, ActResult, ObserveOptions, ObserveResult
10+
from stagehand.types import ActOptions, ActResult, ObserveOptions, ObserveResult
1111

1212

1313
class ActHandler:

tests/unit/handlers/test_act_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from unittest.mock import AsyncMock, MagicMock, patch
55

66
from stagehand.handlers.act_handler import ActHandler
7-
from stagehand.schemas import ActOptions, ActResult, ObserveResult
7+
from stagehand.types import ActOptions, ActResult, ObserveResult
88
from tests.mocks.mock_llm import MockLLMClient, MockLLMResponse
99

1010

0 commit comments

Comments
 (0)