-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
158 lines (151 loc) · 3.53 KB
/
__init__.py
File metadata and controls
158 lines (151 loc) · 3.53 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
"""
Sentience Python SDK - AI Agent Browser Automation
"""
from .actions import click, click_rect, press, type_text
from .agent import SentienceAgent
from .agent_config import AgentConfig
# 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
from .wait import wait_for
__version__ = "0.91.1"
__all__ = [
# Core SDK
"SentienceBrowser",
"Snapshot",
"Element",
"BBox",
"Viewport",
"ActionResult",
"WaitResult",
"snapshot",
"query",
"find",
"click",
"type_text",
"press",
"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",
"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",
]