-
Notifications
You must be signed in to change notification settings - Fork 5k
/
Copy pathevaluators.test.ts
101 lines (97 loc) · 2.92 KB
/
evaluators.test.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import { expect } from 'vitest';
import {
formatEvaluatorExamples,
formatEvaluatorNames,
formatEvaluators,
} from '../src/providers/evaluators';
import type { Evaluator, HandlerCallback, IAgentRuntime, Memory, State } from '../src/types';
// Mock data for evaluators
/**
* Array of mock evaluators.
* @type {Evaluator[]}
*/
/**
* Array of mock evaluators for testing purposes.
* @type {Evaluator[]}
*/
const mockEvaluators: Evaluator[] = [
{
name: 'Evaluator1',
description: 'This is the first evaluator.',
examples: [
{
prompt: 'Context 1 with {{name1}}.',
outcome: 'Outcome 1 with {{name1}}.',
messages: [
{
name: 'name1',
content: { text: 'Message 1', actions: ['action1'] },
},
{ name: 'name2', content: { text: 'Message 2' } },
],
},
],
similes: [],
handler: (
_runtime: IAgentRuntime,
_message: Memory,
_state?: State,
_options?: { [key: string]: unknown },
_callback?: HandlerCallback
): Promise<unknown> => {
throw new Error('Function not implemented.');
},
validate: (_runtime: IAgentRuntime, _message: Memory, _state?: State): Promise<boolean> => {
throw new Error('Function not implemented.');
},
},
{
name: 'Evaluator2',
description: 'This is the second evaluator.',
examples: [
{
prompt: 'Context 2 with {{name1}} and {{name2}}.',
outcome: 'Outcome 2 with {{name1}} and {{name2}}.',
messages: [
{
name: 'name1',
content: { text: 'Message 1', actions: ['action1'] },
},
{ name: 'name2', content: { text: 'Message 2' } },
],
},
],
similes: [],
handler: (
_runtime: IAgentRuntime,
_message: Memory,
_state?: State,
_options?: { [key: string]: unknown },
_callback?: HandlerCallback
): Promise<unknown> => {
throw new Error('Function not implemented.');
},
validate: (_runtime: IAgentRuntime, _message: Memory, _state?: State): Promise<boolean> => {
throw new Error('Function not implemented.');
},
},
];
// Unit test for formatEvaluatorNames
test('formats evaluator names correctly', () => {
const result = formatEvaluatorNames(mockEvaluators);
expect(result).toBe("'Evaluator1',\n'Evaluator2'");
});
// Unit test for formatEvaluators
test('formats evaluators correctly', () => {
const result = formatEvaluators(mockEvaluators);
expect(result).toBe(
"'Evaluator1: This is the first evaluator.',\n'Evaluator2: This is the second evaluator.'"
);
});
// Unit test for formatEvaluatorExamples
test('formats evaluator examples correctly', () => {
const result = formatEvaluatorExamples(mockEvaluators);
expect(result).toContain('Prompt:\nContext 1 with');
expect(result).toContain('Outcome:\nOutcome 1 with');
expect(result).toContain('Messages:\nname1: Message 1 (action1)');
});