list_tables
Retrieve and list Hydrolix tables within a specified database to explore schema and streamline data query processes for LLM-based workflows.
Instructions
List available Hydrolix tables in a database
Input Schema
Name | Required | Description | Default |
---|---|---|---|
database | Yes | ||
like | No |
Input Schema (JSON Schema)
{
"properties": {
"database": {
"title": "Database",
"type": "string"
},
"like": {
"default": null,
"title": "Like",
"type": "string"
}
},
"required": [
"database"
],
"title": "list_tablesArguments",
"type": "object"
}