Skip to content

Commit abb2260

Browse files
authoredJul 8, 2024··
feat (ai): verify that system messages have string content (#2206)
1 parent d481729 commit abb2260

File tree

3 files changed

+35
-0
lines changed

3 files changed

+35
-0
lines changed
 

‎.changeset/late-penguins-fold.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'ai': patch
3+
---
4+
5+
feat (ai): verify that system messages have string content
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import { InvalidPromptError } from '@ai-sdk/provider';
2+
import { getValidatedPrompt } from './get-validated-prompt';
3+
4+
describe('getValidatedPrompt', () => {
5+
describe('messages', () => {
6+
it('should throw InvalidPromptError when system message has parts', () => {
7+
expect(() => {
8+
getValidatedPrompt({
9+
messages: [
10+
{
11+
role: 'system',
12+
content: [{ type: 'text', text: 'test' }] as any,
13+
},
14+
],
15+
});
16+
}).toThrow(InvalidPromptError);
17+
});
18+
});
19+
});

‎packages/core/core/prompt/get-validated-prompt.ts

+11
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@ export function getValidatedPrompt(prompt: Prompt): ValidatedPrompt {
3131
});
3232
}
3333

34+
if (prompt.messages != null) {
35+
for (const message of prompt.messages) {
36+
if (message.role === 'system' && typeof message.content !== 'string') {
37+
throw new InvalidPromptError({
38+
prompt,
39+
message: 'system message content must be a string',
40+
});
41+
}
42+
}
43+
}
44+
3445
return prompt.prompt != null
3546
? {
3647
type: 'prompt',

0 commit comments

Comments
 (0)
Please sign in to comment.