You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## SentienceDebugger: attach to your existing agent framework (sidecar mode)
81
+
## PredicateDebugger: attach to your existing agent framework (sidecar mode)
82
82
83
83
If you already have an agent loop (LangGraph, browser-use, custom planner/executor), you can keep it and attach Predicate as a **verifier + trace layer**.
84
84
85
85
Key idea: your agent still decides and executes actions — Predicate **snapshots and verifies outcomes**.
86
86
87
87
```python
88
-
from predicate importSentienceDebugger, create_tracer
88
+
from predicate importPredicateDebugger, create_tracer
89
89
from predicate.verification import exists, url_contains
90
90
91
91
92
92
asyncdefrun_existing_agent(page) -> None:
93
93
# page: playwright.async_api.Page (owned by your agent/framework)
94
94
tracer = create_tracer(run_id="run-123") # local JSONL by default
0 commit comments