lbm_run_scan
Start a monitoring scan for a project, sending prompts to configured LLMs and collecting responses. Returns a pending scan object. Requires project ID.
Instructions
WHEN TO USE: To start a new monitoring scan for a project — sends prompts to all configured LLMs and collects responses. REQUIRES: project_id from lbm_list_projects. Project must have at least one prompt (use lbm_add_prompts if needed). RETURNS: Created scan object with scan_id and status="pending". NEXT STEP: Poll lbm_get_scan_status with scan_id until status="completed". CAUTION: This SPENDS user credits. Always confirm with the user before running.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| models | No | Optional: override which LLM models to use for this scan. Defaults to project models. | |
| project_id | Yes | Project ID to scan | |
| prompt_ids | No | Optional: specific prompt IDs to scan. Default: all project prompts. | |
| use_web_search | No | Optional: enable web search for this scan |