-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
54 lines (49 loc) · 1.36 KB
/
index.ts
File metadata and controls
54 lines (49 loc) · 1.36 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
/**
* Sentience TypeScript SDK - AI Agent Browser Automation
*/
export { SentienceBrowser } from './browser';
export { snapshot, SnapshotOptions } from './snapshot';
export { query, find, parseSelector } from './query';
export { click, typeText, press, clickRect, ClickRect } from './actions';
export { waitFor } from './wait';
export { expect, Expectation } from './expect';
export { Inspector, inspect } from './inspector';
export { Recorder, Trace, TraceStep, record } from './recorder';
export { ScriptGenerator, generate } from './generator';
export { read, ReadOptions, ReadResult } from './read';
export { screenshot, ScreenshotOptions } from './screenshot';
export { showOverlay, clearOverlay } from './overlay';
export { findTextRect } from './textSearch';
export * from './types';
export { saveStorageState } from './utils';
// Agent Layer (v0.2.0+)
export {
LLMProvider,
LLMResponse,
OpenAIProvider,
AnthropicProvider
} from './llm-provider';
export {
SentienceAgent,
AgentActResult,
HistoryEntry,
TokenStats
} from './agent';
// Conversational Agent Layer (v0.3.0+)
export {
ConversationalAgent,
ExecutionPlan,
PlanStep,
StepResult,
ConversationEntry,
ActionType,
ActionParameters
} from './conversational-agent';
// Tracing Layer (v0.3.1+)
export {
Tracer,
TraceSink,
JsonlTraceSink,
TraceEvent,
TraceEventData
} from './tracing';