list_odoo_models
Retrieve available Odoo models from the registry, with optional filtering by a case-sensitive pattern. Returns up to 50 matching model names for streamlined database introspection.
Instructions
List available Odoo models, optionally filtered by pattern.
Queries the Odoo registry to retrieve all available model names.
If a pattern is provided, only models containing that pattern
in their name will be returned.
:param pattern: Optional pattern to filter model names (case-sensitive)
:type pattern: str
:return: List of model names, one per line
:rtype: str
.. note::
Results are limited to the first 50 matches to prevent overwhelming output.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pattern | No |
Input Schema (JSON Schema)
{
"properties": {
"pattern": {
"default": "",
"title": "Pattern",
"type": "string"
}
},
"title": "list_odoo_modelsArguments",
"type": "object"
}