classes
TestResult
contains the results of running a test
overview
the TestResult
class represents the complete results of running a test, including the test definition, evaluation results, transcript, and any errors that occurred.
constructor
parameters
test
(Test): the test that was runevaluation_results
(Optional[EvaluationResponse]): results from evaluating the test, if evaluation was successfultranscript
(List[ChatCompletionMessageParam]): complete transcript of the test callstereo_recording_url
(str): url to the stereo recording of the callerror
(Optional[str]): error message if the test failed, none otherwise
notes
- returned by TestRunner.run_tests() as a list of results
- contains all information about the test execution
- evaluation_results may be none if evaluation failed
- error will be set if the test failed to complete
- transcript contains the full conversation between the test agent and your voice agent