August 15, 2023
Release highlights
This release includes a number of improvements for the developer experience when using the ValidMind Library, along with a visual redesign of the ValidMind Platform.
ValidMind Library (v1.17.0)
Improved developer experience for the Metric test class
We made a number of enhancements to the ValidMind Library to improve the experience for developers.
Better test organization
Added a metadata
and tags
attribute to the Test
base class for better categorization and filtering of tests.
Better filtering
Added a new task_type
argument to the list_tests()
function to allow simple filtering by task_type
set in a test.
Clearer naming
Renamed required_context
to required_inputs
across the whole ValidMind Python Library API.
Enhancements to test configuration discovery
To make the discovery of required context and default configuration easier, this update includes a number of changes to how required_context
and default_parameters
are presented.
Preview template expansion
With vm.preview_template()
, you can now view detailed, expandable information for each content block driven by a test. This includes the test’s name, description, required context, and default parameters.
Simplified test listing
The vm.tests.list_tests()
function has been refined to show only the ID
, Name
, and Description
for each test, making it more user-friendly.
Detailed test descriptions
You can now obtain complete test details, including required_context
and default_params
, using the vm.tests.describe_test()
function.
Retrieve test suite
The new function vm.get_test_suite()
allows you to access a specific test suite instance via the high-level Python Library API.
Access to default configuration
A new method, get_default_config()
, is now part of both the TestPlan and TestSuite classes, letting you obtain a dictionary containing all the configuration parameters used by the tests.
Easier required context
A complementary new method, get_context_data()
, now returns a list of all the context variables needed for tests to run, making it easier for you to ensure that everything is set up correctly.
ValidMind Platform (v1.4.10)
How to upgrade
ValidMind Platform
To access the latest version of the ValidMind Platform,1 hard refresh your browser tab:
- Windows:
Ctrl
+Shift
+R
ORCtrl
+F5
- MacOS:
⌘ Cmd
+Shift
+R
OR hold down⌘ Cmd
and click theReload
button
ValidMind Library
To upgrade the ValidMind Library:2
In your Jupyter Notebook:
Then within a code cell or your terminal, run:
%pip install --upgrade validmind
You may need to restart your kernel after running the upgrade package for changes to be applied.