removed comments

This commit is contained in:
nicole pardal 2025-09-24 11:49:19 -07:00
parent d3afa37b11
commit 8dd1d7cb02
2 changed files with 0 additions and 15 deletions

View File

@ -11,7 +11,6 @@ def main() -> None:
client = Client()
browser = Browser(initial_state=None, client=client)
# Tool schemas
browser_search_schema = {
'type': 'function',
'function': {

View File

@ -41,13 +41,9 @@ class CrawlClient(Protocol):
def crawl(self, urls: List[str]): ...
# ---- Constants ---------------------------------------------------------------
DEFAULT_VIEW_TOKENS = 1024
CAPPED_TOOL_CONTENT_LEN = 8000
# ---- Helpers ----------------------------------------------------------------
def cap_tool_content(text: str) -> str:
if not text:
@ -68,9 +64,6 @@ def _safe_domain(u: str) -> str:
return u
# ---- BrowserState ------------------------------------------------------------
class BrowserState:
def __init__(self, initial_state: Optional[BrowserStateData] = None):
self._data = initial_state or BrowserStateData(view_tokens=DEFAULT_VIEW_TOKENS)
@ -82,9 +75,6 @@ class BrowserState:
self._data = data
# ---- Browser ----------------------------------------------------------------
class Browser:
def __init__(
self,
@ -203,8 +193,6 @@ class Browser:
return header + '\n'.join(body_lines)
# ---- page builders ----
def _build_search_results_page_collection(self, query: str, results: Dict[str, Any]) -> Page:
page = Page(
url=f'search_results_{query}',
@ -338,8 +326,6 @@ class Browser:
find_page.lines = self._wrap_lines(find_page.text, 80)
return find_page
# ---- public API: search / open / find ------------------------------------
def search(self, *, query: str, topn: int = 5) -> Dict[str, Any]:
if not self._client:
raise RuntimeError('Client not provided')