first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled

This commit is contained in:
2026-03-17 16:22:57 +03:30
commit 3d5eaf9445
15349 changed files with 2847338 additions and 0 deletions
@@ -0,0 +1,186 @@
import type { BaseChatModel } from '@langchain/core/language_models/chat_models';
import { AIMessageChunk } from '@langchain/core/messages';
import { mock } from 'jest-mock-extended';
import { runLLMValidation } from '../model';
describe('Guardrail Model Helpers', () => {
describe('Output Format Validation', () => {
it('should validate output contains only expected fields', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
confidenceScore: 0.5,
flagged: false,
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
expect(result.tripwireTriggered).toBe(false);
expect(result.confidenceScore).toBe(0.5);
expect(result.executionFailed).toBe(false);
});
it('should reject output with extra fields', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
confidenceScore: 0.3,
flagged: false,
extraField: 'should not be here',
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
// Should fail due to strict schema validation
expect(result.executionFailed).toBe(true);
expect(result.tripwireTriggered).toBe(true);
});
it('should reject output with renamed fields', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
score: 0.3,
isViolation: false,
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
// Should fail due to missing required fields
expect(result.executionFailed).toBe(true);
expect(result.tripwireTriggered).toBe(true);
});
it('should handle complex nested response structures', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
analysis: {
confidenceScore: 0.8,
flagged: true,
},
confidenceScore: 0.2,
flagged: false,
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
// Should fail due to extra nested fields
expect(result.executionFailed).toBe(true);
});
it('should validate field types are correct', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
confidenceScore: '0.5',
flagged: 'false',
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
// Should fail due to incorrect types
expect(result.executionFailed).toBe(true);
});
it('should correctly evaluate confidence threshold', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
confidenceScore: 0.8,
flagged: true,
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
expect(result.tripwireTriggered).toBe(true);
expect(result.confidenceScore).toBe(0.8);
expect(result.executionFailed).toBe(false);
});
it('should not trigger when confidence is below threshold', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
confidenceScore: 0.6,
flagged: true,
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
expect(result.tripwireTriggered).toBe(false);
expect(result.confidenceScore).toBe(0.6);
});
it('should require both flagged and threshold conditions', async () => {
const mockModel = mock<BaseChatModel>();
mockModel.invoke.mockResolvedValue(
new AIMessageChunk({
content: JSON.stringify({
confidenceScore: 0.9,
flagged: false,
}),
}),
);
const result = await runLLMValidation('test-guardrail', 'test input', {
model: mockModel,
prompt: 'Test prompt',
threshold: 0.7,
});
// High confidence but not flagged = should not trigger
expect(result.tripwireTriggered).toBe(false);
});
});
});