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
|
- import Replicate from 'replicate';
- import { disableCache, enableCache, isCacheEnabled } from '../../src/cache';
- import {
- DefaultModerationProvider,
- ReplicateProvider,
- ReplicateModerationProvider,
- ReplicateImageProvider,
- } from '../../src/providers/replicate';
- jest.mock('replicate');
- jest.mock('../../src/cache');
- const MockedReplicate = jest.mocked(Replicate, { shallow: false });
- describe('ReplicateProvider', () => {
- const mockApiKey = 'test-api-key';
- beforeEach(() => {
- jest.resetAllMocks();
- disableCache();
- });
- afterEach(() => {
- enableCache();
- });
- it('should handle successful API calls', async () => {
- const mockRun = jest.fn().mockResolvedValue(['test response']);
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callApi('test prompt');
- expect(result.output).toBe('test response');
- expect(mockRun).toHaveBeenCalledWith('test-model', {
- input: expect.any(Object),
- });
- });
- it('should handle API errors', async () => {
- const mockRun = jest.fn().mockRejectedValue(new Error('API Error'));
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callApi('test prompt');
- expect(result.error).toBe('API call error: Error: API Error');
- });
- it('should handle prompt prefix and suffix', async () => {
- const mockRun = jest.fn().mockResolvedValue(['test response']);
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateProvider('test-model', {
- config: {
- apiKey: mockApiKey,
- prompt: {
- prefix: 'prefix_',
- suffix: '_suffix',
- },
- },
- });
- await provider.callApi('test');
- expect(mockRun).toHaveBeenCalledWith('test-model', {
- input: expect.objectContaining({
- prompt: 'prefix_test_suffix',
- }),
- });
- });
- });
- describe('ReplicateModerationProvider', () => {
- const mockApiKey = 'test-api-key';
- beforeEach(() => {
- jest.resetAllMocks();
- disableCache();
- });
- afterEach(() => {
- enableCache();
- });
- it('should handle safe content correctly', async () => {
- const mockRun = jest.fn().mockResolvedValue('safe\n');
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateModerationProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callModerationApi('safe prompt', 'safe response');
- expect(result.flags).toEqual([]);
- expect(mockRun).toHaveBeenCalledWith('test-model', {
- input: {
- prompt: 'safe prompt',
- assistant: 'safe response',
- },
- });
- });
- it('should handle unsafe content with multiple flags', async () => {
- const mockRun = jest.fn().mockResolvedValue('unsafe\nS1,S2,S3');
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateModerationProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callModerationApi('unsafe prompt', 'unsafe response');
- expect(result.flags).toEqual([
- { code: 'S1', description: 'Violent Crimes (S1)', confidence: 1 },
- { code: 'S2', description: 'Non-Violent Crimes (S2)', confidence: 1 },
- { code: 'S3', description: 'Sex Crimes (S3)', confidence: 1 },
- ]);
- });
- it('should handle all possible LLAMAGUARD codes', async () => {
- const mockRun = jest
- .fn()
- .mockResolvedValue('unsafe\nS1,S2,S3,S4,S5,S6,S7,S8,S9,S10,S11,S12,S13');
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateModerationProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callModerationApi('test prompt', 'test response');
- expect(result.flags).toHaveLength(13);
- expect(result.flags).toContainEqual({
- code: 'S4',
- description: 'Child Exploitation (S4)',
- confidence: 1,
- });
- expect(result.flags).toContainEqual({
- code: 'S5',
- description: 'Defamation (S5)',
- confidence: 1,
- });
- expect(result.flags).toContainEqual({
- code: 'S13',
- description: 'Elections (S13)',
- confidence: 1,
- });
- });
- it('should handle API errors gracefully', async () => {
- const mockError = new Error('API Error');
- const mockRun = jest.fn().mockRejectedValue(mockError);
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateModerationProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callModerationApi('test prompt', 'test response');
- expect(result.error).toBe('API call error: Error: API Error');
- });
- it('should handle malformed API responses', async () => {
- const mockRun = jest.fn().mockResolvedValue(undefined);
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateModerationProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- const result = await provider.callModerationApi('test prompt', 'test response');
- expect(result.error).toBe(
- 'API response error: Error: API response error: no output: undefined',
- );
- });
- it('should require API key', async () => {
- const provider = new ReplicateModerationProvider('test-model');
- await expect(provider.callModerationApi('test', 'test')).rejects.toThrow(
- 'Replicate API key is not set',
- );
- });
- it('should bypass cache when disabled', async () => {
- const mockRun = jest.fn().mockResolvedValue('unsafe\nS1');
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateModerationProvider('test-model', {
- config: { apiKey: mockApiKey },
- });
- disableCache();
- jest.mocked(isCacheEnabled).mockReturnValue(false);
- await provider.callModerationApi('test prompt', 'test response');
- await provider.callModerationApi('test prompt', 'test response');
- expect(mockRun).toHaveBeenCalledTimes(2);
- });
- });
- describe('ReplicateImageProvider', () => {
- const mockApiKey = 'test-api-key';
- beforeEach(() => {
- jest.resetAllMocks();
- disableCache();
- });
- afterEach(() => {
- enableCache();
- });
- it('should handle successful image generation', async () => {
- const mockImageUrl = 'https://example.com/image.png';
- const mockRun = jest.fn().mockResolvedValue([mockImageUrl]);
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateImageProvider('test-model', {
- config: {
- width: 512,
- height: 512,
- },
- env: {
- REPLICATE_API_KEY: mockApiKey,
- },
- });
- const result = await provider.callApi('test prompt');
- expect(result.output).toBe(``);
- expect(mockRun).toHaveBeenCalledWith('test-model', {
- input: {
- width: 512,
- height: 512,
- prompt: 'test prompt',
- },
- });
- });
- it('should handle API errors', async () => {
- const mockRun = jest.fn().mockResolvedValue([]);
- MockedReplicate.prototype.run = mockRun;
- const provider = new ReplicateImageProvider('test-model', {
- env: {
- REPLICATE_API_KEY: mockApiKey,
- },
- });
- const result = await provider.callApi('test prompt');
- expect(result.error).toBe('No image URL found in response: []');
- });
- });
- describe('DefaultModerationProvider', () => {
- it('should be configured with the correct model', () => {
- expect(DefaultModerationProvider.modelName).toBe(
- 'meta/llama-guard-3-8b:146d1220d447cdcc639bc17c5f6137416042abee6ae153a2615e6ef5749205c8',
- );
- });
- });
|