Skip to content

Commit 7a20dc0

Browse files
committed
export async api
1 parent cd27ad4 commit 7a20dc0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

sentience/async_api.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,13 @@
2323

2424
# ========== Actions (Phase 1) ==========
2525
# Re-export async action functions from actions.py
26-
from sentience.actions import click_async, click_rect_async, press_async, type_text_async
26+
from sentience.actions import (
27+
click_async,
28+
click_rect_async,
29+
press_async,
30+
scroll_to_async,
31+
type_text_async,
32+
)
2733

2834
# ========== Phase 2C: Agent Layer ==========
2935
# Re-export async agent classes from agent.py and base_agent.py
@@ -76,6 +82,7 @@
7682
"click_async", # Re-exported from actions.py
7783
"type_text_async", # Re-exported from actions.py
7884
"press_async", # Re-exported from actions.py
85+
"scroll_to_async", # Re-exported from actions.py
7986
"click_rect_async", # Re-exported from actions.py
8087
# Phase 2A: Core Utilities
8188
"wait_for_async", # Re-exported from wait.py

0 commit comments

Comments
 (0)