dashai_server_info
Check whether the dashAI backend is reachable and summarize loaded datasets, runs, and queue state. Use it first to tell if errors stem from a down server or a missing ID.
Instructions
Checks that dashAI is running and summarizes what is loaded.
Call this FIRST when something fails or when you do not know whether the backend is up: it tells "dashAI is down" apart from "that id does not exist", which are two problems with different fixes.
Args: params (NoArgs): no parameters.
Returns: str: JSON with the following schema: { "base_url": str, # which instance is being targeted "reachable": bool, # whether it responded "datasets": int, # number of loaded datasets "runs": int, # number of recorded runs "queue_empty": bool # whether the job queue is empty } On failure: "Error: ".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| params | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |