-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathscenario-message-truncation.mjs
More file actions
84 lines (74 loc) · 2.32 KB
/
scenario-message-truncation.mjs
File metadata and controls
84 lines (74 loc) · 2.32 KB
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
import { instrumentAnthropicAiClient } from '@sentry/core';
import * as Sentry from '@sentry/node';
class MockAnthropic {
constructor(config) {
this.apiKey = config.apiKey;
this.baseURL = config.baseURL;
// Create messages object with create method
this.messages = {
create: this._messagesCreate.bind(this),
};
}
/**
* Create a mock message
*/
async _messagesCreate(params) {
// Simulate processing time
await new Promise(resolve => setTimeout(resolve, 10));
return {
id: 'msg-truncation-test',
type: 'message',
role: 'assistant',
content: [
{
type: 'text',
text: 'Response to truncated messages',
},
],
model: params.model,
stop_reason: 'end_turn',
stop_sequence: null,
usage: {
input_tokens: 10,
output_tokens: 15,
},
};
}
}
async function run() {
await Sentry.startSpan({ op: 'function', name: 'main' }, async () => {
const mockClient = new MockAnthropic({
apiKey: 'mock-api-key',
});
const client = instrumentAnthropicAiClient(mockClient);
// Test 1: Given an array of messages only the last message should be kept
// The last message should be truncated to fit within the 20KB limit
const largeContent1 = 'A'.repeat(15000); // ~15KB
const largeContent2 = 'B'.repeat(15000); // ~15KB
const largeContent3 = 'C'.repeat(25000) + 'D'.repeat(25000); // ~50KB (will be truncated, only C's remain)
await client.messages.create({
model: 'claude-3-haiku-20240307',
max_tokens: 100,
messages: [
{ role: 'user', content: largeContent1 },
{ role: 'assistant', content: largeContent2 },
{ role: 'user', content: largeContent3 },
],
temperature: 0.7,
});
// Test 2: Given an array of messages only the last message should be kept
// The last message is small, so it should be kept intact
const smallContent = 'This is a small message that fits within the limit';
await client.messages.create({
model: 'claude-3-haiku-20240307',
max_tokens: 100,
messages: [
{ role: 'user', content: largeContent1 },
{ role: 'assistant', content: largeContent2 },
{ role: 'user', content: smallContent },
],
temperature: 0.7,
});
});
}
run();