Evaluators
LocalEvaluator
evaluates call transcripts locally using openai’s gpt models
overview
the LocalEvaluator
class is an implementation of the BaseEvaluator
that evaluates call transcripts locally using openai’s gpt models. it assesses the interaction against the scenario’s evaluation criteria.
constructor
parameters
model
(str, optional): the openai model to use for evaluation. defaults to “gpt-4o”.
methods
evaluate()
evaluates a call transcript against the scenario’s evaluation criteria.
parameters
scenario
(Scenario): the scenario to evaluatetranscript
(List[ChatCompletionMessageParam]): the transcript of the callstereo_recording_url
(str): url of the stereo recording of the call (not used in local evaluation)
returns
Optional[EvaluationResponse]
: the evaluation results, containing a list of evaluation results and any extra data
example usage
notes
- requires an openai api key to be set in the environment variables
- evaluates transcripts using gpt models without requiring any external service
- suitable for development and testing when you don’t need advanced analytics
- does not analyze audio or provide a web interface for results
- see also CloudEvaluator