Skip to content

Commit 4cdfb20

Browse files
authored
Merge pull request #118 from SentienceAPI/visual_agent
Vision model based agents
2 parents d376a46 + 12b2670 commit 4cdfb20

File tree

2 files changed

+2061
-1
lines changed

2 files changed

+2061
-1
lines changed

sentience/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44

55
from .actions import click, click_rect, press, type_text
6-
from .agent import SentienceAgent
6+
from .agent import SentienceAgent, SentienceAgentAsync
77
from .agent_config import AgentConfig
88

99
# Agent Layer (Phase 1 & 2)
@@ -70,6 +70,7 @@
7070

7171
# Formatting (v0.12.0+)
7272
from .utils.formatting import format_snapshot_for_llm
73+
from .visual_agent import SentienceVisualAgent, SentienceVisualAgentAsync
7374
from .wait import wait_for
7475

7576
__version__ = "0.92.1"
@@ -119,6 +120,9 @@
119120
"AnthropicProvider",
120121
"LocalLLMProvider",
121122
"SentienceAgent",
123+
"SentienceAgentAsync",
124+
"SentienceVisualAgent",
125+
"SentienceVisualAgentAsync",
122126
"ConversationalAgent",
123127
# Agent Layer Models
124128
"AgentActionResult",

0 commit comments

Comments
 (0)