-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
120 lines (113 loc) · 2.53 KB
/
__init__.py
File metadata and controls
120 lines (113 loc) · 2.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
"""
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
from .conversational_agent import ConversationalAgent
from .expect import expect
# Formatting (v0.12.0+)
from .formatting import format_snapshot_for_llm
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,
Element,
ScreenshotConfig,
Snapshot,
SnapshotFilter,
SnapshotOptions,
TokenStats,
Viewport,
WaitResult,
)
from .query import find, query
from .read import read
from .recorder import Recorder, Trace, TraceStep, record
from .screenshot import screenshot
from .snapshot import snapshot
# Tracing (v0.12.0+)
from .tracing import JsonlTraceSink, TraceEvent, Tracer, TraceSink
# Utilities (v0.12.0+)
from .utils import (
canonical_snapshot_loose,
canonical_snapshot_strict,
compute_snapshot_digests,
sha256_digest,
)
from .wait import wait_for
__version__ = "0.12.0"
__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",
# Agent Layer (Phase 1 & 2)
"BaseAgent",
"LLMProvider",
"LLMResponse",
"OpenAIProvider",
"AnthropicProvider",
"LocalLLMProvider",
"SentienceAgent",
"ConversationalAgent",
# Agent Layer Models
"AgentActionResult",
"TokenStats",
"ActionHistory",
"ActionTokenUsage",
"SnapshotOptions",
"SnapshotFilter",
"ScreenshotConfig",
# Tracing (v0.12.0+)
"Tracer",
"TraceSink",
"JsonlTraceSink",
"TraceEvent",
# Utilities (v0.12.0+)
"canonical_snapshot_strict",
"canonical_snapshot_loose",
"compute_snapshot_digests",
"sha256_digest",
# Formatting (v0.12.0+)
"format_snapshot_for_llm",
# Agent Config (v0.12.0+)
"AgentConfig",
]