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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
- import { handleContextRelevance } from '../../src/assertions/contextRelevance';
- import * as contextUtils from '../../src/assertions/contextUtils';
- import { matchesContextRelevance } from '../../src/matchers';
- jest.mock('../../src/matchers');
- jest.mock('../../src/assertions/contextUtils');
- describe('handleContextRelevance', () => {
- beforeEach(() => {
- jest.clearAllMocks();
- });
- it('should pass when context relevance is above threshold', async () => {
- const mockResult = {
- pass: true,
- score: 0.9,
- reason: 'Context is highly relevant',
- metadata: {
- extractedSentences: ['Paris is the capital.'],
- totalContextSentences: 2,
- relevantSentenceCount: 1,
- insufficientInformation: false,
- score: 0.5,
- },
- };
- jest.mocked(matchesContextRelevance).mockResolvedValue(mockResult);
- jest.mocked(contextUtils.resolveContext).mockResolvedValue('test context');
- const result = await handleContextRelevance({
- assertion: {
- type: 'context-relevance',
- threshold: 0.8,
- },
- test: {
- vars: {
- query: 'What is the capital of France?',
- context: 'France is a country in Europe. Paris is the capital.',
- },
- options: {},
- },
- output: 'test output',
- prompt: 'test prompt',
- baseType: 'context-relevance',
- context: {
- prompt: 'test prompt',
- vars: {
- query: 'What is the capital of France?',
- context: 'France is a country in Europe. Paris is the capital.',
- },
- test: {
- vars: {
- query: 'What is the capital of France?',
- context: 'France is a country in Europe. Paris is the capital.',
- },
- options: {},
- },
- logProbs: undefined,
- provider: { id: () => 'id', config: {}, callApi: jest.fn() },
- providerResponse: { output: 'out', tokenUsage: {} },
- },
- inverse: false,
- outputString: 'test output',
- providerResponse: { output: 'out', tokenUsage: {} },
- } as any);
- expect(result.pass).toBe(true);
- expect(result.score).toBe(0.9);
- expect(result.reason).toBe('Context is highly relevant');
- expect(result.metadata).toEqual({
- context: 'test context',
- extractedSentences: ['Paris is the capital.'],
- totalContextSentences: 2,
- relevantSentenceCount: 1,
- insufficientInformation: false,
- score: 0.5,
- });
- expect(matchesContextRelevance).toHaveBeenCalledWith(
- 'What is the capital of France?',
- 'test context',
- 0.8,
- {},
- );
- });
- it('should fail when context relevance is below threshold', async () => {
- const mockResult = {
- pass: false,
- score: 0.3,
- reason: 'Context not relevant to query',
- metadata: {
- extractedSentences: [],
- totalContextSentences: 1,
- relevantSentenceCount: 0,
- insufficientInformation: true,
- score: 0,
- },
- };
- jest.mocked(matchesContextRelevance).mockResolvedValue(mockResult);
- jest.mocked(contextUtils.resolveContext).mockResolvedValue('irrelevant context');
- const result = await handleContextRelevance({
- assertion: {
- type: 'context-relevance',
- threshold: 0.7,
- },
- test: {
- vars: {
- query: 'What is the capital of France?',
- context: 'Information about weather patterns in Australia.',
- },
- options: {},
- },
- output: 'test output',
- prompt: 'test prompt',
- baseType: 'context-relevance',
- context: {
- prompt: 'test prompt',
- vars: {
- query: 'What is the capital of France?',
- context: 'Information about weather patterns in Australia.',
- },
- test: {
- vars: {
- query: 'What is the capital of France?',
- context: 'Information about weather patterns in Australia.',
- },
- options: {},
- },
- logProbs: undefined,
- provider: { id: () => 'id', config: {}, callApi: jest.fn() },
- providerResponse: { output: 'out', tokenUsage: {} },
- },
- inverse: false,
- outputString: 'test output',
- providerResponse: { output: 'out', tokenUsage: {} },
- } as any);
- expect(result.pass).toBe(false);
- expect(result.score).toBe(0.3);
- expect(result.reason).toBe('Context not relevant to query');
- expect(result.metadata).toEqual({
- context: 'irrelevant context',
- extractedSentences: [],
- totalContextSentences: 1,
- relevantSentenceCount: 0,
- insufficientInformation: true,
- score: 0,
- });
- expect(matchesContextRelevance).toHaveBeenCalledWith(
- 'What is the capital of France?',
- 'irrelevant context',
- 0.7,
- {},
- );
- });
- it('should use default threshold of 0 when not provided', async () => {
- const mockResult = { pass: true, score: 1, reason: 'Perfect relevance' };
- jest.mocked(matchesContextRelevance).mockResolvedValue(mockResult);
- jest.mocked(contextUtils.resolveContext).mockResolvedValue('test context');
- const result = await handleContextRelevance({
- assertion: {
- type: 'context-relevance',
- },
- test: {
- vars: {
- query: 'test query',
- context: 'test context',
- },
- options: {},
- },
- output: 'test output',
- prompt: 'test prompt',
- baseType: 'context-relevance',
- context: {
- prompt: 'test prompt',
- vars: { query: 'test query', context: 'test context' },
- test: { vars: { query: 'test query', context: 'test context' }, options: {} },
- logProbs: undefined,
- provider: { id: () => 'id', config: {}, callApi: jest.fn() },
- providerResponse: { output: 'out', tokenUsage: {} },
- },
- inverse: false,
- outputString: 'test output',
- providerResponse: { output: 'out', tokenUsage: {} },
- } as any);
- expect(matchesContextRelevance).toHaveBeenCalledWith('test query', 'test context', 0, {});
- expect(result.metadata).toEqual({
- context: 'test context',
- });
- });
- it('should throw error when test.vars is missing', async () => {
- await expect(
- handleContextRelevance({
- assertion: { type: 'context-relevance' },
- test: {
- vars: undefined,
- options: {},
- },
- output: 'test output',
- prompt: 'test prompt',
- baseType: 'context-relevance',
- context: {
- prompt: 'test prompt',
- vars: {},
- test: { vars: undefined, options: {} },
- logProbs: undefined,
- provider: { id: () => 'id', config: {}, callApi: jest.fn() },
- providerResponse: { output: 'out', tokenUsage: {} },
- },
- inverse: false,
- outputString: 'test output',
- providerResponse: { output: 'out', tokenUsage: {} },
- } as any),
- ).rejects.toThrow('context-relevance assertion requires a test with variables');
- });
- it('should throw error when query is missing', async () => {
- await expect(
- handleContextRelevance({
- assertion: { type: 'context-relevance' },
- test: {
- vars: {
- context: 'test context',
- },
- options: {},
- },
- output: 'test output',
- prompt: 'test prompt',
- baseType: 'context-relevance',
- context: {
- prompt: 'test prompt',
- vars: { context: 'test context' },
- test: { vars: { context: 'test context' }, options: {} },
- logProbs: undefined,
- provider: { id: () => 'id', config: {}, callApi: jest.fn() },
- providerResponse: { output: 'out', tokenUsage: {} },
- },
- inverse: false,
- outputString: 'test output',
- providerResponse: { output: 'out', tokenUsage: {} },
- } as any),
- ).rejects.toThrow(
- 'context-relevance assertion requires a "query" variable with the user question',
- );
- });
- it('should use contextTransform when provided', async () => {
- const mockResult = { pass: true, score: 1, reason: 'ok' };
- jest.mocked(matchesContextRelevance).mockResolvedValue(mockResult);
- jest.mocked(contextUtils.resolveContext).mockResolvedValue('cx');
- const result = await handleContextRelevance({
- assertion: {
- type: 'context-relevance',
- contextTransform: 'expr',
- },
- test: {
- vars: { query: 'q' },
- options: {},
- },
- baseType: 'context-relevance',
- context: {
- prompt: 'p',
- vars: {},
- test: { vars: { query: 'q' }, options: {} },
- logProbs: undefined,
- provider: { id: () => 'id', config: {}, callApi: jest.fn() },
- providerResponse: { output: 'out', tokenUsage: {} },
- },
- inverse: false,
- prompt: 'p',
- output: 'out',
- outputString: 'out',
- providerResponse: { output: 'out', tokenUsage: {} },
- } as any);
- expect(contextUtils.resolveContext).toHaveBeenCalledWith(
- { type: 'context-relevance', contextTransform: 'expr' },
- { vars: { query: 'q' }, options: {} },
- 'out',
- 'p',
- undefined,
- { output: 'out', tokenUsage: {} },
- );
- expect(matchesContextRelevance).toHaveBeenCalledWith('q', 'cx', 0, {});
- expect(result.metadata).toEqual({
- context: 'cx',
- });
- });
- });
|