@@ -521,11 +521,13 @@ def _get_api_text() -> str:
521521 inspect_exported = [
522522 "DataScan" ,
523523 "preview" ,
524+ "col_summary_tbl" ,
524525 "missing_vals_tbl" ,
525526 "get_column_count" ,
526527 "get_row_count" ,
527528 "load_dataset" ,
528529 "config" ,
530+ "assistant" ,
529531 ]
530532
531533 validate_desc = """When peforming data validation, you'll need the `Validate` class to get the
@@ -551,12 +553,14 @@ def _get_api_text() -> str:
551553report table (by printing the object or using `get_tabular_report()`), extract key metrics, or we
552554can split the data based on the validation results (with `get_sundered_data()`)."""
553555
554- inspect_desc = """The *Inspect* group contains functions that are helpful for getting to grips
555- on a new data table. Use the `DataScan` class to get a quick overview of the data, `preview()` to
556- see the first and last few rows of a table, `missing_vals_tbl()` to see where there are missing
557- values in a table, and `get_column_count()`/`get_row_count()` to get the number of columns and rows
558- in a table. Several datasets included in the package can be accessed via the `load_dataset()`
559- function. Finally, the `config()` utility lets us set global configuration parameters."""
556+ inspect_desc = """The *Inspection and Assistance* group contains functions that are helpful for
557+ getting to grips on a new data table. Use the `DataScan` class to get a quick overview of the data,
558+ `preview()` to see the first and last few rows of a table, `col_summary_tbl()` for a column-level
559+ summary of a table, `missing_vals_tbl()` to see where there are missing values in a table, and
560+ `get_column_count()`/`get_row_count()` to get the number of columns and rows in a table. Several
561+ datasets included in the package can be accessed via the `load_dataset()` function. Finally, the
562+ `config()` utility lets us set global configuration parameters. Want to chat with an assistant? Use
563+ the `assistant()` function to get help with Pointblank."""
560564
561565 #
562566 # Add headings (`*_desc` text) and API details for each family of functions/methods
0 commit comments