DocsAI Intelligencebrowser_llm_status

browser_llm_status

browser_llm_status

Check if the LLM is ready to use. When context_id is provided, returns the LLM configuration and status for that specific context (which may use an external LLM provider like OpenAI). When context_id is omitted, returns the global built-in LLM status. Response includes: status ('ready', 'loading', 'unavailable'), type ('builtin', 'external', 'none'), and for external LLMs: endpoint and model name.

When to use browser_llm_status

Use browser_llm_status when you need to let an AI model understand or act on a page in natural language. It is part of Owl Browser's AI Intelligence toolset and runs inside a self-hosted, source-level stealth engine, so every call inherits the same undetectable browser fingerprint as the rest of your automation — no separate anti-detect setup required.

Usage Example

1234567891011
import asyncio
from owl_browser import OwlBrowser, RemoteConfig
# Async usage
async with OwlBrowser(config) as browser:
context = await browser.create_context()
context_id = context["context_id"]
await browser.llm_status(
)

Parameters

Optional

context_idstring

Optional browser context ID. When provided, returns LLM status for that specific context (which may use an external LLM endpoint). When omitted, returns global built-in LLM status.

Response

Returns a JSON object with the operation result.

{
  "success": true,
  "result": <value>
}

Frequently Asked Questions

What does browser_llm_status do?

Check if the LLM is ready to use. When context_id is provided, returns the LLM configuration and status for that specific context (which may use an external LLM provider like OpenAI). When context_id is omitted, returns the global built-in LLM status. Response includes: status ('ready', 'loading', 'unavailable'), type ('builtin', 'external', 'none'), and for external LLMs: endpoint and model name. It belongs to Owl Browser's AI Intelligence category and is available through the REST API, the Python SDK (browser.llm_status()), the Node.js SDK, and the MCP server.

What parameters does browser_llm_status accept?

browser_llm_status accepts 0 required parameters and 1 optional parameter. All parameters are sent as JSON in a POST request to /api/execute/browser_llm_status.

Is browser_llm_status detectable by anti-bot systems like Cloudflare or DataDome?

No. browser_llm_status executes inside Owl Browser's Chromium engine, which applies fingerprint spoofing at the C++ source level rather than through JavaScript patches. Every tool call shares the same consistent, human-like fingerprint, so anti-bot systems such as Cloudflare, DataDome, and Akamai see an ordinary browser.

Related Tools

Browse the full Owl Browser API reference or get started with the Python SDK and Node.js SDK.