Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions site/src/pages/AIBridgePage/AIBridgeSessionsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,14 @@ const AIBridgeSessionsLayout: FC<PropsWithChildren> = () => {
</div>
</PageHeaderTitle>
<PageHeaderSubtitle>
Centralized auditing for LLM usage across your organization.{" "}
Review and audit AI activity, token usage, and prompt history across
sessions.{" "}
<Link
href={docs("/ai-coder/ai-governance")}
href={docs("/ai-coder/ai-bridge/audit")}
className="ml-auto"
target="_blank"
>
More about AI Governance
Learn how to audit AI sessions
</Link>
</PageHeaderSubtitle>
</PageHeader>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -323,16 +323,41 @@ const ThreadItem: FC<ThreadItemProps> = ({ thread, initiator }) => {
<div className="flex-grow flex flex-col gap-1">
{thread.prompt && (
<>
<div className="text-sm text-content-secondary font-normal my-1">
<div className="text-sm text-content-secondary font-normal my-1 flex items-center gap-1">
Prompt
<TooltipProvider>
<Tooltip>
<TooltipTrigger asChild>
<InfoIcon className="size-icon-xs p-0.5 text-content-secondary" />
</TooltipTrigger>
<TooltipContent
className="max-w-96 text-sm font-normal"
align="start"
side="top"
>
<p className="text-content-secondary m-0 mb-1">
Prompt origin cannot be reliably determined. This may
have been authored by a human or generated by an agent.{" "}
</p>
<Link
href={docs(
"/ai-coder/ai-bridge/audit#human-vs-agent-attribution",
)}
target="_blank"
className="text-sm"
>
Learn about human vs. agent attribution
</Link>
</TooltipContent>
</Tooltip>
</TooltipProvider>
</div>
<p className="text-sm text-content-secondary font-normal bg-surface-secondary leading-relaxed rounded-md p-3 overflow-auto m-0 text-pretty">
{thread.prompt}
</p>
</>
)}
</div>

{/* right column: details */}
<PromptTable
className="lg:max-w-64 flex-shrink-0 w-full lg:w-auto"
Expand Down
Loading