Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion sentience/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

from .actions import click, click_rect, press, type_text
from .agent import SentienceAgent
from .agent import SentienceAgent, SentienceAgentAsync
from .agent_config import AgentConfig

# Agent Layer (Phase 1 & 2)
Expand Down Expand Up @@ -70,6 +70,7 @@

# Formatting (v0.12.0+)
from .utils.formatting import format_snapshot_for_llm
from .visual_agent import SentienceVisualAgent, SentienceVisualAgentAsync
from .wait import wait_for

__version__ = "0.92.1"
Expand Down Expand Up @@ -119,6 +120,9 @@
"AnthropicProvider",
"LocalLLMProvider",
"SentienceAgent",
"SentienceAgentAsync",
"SentienceVisualAgent",
"SentienceVisualAgentAsync",
"ConversationalAgent",
# Agent Layer Models
"AgentActionResult",
Expand Down
Loading
Loading