From bda59d18bc5cc4a2c14aa921e4135dd391b8030f Mon Sep 17 00:00:00 2001 From: Marc Klingen Date: Mon, 16 Dec 2024 22:18:36 +0100 Subject: [PATCH] feat: add inkeep chat to faq overview page (#1107) --- components/inkeep/useInkeepSettings.ts | 5 +++++ pages/faq/index.mdx | 9 +++++++++ pages/support.mdx | 2 +- 3 files changed, 15 insertions(+), 1 deletion(-) diff --git a/components/inkeep/useInkeepSettings.ts b/components/inkeep/useInkeepSettings.ts index ee4557a72..e468ad122 100644 --- a/components/inkeep/useInkeepSettings.ts +++ b/components/inkeep/useInkeepSettings.ts @@ -55,6 +55,11 @@ const useInkeepSettings = (): InkeepSharedSettings => { variant: "subtle", // 'emphasized' 'subtle', }, }, + AIChatPageWrapper: { + defaultProps: { + size: "shrink-vertically", + }, + }, }, }, }; diff --git a/pages/faq/index.mdx b/pages/faq/index.mdx index a16df0383..0ea402239 100644 --- a/pages/faq/index.mdx +++ b/pages/faq/index.mdx @@ -6,6 +6,15 @@ description: Collection of frequently asked questions about Langfuse. These FAQs are the most common questions we receive. If your question is not answered below, please open a new discussion on [GitHub Discussions](#github-discussions). +## Ask AI + +The Langfuse AI assistant helps you find answers about Langfuse's features, integrations, and best practices. It's trained on our documentation, GitHub discussions/issues, and API. + +import InkeepEmbeddedChat from "@/components/inkeep/InkeepEmbeddedChat"; + +
+ + ## Categories import { FaqIndex } from "@/components/faq/FaqIndex"; diff --git a/pages/support.mdx b/pages/support.mdx index c1c5c1974..b29eedf8c 100644 --- a/pages/support.mdx +++ b/pages/support.mdx @@ -17,7 +17,7 @@ description: "The Langfuse team and community can help you with questions and is - Our [documentation](/docs) is the best place to start looking for answers. It is comprehensive, and we invest significant time into maintaining it. You can also suggest edits to the docs via GitHub. - [Langfuse FAQs](/faq) where the most common questions are answered. -- Use the "Ask AI" chat `widget` to get instant answers to your questions: +- Use "Ask AI" to get instant answers to your questions: import InkeepEmbeddedChat from "@/components/inkeep/InkeepEmbeddedChat";