diff --git a/ui/src/app/model-configurations/page.tsx b/ui/src/app/model-configurations/page.tsx index 63e959f..fbe694a 100644 --- a/ui/src/app/model-configurations/page.tsx +++ b/ui/src/app/model-configurations/page.tsx @@ -1,11 +1,13 @@ + import ServiceConfiguration from "@/components/ServiceConfiguration"; +import { SETTINGS_DOCUMENTATION_URLS } from "@/constants/documentation"; export default function ServiceConfigurationPage() { return (
- +
diff --git a/ui/src/app/telephony-configurations/page.tsx b/ui/src/app/telephony-configurations/page.tsx index 14f4655..d0cd71e 100644 --- a/ui/src/app/telephony-configurations/page.tsx +++ b/ui/src/app/telephony-configurations/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Plus, Trash2 } from "lucide-react"; +import { ExternalLink, Plus, Trash2 } from "lucide-react"; import { useRouter, useSearchParams } from "next/navigation"; import { useEffect, useState } from "react"; import { useForm } from "react-hook-form"; @@ -318,7 +318,10 @@ export default function ConfigureTelephonyPage() {

Configure Telephony

- Set up your telephony provider to make phone calls + Set up your telephony provider to make phone calls.{" "} + + Learn more +

diff --git a/ui/src/app/tools/page.tsx b/ui/src/app/tools/page.tsx index f891545..11c9a46 100644 --- a/ui/src/app/tools/page.tsx +++ b/ui/src/app/tools/page.tsx @@ -1,6 +1,6 @@ "use client"; -import { Plus, RotateCcw, Search, Trash2 } from "lucide-react"; +import { ExternalLink, Plus, RotateCcw, Search, Trash2 } from "lucide-react"; import { useRouter } from "next/navigation"; import { useCallback, useEffect, useState } from "react"; @@ -269,7 +269,10 @@ export default function ToolsPage() {

Tools

- Manage reusable tools that can be used across your workflows + Manage reusable tools that can be used across your workflows.{" "} + + Learn more +

diff --git a/ui/src/components/ServiceConfiguration.tsx b/ui/src/components/ServiceConfiguration.tsx index b26d7c1..3af490d 100644 --- a/ui/src/components/ServiceConfiguration.tsx +++ b/ui/src/components/ServiceConfiguration.tsx @@ -1,9 +1,15 @@ "use client"; +import { ExternalLink } from "lucide-react"; + import { ServiceConfigurationForm } from "@/components/ServiceConfigurationForm"; import { useUserConfig } from "@/context/UserConfigContext"; -export default function ServiceConfiguration() { +interface ServiceConfigurationProps { + docsUrl?: string; +} + +export default function ServiceConfiguration({ docsUrl }: ServiceConfigurationProps) { const { saveUserConfig } = useUserConfig(); return ( @@ -11,7 +17,12 @@ export default function ServiceConfiguration() {

AI Models Configuration

- Configure your AI model, voice, and transcription services. + Configure your AI model, voice, and transcription services.{" "} + {docsUrl && ( + + Learn more + + )}