# Harnesses While Vijil has a variety of pre-configured [harnesses](../../components/harnesses.md) that you can select from, you can also create your own harnesses in order to obtain a trust score from your preferred collection of [probes](../../components/probes.md). The following examples assume that you have already initialized a Vijil [client](run-your-first-test.md) named `client`. ## View harnesses You can view all available harnesses (include [pre-configured](../../components/harnesses.md) ones) with ``harnesses.list``: ```python client.harnesses.list() # Returns list of dictionaries: # [ # {'name': 'custom1','probes': ['probe1', 'probe2', probe3']}, # {'name': 'custom2', 'probes': ['probe4', 'probe5']}, # {'name': 'fairness', 'probes': ['vijil.probes.adultdata.CounterfactualGender', 'vijil.probes.winobias.ProfessionalBias']}, # ... # ] ```