A transparent citation component for displaying claims with their supporting sources as clickable badges. Perfect for research findings, recommendations, fact-checking, and building trust through verifiable information sources.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact source-attribution
The source attribution component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create proper citations with verifiable sources.
Setup
import { HAXSourceAttribution, useSourceAttributionAction } from "@/hax/artifacts/source-attribution";export function ResearchPage() {const [artifacts, setArtifacts] = useState([]);// Register source attribution actions for AI agentsuseSourceAttributionAction({addOrUpdateArtifact: (type, data) => {// Handle source attribution updates}});return (<HAXSourceAttributiontitle="Market Research Findings"claim="The global AI market is expected to reach $1.8 trillion by 2030"description="Key findings from recent market analysis reports"sources={researchSources}/>);}
© 2025 Outshift. All Rights Reserved.
A transparent citation component for displaying claims with their supporting sources as clickable badges. Perfect for research findings, recommendations, fact-checking, and building trust through verifiable information sources.

Installation
Schema & Prompt Control
Conversation
Instructions
# Initialize HAX in your projecthax init# Add the componenthax add artifact source-attribution
The source attribution component integrates with AI agents through CopilotKit. Users interact with AI agents through natural language, and the agents automatically create proper citations with verifiable sources.
Setup
import { HAXSourceAttribution, useSourceAttributionAction } from "@/hax/artifacts/source-attribution";export function ResearchPage() {const [artifacts, setArtifacts] = useState([]);// Register source attribution actions for AI agentsuseSourceAttributionAction({addOrUpdateArtifact: (type, data) => {// Handle source attribution updates}});return (<HAXSourceAttributiontitle="Market Research Findings"claim="The global AI market is expected to reach $1.8 trillion by 2030"description="Key findings from recent market analysis reports"sources={researchSources}/>);}
© 2025 Outshift. All Rights Reserved.