Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 22ded4d

Browse files
authoredSep 3, 2024··
fix: runTools without stream should not emit user message events (#1005)
1 parent d935ad3 commit 22ded4d

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed
 

‎src/lib/ChatCompletionRunner.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,12 @@ export class ChatCompletionRunner<ParsedT = null> extends AbstractChatCompletion
6363
return runner;
6464
}
6565

66-
override _addMessage(this: ChatCompletionRunner<ParsedT>, message: ChatCompletionMessageParam) {
67-
super._addMessage(message);
66+
override _addMessage(
67+
this: ChatCompletionRunner<ParsedT>,
68+
message: ChatCompletionMessageParam,
69+
emit: boolean = true,
70+
) {
71+
super._addMessage(message, emit);
6872
if (isAssistantMessage(message) && message.content) {
6973
this._emit('content', message.content as string);
7074
}

‎tests/lib/ChatCompletionRunFunctions.test.ts

-12
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,6 @@ describe('resource completions', () => {
605605
await runner.done();
606606

607607
expect(listener.messages).toEqual([
608-
{ role: 'user', content: 'tell me what the weather is like' },
609608
{
610609
role: 'assistant',
611610
content: null,
@@ -700,7 +699,6 @@ describe('resource completions', () => {
700699
await runner.done().catch(() => {});
701700

702701
expect(listener.messages).toEqual([
703-
{ role: 'user', content: 'tell me what the weather is like' },
704702
{
705703
role: 'assistant',
706704
content: null,
@@ -855,10 +853,6 @@ describe('resource completions', () => {
855853
await runner.done();
856854

857855
expect(listener.messages).toEqual([
858-
{
859-
role: 'user',
860-
content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}',
861-
},
862856
{
863857
role: 'assistant',
864858
content: null,
@@ -1090,10 +1084,6 @@ describe('resource completions', () => {
10901084
]);
10911085

10921086
expect(listener.messages).toEqual([
1093-
{
1094-
role: 'user',
1095-
content: 'can you tell me how many properties are in {"a": 1, "b": 2, "c": 3}',
1096-
},
10971087
{
10981088
role: 'assistant',
10991089
content: null,
@@ -1207,7 +1197,6 @@ describe('resource completions', () => {
12071197
]);
12081198

12091199
expect(listener.messages).toEqual([
1210-
{ role: 'user', content: 'tell me what the weather is like' },
12111200
{
12121201
role: 'assistant',
12131202
content: null,
@@ -1413,7 +1402,6 @@ describe('resource completions', () => {
14131402
]);
14141403

14151404
expect(listener.messages).toEqual([
1416-
{ role: 'user', content: 'tell me what the weather is like' },
14171405
{
14181406
role: 'assistant',
14191407
content: null,

0 commit comments

Comments
 (0)
Please sign in to comment.