You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constprompt=`<confluence-page>\n<page:id>${page.id}</page:id>\n<page:title>${page.title}</page:title>\n<page:body>\n${page.summary}\n</page:body>\n</confluence-page>\n\n<filter-query>\n${searchResultFilterQuery}\n</filter-query>\n\nFilter the confluence page contents to only include information that has some relevance to the query to reduce the number of tokens returned to the LLM performing the search\nWhere the page contents is highly relevant, return the page contents as is.\nWhere the page contents has some relevance, return extracts of the relevant sections and a short summary of the pages contents.\nWhere the page contents is not relevant, only return a short summary of the pages contents. Do not explain why or what is not relevant.\n`;
94
+
constsummarizedBody=awaitllms().medium.generateText(prompt,{id: 'Confluence search result filter'});
0 commit comments