## Model Search `ai.models.list(ModelListParams**kwargs) -> SyncV4PagePaginationArray[object]` **get** `/accounts/{account_id}/ai/models/search` Searches Workers AI models by name or description. ### Parameters - `account_id: str` - `author: Optional[str]` Filter by Author - `hide_experimental: Optional[bool]` Filter to hide experimental models - `page: Optional[int]` - `per_page: Optional[int]` - `search: Optional[str]` Search - `source: Optional[float]` Filter by Source Id - `task: Optional[str]` Filter by Task Name ### Returns - `object` ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted ) page = client.ai.models.list( account_id="023e105f4ecef8ad9ca31a8372d0c353", ) page = page.result[0] print(page) ``` #### Response ```json { "errors": [ {} ], "messages": [ "string" ], "result": [ {} ], "success": true } ```