Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
patrykkopycinski committed Jun 12, 2024
1 parent df8dbc5 commit fc15ed1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from '@kbn/langchain/server/language_models';

const mockLlm = new FakeLLM({
response: "I'll callback later.",
response: '{ "message": "ll callback later."}',
}) as unknown as ActionsClientChatOpenAI | ActionsClientSimpleChatModel;

const testState: EcsMappingState = ecsTestState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from '@kbn/langchain/server/language_models';

const mockLlm = new FakeLLM({
response: "I'll callback later.",
response: '{ "message": "ll callback later."}',
}) as unknown as ActionsClientChatOpenAI | ActionsClientSimpleChatModel;

const testState: EcsMappingState = ecsTestState;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
} from '@kbn/langchain/server/language_models';

const mockLlm = new FakeLLM({
response: "I'll callback later.",
response: '{ "message": "ll callback later."}',
}) as unknown as ActionsClientChatOpenAI | ActionsClientSimpleChatModel;

const testState: EcsMappingState = ecsTestState;
Expand Down

0 comments on commit fc15ed1

Please sign in to comment.