diff --git a/src/components/agent-inbox/components/add-agent-inbox-dialog.tsx b/src/components/agent-inbox/components/add-agent-inbox-dialog.tsx index f6f0de1..212c140 100644 --- a/src/components/agent-inbox/components/add-agent-inbox-dialog.tsx +++ b/src/components/agent-inbox/components/add-agent-inbox-dialog.tsx @@ -131,9 +131,13 @@ export function AddAgentInboxDialog({ +
+ This is the ID of the graph (can be the graph name), or assistant + to fetch threads from, and invoke when actions are taken. +
Deployment URL * ++ This is the URL of your LangGraph deployment. Can be a local, or + production deployment. +
Name ++ Optional name for the inbox. Used in the sidebar. +
setName(e.target.value)} @@ -169,7 +180,7 @@ export function AddAgentInboxDialog({
This value is stored in your browser's local storage and
diff --git a/src/components/app-sidebar/index.tsx b/src/components/app-sidebar/index.tsx
index a63d496..b4d75bd 100644
--- a/src/components/app-sidebar/index.tsx
+++ b/src/components/app-sidebar/index.tsx
@@ -21,6 +21,12 @@ import { useThreadsContext } from "../agent-inbox/contexts/ThreadContext";
import { prettifyText } from "../agent-inbox/utils";
import { cn } from "@/lib/utils";
import { AGENT_INBOX_GITHUB_README_URL } from "../agent-inbox/constants";
+import {
+ Tooltip,
+ TooltipContent,
+ TooltipProvider,
+ TooltipTrigger,
+} from "../ui/tooltip";
const gradients = [
"linear-gradient(to right, #FF416C, #FF4B2B)", // Red-Orange
@@ -76,60 +82,54 @@ export function AppSidebar() {
return (