-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
245 lines (236 loc) · 5.89 KB
/
__init__.py
File metadata and controls
245 lines (236 loc) · 5.89 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
"""
Sentience Python SDK - AI Agent Browser Automation
"""
# Extension helpers (for browser-use integration)
from ._extension_loader import (
get_extension_dir,
get_extension_version,
verify_extension_injected,
verify_extension_injected_async,
verify_extension_version,
verify_extension_version_async,
)
from .actions import click, click_rect, press, scroll_to, type_text
from .agent import SentienceAgent, SentienceAgentAsync
from .agent_config import AgentConfig
from .agent_runtime import AgentRuntime
# Backend-agnostic actions (aliased to avoid conflict with existing actions)
# Browser backends (for browser-use integration)
from .backends import (
BrowserBackendV0,
BrowserUseAdapter,
BrowserUseCDPTransport,
CachedSnapshot,
CDPBackendV0,
CDPTransport,
LayoutMetrics,
PlaywrightBackend,
ViewportInfo,
)
from .backends import click as backend_click
from .backends import scroll as backend_scroll
from .backends import scroll_to_element as backend_scroll_to_element
from .backends import snapshot as backend_snapshot
from .backends import type_text as backend_type_text
from .backends import wait_for_stable as backend_wait_for_stable
# Agent Layer (Phase 1 & 2)
from .base_agent import BaseAgent
from .browser import SentienceBrowser
# Tracing (v0.12.0+)
from .cloud_tracing import CloudTraceSink, SentienceLogger
from .conversational_agent import ConversationalAgent
from .expect import expect
from .generator import ScriptGenerator, generate
from .inspector import Inspector, inspect
from .llm_provider import (
AnthropicProvider,
LLMProvider,
LLMResponse,
LocalLLMProvider,
OpenAIProvider,
)
from .models import ( # Agent Layer Models
ActionHistory,
ActionResult,
ActionTokenUsage,
AgentActionResult,
BBox,
Cookie,
Element,
LocalStorageItem,
OriginStorage,
ScreenshotConfig,
Snapshot,
SnapshotFilter,
SnapshotOptions,
StorageState,
TextContext,
TextMatch,
TextRect,
TextRectSearchResult,
TokenStats,
Viewport,
ViewportRect,
WaitResult,
)
from .overlay import clear_overlay, show_overlay
from .query import find, query
from .read import read
from .recorder import Recorder, Trace, TraceStep, record
from .screenshot import screenshot
from .sentience_methods import AgentAction, SentienceMethod
from .snapshot import snapshot
from .text_search import find_text_rect
from .tracer_factory import SENTIENCE_API_URL, create_tracer
from .tracing import JsonlTraceSink, TraceEvent, Tracer, TraceSink
# Utilities (v0.12.0+)
# Import from utils package (re-exports from submodules for backward compatibility)
from .utils import (
canonical_snapshot_loose,
canonical_snapshot_strict,
compute_snapshot_digests,
save_storage_state,
sha256_digest,
)
# Formatting (v0.12.0+)
from .utils.formatting import format_snapshot_for_llm
# Verification (agent assertion loop)
from .verification import (
AssertContext,
AssertOutcome,
Predicate,
all_of,
any_of,
custom,
element_count,
exists,
not_exists,
url_contains,
url_matches,
)
from .visual_agent import SentienceVisualAgent, SentienceVisualAgentAsync
from .wait import wait_for
__version__ = "0.93.0"
__all__ = [
# Extension helpers (for browser-use integration)
"get_extension_dir",
"get_extension_version",
"verify_extension_injected",
"verify_extension_injected_async",
"verify_extension_version",
"verify_extension_version_async",
# Browser backends (for browser-use integration)
"BrowserBackendV0",
"CDPTransport",
"CDPBackendV0",
"PlaywrightBackend",
"BrowserUseAdapter",
"BrowserUseCDPTransport",
"ViewportInfo",
"LayoutMetrics",
"backend_snapshot",
"CachedSnapshot",
# Backend-agnostic actions (prefixed to avoid conflicts)
"backend_click",
"backend_type_text",
"backend_scroll",
"backend_scroll_to_element",
"backend_wait_for_stable",
# Core SDK
"SentienceBrowser",
"Snapshot",
"Element",
"BBox",
"Viewport",
"ActionResult",
"WaitResult",
"snapshot",
"query",
"find",
"click",
"type_text",
"press",
"scroll_to",
"click_rect",
"wait_for",
"expect",
"Inspector",
"inspect",
"Recorder",
"Trace",
"TraceStep",
"record",
"ScriptGenerator",
"generate",
"read",
"screenshot",
"show_overlay",
"clear_overlay",
# Text Search
"find_text_rect",
"TextRectSearchResult",
"TextMatch",
"TextRect",
"ViewportRect",
"TextContext",
# Agent Layer (Phase 1 & 2)
"BaseAgent",
"LLMProvider",
"LLMResponse",
"OpenAIProvider",
"AnthropicProvider",
"LocalLLMProvider",
"SentienceAgent",
"SentienceAgentAsync",
"SentienceVisualAgent",
"SentienceVisualAgentAsync",
"ConversationalAgent",
# Agent Layer Models
"AgentActionResult",
"TokenStats",
"ActionHistory",
"ActionTokenUsage",
"SnapshotOptions",
"SnapshotFilter",
"ScreenshotConfig",
# Storage State Models (Auth Injection)
"StorageState",
"Cookie",
"LocalStorageItem",
"OriginStorage",
# Tracing (v0.12.0+)
"Tracer",
"TraceSink",
"JsonlTraceSink",
"CloudTraceSink",
"SentienceLogger",
"TraceEvent",
"create_tracer",
"SENTIENCE_API_URL",
# Utilities (v0.12.0+)
"canonical_snapshot_strict",
"canonical_snapshot_loose",
"compute_snapshot_digests",
"sha256_digest",
"save_storage_state",
# Formatting (v0.12.0+)
"format_snapshot_for_llm",
# Agent Config (v0.12.0+)
"AgentConfig",
# Enums
"SentienceMethod",
"AgentAction",
# Verification (agent assertion loop)
"AgentRuntime",
"AssertContext",
"AssertOutcome",
"Predicate",
"url_matches",
"url_contains",
"exists",
"not_exists",
"element_count",
"all_of",
"any_of",
"custom",
]