Spaces:
Paused
Paused
File size: 36,934 Bytes
aceb1b2 | 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 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 | """
Live Agent Runner
Manages an AI agent that browses the web via Playwright, controlled by an LLM.
Annotators can observe, pause, instruct, or take over the agent in real time.
The agent loop runs in a background thread with its own asyncio event loop.
Communication with Flask routes happens through thread-safe state and queues.
"""
import asyncio
import base64
import json
import logging
import os
import threading
import time
import uuid
from dataclasses import dataclass, field
from enum import Enum
from queue import Queue, Empty
from typing import Any, Callable, Dict, List, Optional
logger = logging.getLogger(__name__)
class AgentState(Enum):
"""States of the agent lifecycle."""
IDLE = "idle"
RUNNING = "running"
PAUSED = "paused"
TAKEOVER = "takeover"
COMPLETED = "completed"
ERROR = "error"
@dataclass
class AgentStep:
"""A single step in the agent's execution."""
step_index: int
screenshot_path: str
action: Dict[str, Any]
thought: str
observation: str
timestamp: float
url: str = ""
viewport: Optional[Dict[str, int]] = None
coordinates: Optional[Dict[str, int]] = None
element: Optional[Dict[str, Any]] = None
annotator_instruction: Optional[str] = None
def to_dict(self) -> Dict[str, Any]:
d = {
"step_index": self.step_index,
"screenshot_url": self.screenshot_path,
"action_type": self.action.get("type", "unknown"),
"action": self.action,
"thought": self.thought,
"observation": self.observation,
"timestamp": self.timestamp,
"url": self.url,
}
if self.viewport:
d["viewport"] = self.viewport
if self.coordinates:
d["coordinates"] = self.coordinates
if self.element:
d["element"] = self.element
if self.annotator_instruction:
d["annotator_instruction"] = self.annotator_instruction
return d
@dataclass
class AgentConfig:
"""Configuration for the agent runner."""
max_steps: int = 30
step_delay: float = 1.0
viewport_width: int = 1280
viewport_height: int = 720
system_prompt: str = ""
model: str = "claude-sonnet-4-20250514"
api_key: str = ""
max_tokens: int = 4096
temperature: float = 0.3
endpoint_type: str = "anthropic_vision"
history_window: int = 5 # Number of recent steps to include in LLM context
timeout: int = 60 # Per-request timeout in seconds
base_url: str = "" # For Ollama: server URL
@classmethod
def from_config(cls, config: Dict[str, Any]) -> "AgentConfig":
"""Create AgentConfig from a live_agent YAML config dict."""
ai_config = config.get("ai_config", {})
viewport = config.get("viewport", {})
endpoint_type = config.get("endpoint_type", "anthropic_vision")
# API key: Ollama doesn't need one; OpenAI-compatible servers
# (e.g. vLLM) ignore it but the SDK requires a non-empty string.
if endpoint_type == "ollama_vision":
api_key = ai_config.get("api_key", "")
default_model = "gemma3:4b"
elif endpoint_type == "openai_vision":
api_key = ai_config.get("api_key", os.environ.get("OPENAI_API_KEY", "EMPTY"))
default_model = "" # must be set explicitly (e.g. served model id)
else:
api_key = ai_config.get("api_key", os.environ.get("ANTHROPIC_API_KEY", ""))
default_model = "claude-sonnet-4-20250514"
return cls(
max_steps=config.get("max_steps", 30),
step_delay=config.get("step_delay", 1.0),
viewport_width=viewport.get("width", 1280),
viewport_height=viewport.get("height", 720),
system_prompt=config.get("system_prompt", DEFAULT_SYSTEM_PROMPT),
model=ai_config.get("model", default_model),
api_key=api_key,
max_tokens=ai_config.get("max_tokens", 4096),
temperature=ai_config.get("temperature", 0.3),
endpoint_type=endpoint_type,
history_window=config.get("history_window", 5),
timeout=ai_config.get("timeout", 60),
base_url=ai_config.get("base_url", "http://localhost:11434"),
)
DEFAULT_SYSTEM_PROMPT = """You are a web browsing agent. You can see screenshots of web pages and take actions to complete tasks.
For each step, analyze the current screenshot and respond with a JSON object:
{
"thought": "Your reasoning about what you see and what to do next",
"action": {
"type": "click|type|scroll|navigate|wait|done",
// For click: "x": 100, "y": 200
// For type: "text": "hello world"
// For scroll: "direction": "up|down", "amount": 300
// For navigate: "url": "https://..."
// For wait: (no extra fields)
// For done: "summary": "Task completed because..."
}
}
Always respond with valid JSON only. No markdown, no extra text."""
class AgentRunner:
"""
Runs an AI agent that browses the web via Playwright.
The agent loop:
1. Takes a screenshot
2. Sends it to the LLM with context/history
3. Parses the LLM response for an action
4. Executes the action via Playwright
5. Emits events to all listeners (for SSE)
6. Repeats until done, error, or max_steps
Thread-safe control methods allow pause/resume/instruct/takeover.
"""
def __init__(self, session_id: str, config: AgentConfig, screenshot_dir: str):
self.session_id = session_id
self.config = config
self.screenshot_dir = screenshot_dir
# State
self._state = AgentState.IDLE
self._state_lock = threading.Lock()
self._steps: List[AgentStep] = []
self._error: Optional[str] = None
# Control
self._pause_event = threading.Event()
self._pause_event.set() # Not paused initially
self._stop_flag = threading.Event()
self._instruction_queue: Queue = Queue()
self._takeover_actions: Queue = Queue()
# Listeners for SSE
self._listeners: List[Callable] = []
self._listeners_lock = threading.Lock()
# Annotator interactions log
self._interactions: List[Dict[str, Any]] = []
# Playwright session (set during run)
self._playwright_session = None
self._llm_client = None
# Background thread
self._thread: Optional[threading.Thread] = None
@property
def state(self) -> AgentState:
with self._state_lock:
return self._state
@state.setter
def state(self, new_state: AgentState):
with self._state_lock:
old_state = self._state
self._state = new_state
self._emit_event("state_change", {
"old_state": old_state.value,
"new_state": new_state.value,
"timestamp": time.time(),
})
@property
def steps(self) -> List[AgentStep]:
return list(self._steps)
@property
def step_count(self) -> int:
return len(self._steps)
@property
def error(self) -> Optional[str]:
return self._error
# --- Control methods (thread-safe) ---
def pause(self):
"""Pause the agent loop after the current step completes."""
if self.state == AgentState.RUNNING:
self._pause_event.clear()
self.state = AgentState.PAUSED
logger.info(f"[{self.session_id}] Agent paused")
def resume(self):
"""Resume a paused agent."""
if self.state == AgentState.PAUSED:
self.state = AgentState.RUNNING
self._pause_event.set()
logger.info(f"[{self.session_id}] Agent resumed")
def inject_instruction(self, instruction: str):
"""Send an instruction to the agent (processed at next step)."""
self._instruction_queue.put(instruction)
self._interactions.append({
"type": "instruction",
"text": instruction,
"timestamp": time.time(),
"step_index": self.step_count,
})
self._emit_event("instruction_received", {"instruction": instruction})
logger.info(f"[{self.session_id}] Instruction injected: {instruction[:100]}")
def enter_takeover(self):
"""Switch to manual takeover mode."""
if self.state in (AgentState.RUNNING, AgentState.PAUSED):
self._pause_event.clear() # Pause the agent loop
self.state = AgentState.TAKEOVER
self._interactions.append({
"type": "takeover_start",
"timestamp": time.time(),
"step_index": self.step_count,
})
logger.info(f"[{self.session_id}] Takeover mode entered")
def exit_takeover(self):
"""Exit manual takeover and resume the agent."""
if self.state == AgentState.TAKEOVER:
self._interactions.append({
"type": "takeover_end",
"timestamp": time.time(),
"step_index": self.step_count,
})
self.state = AgentState.RUNNING
self._pause_event.set()
logger.info(f"[{self.session_id}] Takeover mode exited")
def submit_manual_action(self, action: Dict[str, Any]):
"""Submit a manual action during takeover mode."""
if self.state == AgentState.TAKEOVER:
self._takeover_actions.put(action)
def stop(self):
"""Stop the agent loop."""
self._stop_flag.set()
self._pause_event.set() # Unblock if paused
logger.info(f"[{self.session_id}] Stop requested")
# --- Listener management ---
def add_listener(self, callback: Callable):
"""Add an SSE listener callback."""
with self._listeners_lock:
self._listeners.append(callback)
def remove_listener(self, callback: Callable):
"""Remove an SSE listener callback."""
with self._listeners_lock:
self._listeners = [l for l in self._listeners if l is not callback]
def _emit_event(self, event_type: str, data: Dict[str, Any]):
"""Emit an event to all listeners."""
event = {"type": event_type, "data": data, "session_id": self.session_id}
with self._listeners_lock:
for listener in self._listeners:
try:
listener(event)
except Exception as e:
logger.warning(f"Listener error: {e}")
# --- Main agent loop ---
def start(self, task_description: str, start_url: str):
"""Start the agent in a background thread."""
if self.state != AgentState.IDLE:
raise RuntimeError(f"Cannot start agent in state {self.state}")
self._thread = threading.Thread(
target=self._run_thread,
args=(task_description, start_url),
daemon=True,
name=f"agent-{self.session_id}",
)
self._thread.start()
def _run_thread(self, task_description: str, start_url: str):
"""Thread target: runs the async agent loop."""
loop = asyncio.new_event_loop()
asyncio.set_event_loop(loop)
try:
loop.run_until_complete(self._run_async(task_description, start_url))
except Exception as e:
logger.error(f"[{self.session_id}] Agent thread error: {e}")
self._error = str(e)
self.state = AgentState.ERROR
self._emit_event("error", {"message": str(e)})
finally:
loop.close()
async def _run_async(self, task_description: str, start_url: str):
"""Async agent loop."""
from potato.web_playwright import PlaywrightSession
self.state = AgentState.RUNNING
# Initialize Playwright
self._playwright_session = PlaywrightSession(
width=self.config.viewport_width,
height=self.config.viewport_height,
)
started = await self._playwright_session.start(start_url)
if not started:
raise RuntimeError("Failed to start Playwright browser session")
# Initialize LLM client
self._init_llm_client()
self._emit_event("started", {
"task": task_description,
"start_url": start_url,
"max_steps": self.config.max_steps,
})
try:
for step_index in range(self.config.max_steps):
# Check stop flag
if self._stop_flag.is_set():
logger.info(f"[{self.session_id}] Stopped by user")
break
# Wait if paused (blocks until resume/stop)
while not self._pause_event.is_set():
if self._stop_flag.is_set():
break
# Handle takeover actions while paused in takeover mode
if self.state == AgentState.TAKEOVER:
await self._process_takeover_actions()
await asyncio.sleep(0.1)
if self._stop_flag.is_set():
break
# Check for injected instructions
instruction = None
try:
instruction = self._instruction_queue.get_nowait()
except Empty:
pass
# Execute one agent step
step = await self._agent_step(
step_index, task_description, instruction
)
self._steps.append(step)
# Check if agent decided it's done
if step.action.get("type") == "done":
logger.info(f"[{self.session_id}] Agent completed task")
break
# Step delay
if self.config.step_delay > 0:
await asyncio.sleep(self.config.step_delay)
self.state = AgentState.COMPLETED
self._emit_event("complete", {
"total_steps": len(self._steps),
"final_url": (await self._playwright_session.get_state()).get("url", ""),
})
finally:
await self._playwright_session.stop()
self._playwright_session = None
async def _agent_step(
self,
step_index: int,
task_description: str,
instruction: Optional[str] = None,
) -> AgentStep:
"""Execute a single agent step: screenshot → LLM → action → emit."""
# 1. Take screenshot
screenshot_bytes = await self._playwright_session.screenshot()
if not screenshot_bytes:
raise RuntimeError("Failed to capture screenshot")
screenshot_path = os.path.join(
self.screenshot_dir, f"step_{step_index:03d}.png"
)
os.makedirs(os.path.dirname(screenshot_path), exist_ok=True)
with open(screenshot_path, "wb") as f:
f.write(screenshot_bytes)
# 2. Get page state
page_state = await self._playwright_session.get_state()
# 3. Emit thinking event
self._emit_event("thinking", {
"step_index": step_index,
"screenshot_url": screenshot_path,
"url": page_state.get("url", ""),
})
# 4. Build messages and query LLM
screenshot_b64 = base64.b64encode(screenshot_bytes).decode("utf-8")
messages = self._build_llm_messages(
screenshot_b64, task_description, instruction
)
llm_response = self._query_llm(messages)
# 5. Parse action from response
thought, action = self._parse_action(llm_response)
# 6. Execute action
observation = await self._execute_action(action)
# 7. Build step
step = AgentStep(
step_index=step_index,
screenshot_path=screenshot_path,
action=action,
thought=thought,
observation=observation,
timestamp=time.time(),
url=page_state.get("url", ""),
viewport=page_state.get("viewport"),
coordinates=_extract_coordinates(action),
annotator_instruction=instruction,
)
# 8. Emit step event
self._emit_event("step", step.to_dict())
return step
def _build_llm_messages(
self,
screenshot_b64: str,
task_description: str,
instruction: Optional[str] = None,
) -> List[Dict[str, Any]]:
"""Build message list for the LLM vision API."""
messages = []
# System message
system_prompt = self.config.system_prompt or DEFAULT_SYSTEM_PROMPT
messages.append({"role": "system", "content": system_prompt})
# Task description
task_msg = f"Task: {task_description}"
if instruction:
task_msg += f"\n\nAnnotator instruction: {instruction}"
# Include recent step history
history_steps = self._steps[-self.config.history_window:]
if history_steps:
history_parts = []
for s in history_steps:
entry = f"Step {s.step_index}: thought='{s.thought}', action={json.dumps(s.action)}, observation='{s.observation}'"
history_parts.append(entry)
task_msg += "\n\nRecent history:\n" + "\n".join(history_parts)
messages.append({"role": "user", "content": task_msg})
# Current screenshot (as a separate user message with image)
messages.append({
"role": "user",
"content": [
{
"type": "image",
"source": {
"type": "base64",
"media_type": "image/png",
"data": screenshot_b64,
},
},
{
"type": "text",
"text": f"Current page screenshot (step {len(self._steps)}). What action should I take next?",
},
],
})
return messages
def _init_llm_client(self):
"""Initialize the LLM client based on endpoint_type."""
if self.config.endpoint_type == "anthropic_vision":
try:
import anthropic
except ImportError:
raise RuntimeError(
"anthropic package required. Install with: pip install anthropic"
)
api_key = self.config.api_key or os.environ.get("ANTHROPIC_API_KEY")
if not api_key:
raise RuntimeError(
"Anthropic API key required. Set in config or ANTHROPIC_API_KEY env var."
)
self._llm_client = anthropic.Anthropic(
api_key=api_key, timeout=self.config.timeout
)
elif self.config.endpoint_type == "ollama_vision":
try:
import ollama
except ImportError:
raise RuntimeError(
"ollama package required. Install with: pip install ollama"
)
host = self.config.base_url or "http://localhost:11434"
self._llm_client = ollama.Client(
host=host, timeout=self.config.timeout
)
# Verify connectivity
try:
self._llm_client.list()
logger.info(f"Connected to Ollama at {host}, model: {self.config.model}")
except Exception as e:
raise RuntimeError(f"Failed to connect to Ollama at {host}: {e}")
elif self.config.endpoint_type == "openai_vision":
try:
from openai import OpenAI
except ImportError:
raise RuntimeError(
"openai package required. Install with: pip install openai"
)
base_url = self.config.base_url or "https://api.openai.com/v1"
self._llm_client = OpenAI(
base_url=base_url,
api_key=self.config.api_key or "EMPTY",
timeout=self.config.timeout,
)
try:
self._llm_client.models.list()
logger.info(
f"Connected to OpenAI-compatible endpoint at {base_url}, "
f"model: {self.config.model}"
)
except Exception as e:
# Non-fatal: some servers gate /models; the chat call will
# surface a real error if the endpoint is truly unreachable.
logger.warning(
f"Could not list models at {base_url} ({e}); continuing."
)
else:
raise RuntimeError(
f"Unsupported endpoint_type: {self.config.endpoint_type}. "
f"Supported: 'anthropic_vision', 'ollama_vision', 'openai_vision'."
)
def _query_llm(self, messages: List[Dict[str, Any]]) -> str:
"""Send messages to the LLM and return the text response."""
if self.config.endpoint_type == "anthropic_vision":
return self._query_anthropic(messages)
elif self.config.endpoint_type == "ollama_vision":
return self._query_ollama(messages)
elif self.config.endpoint_type == "openai_vision":
return self._query_openai(messages)
raise RuntimeError(f"Unsupported endpoint type: {self.config.endpoint_type}")
def _query_openai(self, messages: List[Dict[str, Any]]) -> str:
"""Query an OpenAI-compatible vision endpoint (OpenAI, vLLM, etc.).
Converts the internal Anthropic-style message blocks into OpenAI
chat-completions format (image blocks become ``image_url`` data
URIs). Requests a JSON object response when the server supports it,
falling back gracefully if it does not.
"""
oai_messages = []
for msg in messages:
role = msg["role"]
content = msg.get("content", "")
if isinstance(content, str):
oai_messages.append({"role": role, "content": content})
continue
parts = []
for block in content:
if not isinstance(block, dict):
continue
if block.get("type") == "text":
parts.append({"type": "text", "text": block.get("text", "")})
elif block.get("type") == "image":
src = block.get("source", {})
if src.get("type") == "base64":
media = src.get("media_type", "image/png")
parts.append({
"type": "image_url",
"image_url": {
"url": f"data:{media};base64,{src['data']}"
},
})
oai_messages.append({"role": role, "content": parts})
kwargs = {
"model": self.config.model,
"messages": oai_messages,
"max_tokens": self.config.max_tokens,
"temperature": self.config.temperature,
}
def _is_rate_limit(exc) -> bool:
if getattr(exc, "status_code", None) == 429:
return True
s = str(exc).lower()
return ("429" in s or "rate limit" in s or "quota" in s
or "resource_exhausted" in s)
def _create(use_rf: bool):
if use_rf:
return self._llm_client.chat.completions.create(
response_format={"type": "json_object"}, **kwargs)
return self._llm_client.chat.completions.create(**kwargs)
# Transient 429s (per-minute rate/token bursts) are common mid-run
# even on paid tiers; back off and retry instead of failing the
# whole agent session.
backoffs = [5, 15, 30, 30, 30]
use_rf = True
attempt = 0
while True:
try:
resp = _create(use_rf)
break
except Exception as e:
if _is_rate_limit(e):
if attempt >= len(backoffs):
raise
wait = backoffs[attempt]
attempt += 1
logger.warning(
f"[{self.session_id}] LLM 429/rate-limited; "
f"retry {attempt}/{len(backoffs)} in {wait}s"
)
self._emit_event("thinking", {
"text": f"Rate-limited by the model API; "
f"waiting {wait}s before retrying…"
})
time.sleep(wait)
continue
if use_rf:
# Server may not support response_format; drop it once.
use_rf = False
continue
raise
return resp.choices[0].message.content or ""
def _query_anthropic(self, messages: List[Dict[str, Any]]) -> str:
"""Query Anthropic Claude with vision support."""
# Separate system message
system = ""
api_messages = []
for msg in messages:
if msg["role"] == "system":
system = msg["content"]
else:
api_messages.append(msg)
kwargs = {
"model": self.config.model,
"max_tokens": self.config.max_tokens,
"temperature": self.config.temperature,
"messages": api_messages,
}
if system:
kwargs["system"] = system
response = self._llm_client.messages.create(**kwargs)
return response.content[0].text
def _query_ollama(self, messages: List[Dict[str, Any]]) -> str:
"""Query Ollama vision model.
Converts Anthropic-format messages to Ollama format:
- System messages are prepended to the prompt text
- Multiple user messages are merged into a single message
- Content blocks with images use Ollama's 'images' key
"""
# Extract text and images from Anthropic-format messages
all_text_parts = []
all_images = []
for msg in messages:
content = msg.get("content", "")
if msg["role"] == "system":
if isinstance(content, str) and content:
all_text_parts.insert(0, content)
continue
if isinstance(content, list):
for block in content:
if isinstance(block, dict):
if block.get("type") == "text":
all_text_parts.append(block["text"])
elif block.get("type") == "image":
source = block.get("source", {})
if source.get("type") == "base64":
all_images.append(source["data"])
elif isinstance(content, str) and content:
all_text_parts.append(content)
ollama_msg = {
"role": "user",
"content": "\n\n".join(all_text_parts),
}
if all_images:
ollama_msg["images"] = all_images
options = {
"temperature": self.config.temperature,
"num_predict": self.config.max_tokens,
}
# Use Ollama's format schema to force structured JSON output
agent_schema = {
"type": "object",
"properties": {
"thought": {"type": "string"},
"action": {
"type": "object",
"properties": {
"type": {"type": "string"},
"x": {"type": "integer"},
"y": {"type": "integer"},
"text": {"type": "string"},
"url": {"type": "string"},
"direction": {"type": "string"},
"amount": {"type": "integer"},
"summary": {"type": "string"},
},
"required": ["type"],
},
},
"required": ["thought", "action"],
}
response = self._llm_client.chat(
model=self.config.model,
messages=[ollama_msg],
options=options,
format=agent_schema,
)
# Extract content from response (handle both dict and Pydantic model)
message = (
response.get("message")
if hasattr(response, "get")
else getattr(response, "message", None)
)
if message is None:
raise RuntimeError("No message in Ollama response")
content = (
message.get("content")
if hasattr(message, "get")
else getattr(message, "content", None)
)
# Some models (e.g. qwen3-vl) put responses in 'thinking' field
# and leave content empty. Extract the agent JSON from thinking.
if not content:
thinking = (
message.get("thinking")
if hasattr(message, "get")
else getattr(message, "thinking", None)
)
if thinking:
content = _extract_agent_json(thinking)
return content or ""
def _parse_action(self, llm_response: str) -> tuple:
"""Parse thought and action from LLM JSON response.
Returns:
(thought, action_dict)
"""
# Try to extract JSON from response
text = llm_response.strip()
# Handle markdown code blocks
if "```json" in text:
import re
match = re.search(r"```json\s*([\s\S]*?)\s*```", text)
if match:
text = match.group(1).strip()
elif "```" in text:
import re
match = re.search(r"```\s*([\s\S]*?)\s*```", text)
if match:
text = match.group(1).strip()
try:
parsed = json.loads(text)
except json.JSONDecodeError:
logger.warning(f"Failed to parse LLM response as JSON: {text[:200]}")
return text, {"type": "wait"}
thought = parsed.get("thought", "")
action = parsed.get("action", {"type": "wait"})
# Validate action has a type
if "type" not in action:
action["type"] = "wait"
return thought, action
async def _execute_action(self, action: Dict[str, Any]) -> str:
"""Execute an action via Playwright and return observation."""
action_type = action.get("type", "wait")
pw = self._playwright_session
try:
if action_type == "click":
x = int(action.get("x", 0))
y = int(action.get("y", 0))
success = await pw.click(x, y)
return f"Clicked at ({x}, {y})" if success else f"Click failed at ({x}, {y})"
elif action_type == "type":
text = action.get("text", "")
# Handle control characters via keyboard.press
if text == "\b":
success = await pw.page.keyboard.press("Backspace") or True
return "Pressed Backspace"
elif text == "\n":
success = await pw.page.keyboard.press("Enter") or True
return "Pressed Enter"
elif text == "\t":
success = await pw.page.keyboard.press("Tab") or True
return "Pressed Tab"
else:
success = await pw.type_text(text)
return f"Typed '{text}'" if success else f"Type failed: '{text}'"
elif action_type == "scroll":
direction = action.get("direction", "down")
amount = int(action.get("amount", 300))
dy = amount if direction == "down" else -amount
success = await pw.scroll(0, dy)
return f"Scrolled {direction} by {amount}px" if success else "Scroll failed"
elif action_type == "navigate":
url = action.get("url", "")
success = await pw.navigate(url)
return f"Navigated to {url}" if success else f"Navigation failed: {url}"
elif action_type == "wait":
await asyncio.sleep(1)
return "Waited 1 second"
elif action_type == "done":
summary = action.get("summary", "Task completed")
return summary
else:
logger.warning(f"Unknown action type: {action_type}")
return f"Unknown action: {action_type}"
except Exception as e:
logger.error(f"Action execution error: {e}")
return f"Error executing {action_type}: {e}"
async def _process_takeover_actions(self):
"""Process manual actions submitted during takeover mode."""
try:
action = self._takeover_actions.get_nowait()
except Empty:
return
pw = self._playwright_session
if not pw:
return
observation = await self._execute_action(action)
# Take screenshot after manual action
screenshot_bytes = await pw.screenshot()
step_index = len(self._steps)
screenshot_path = os.path.join(
self.screenshot_dir, f"step_{step_index:03d}_manual.png"
)
if screenshot_bytes:
with open(screenshot_path, "wb") as f:
f.write(screenshot_bytes)
page_state = await pw.get_state()
step = AgentStep(
step_index=step_index,
screenshot_path=screenshot_path,
action={**action, "_manual": True},
thought="[Manual takeover action]",
observation=observation,
timestamp=time.time(),
url=page_state.get("url", ""),
viewport=page_state.get("viewport"),
coordinates=_extract_coordinates(action),
)
self._steps.append(step)
self._emit_event("step", step.to_dict())
# --- Trace export ---
def get_trace(self) -> Dict[str, Any]:
"""Export the session as a web_agent_trace-compatible dict."""
return {
"steps": [s.to_dict() for s in self._steps],
"task_description": "", # Set by caller
"session_id": self.session_id,
"agent_config": {
"model": self.config.model,
"endpoint_type": self.config.endpoint_type,
"max_steps": self.config.max_steps,
},
"annotator_interactions": self._interactions,
"state": self.state.value,
"total_steps": len(self._steps),
}
def get_state_summary(self) -> Dict[str, Any]:
"""Get a summary of current state for API responses."""
return {
"session_id": self.session_id,
"state": self.state.value,
"step_count": len(self._steps),
"error": self._error,
"has_instructions_pending": not self._instruction_queue.empty(),
}
def _extract_agent_json(text: str) -> str:
"""Extract the last valid JSON object containing 'thought' or 'action' from text.
Some models (qwen3-vl) put their chain-of-thought in the thinking field
with the actual JSON answer embedded in the text. This function finds
that JSON, skipping any example/template JSON from the prompt.
"""
import re
# Find all JSON-like blocks (balanced braces)
candidates = []
depth = 0
start = None
for i, ch in enumerate(text):
if ch == "{":
if depth == 0:
start = i
depth += 1
elif ch == "}":
depth -= 1
if depth == 0 and start is not None:
candidates.append(text[start : i + 1])
start = None
# Try each candidate (last first — most likely to be the final answer)
for candidate in reversed(candidates):
try:
parsed = json.loads(candidate)
if isinstance(parsed, dict) and ("thought" in parsed or "action" in parsed):
return candidate
except (json.JSONDecodeError, ValueError):
continue
# Fallback: try greedy regex for any JSON
match = re.search(r"\{[^{}]*\}", text)
return match.group(0) if match else ""
def _extract_coordinates(action: Dict[str, Any]) -> Optional[Dict[str, int]]:
"""Extract x, y coordinates from an action if present."""
if "x" in action and "y" in action:
return {"x": int(action["x"]), "y": int(action["y"])}
return None
|