diff --git a/src/components/icons/langgraph.tsx b/src/components/icons/langgraph.tsx new file mode 100644 index 0000000..c23aaeb --- /dev/null +++ b/src/components/icons/langgraph.tsx @@ -0,0 +1,18 @@ +export function LangGraphLogoSVG({ width = 20, height = 20 }) { + return ( + + ); +} diff --git a/src/components/thread/index.tsx b/src/components/thread/index.tsx index 761073f..c71b9f0 100644 --- a/src/components/thread/index.tsx +++ b/src/components/thread/index.tsx @@ -12,6 +12,7 @@ import { DO_NOT_RENDER_ID_PREFIX, ensureToolCallsHaveResponses, } from "@/lib/ensure-tool-responses"; +import { LangGraphLogoSVG } from "../icons/langgraph"; // const dummyMessages = [ // { type: "human", content: "Hi! What can you do?" }, @@ -30,6 +31,15 @@ import { // }, // ]; +function Title({ className }: { className?: string }) { + return ( +