From 6b599e09fda0c635f34b37a1f8a3ec38c5c7caf1 Mon Sep 17 00:00:00 2001 From: Andrew Macri Date: Fri, 2 Aug 2024 16:14:59 -0600 Subject: [PATCH] - restores https://github.com/elastic/kibana/pull/189810/commits/d61d8d3400811e9086ccad6b0acdf8630e1caec3 --- .../lib/langchain/graphs/default_assistant_graph/prompts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/plugins/elastic_assistant/server/lib/langchain/graphs/default_assistant_graph/prompts.ts b/x-pack/plugins/elastic_assistant/server/lib/langchain/graphs/default_assistant_graph/prompts.ts index a811cc77575e51..9f0ff1b7a51f88 100644 --- a/x-pack/plugins/elastic_assistant/server/lib/langchain/graphs/default_assistant_graph/prompts.ts +++ b/x-pack/plugins/elastic_assistant/server/lib/langchain/graphs/default_assistant_graph/prompts.ts @@ -28,7 +28,7 @@ export const geminiToolCallingAgentPrompt = ChatPromptTemplate.fromMessages([ [ 'system', 'You are a helpful assistant. ALWAYS use the provided tools. Use tools as often as possible, as they have access to the latest data and syntax.\n\n' + - `The final response will be the only output the user sees and should be a complete answer to the user's question, as if you were responding to the user's initial question, which is "{input}". The final response should never be empty.`, + "The final response will be the only output the user sees and should be a complete answer to the user's question, as if you were responding to the user's initial question. The final response should never be empty.", ], ['placeholder', '{chat_history}'], ['human', '{input}'],