An enhanced chat interface system that transforms traditional text conversations into structured, command-driven interactions. Enables precise agent delegation, context management, and tool execution through intuitive command syntax (@, +, /).

Installation
Integration & Configuration
Instructions
# Initialize HAX in your projecthax init# Add the file upload systemhax add composer file-upload
The file upload system integrates with chat interfaces to provide seamless file sharing capabilities with AI agents.
Setup
import { useFileUploadAction, FilePickerInput, DragAndDropZone } from "@/hax/composer/file-upload";export function ChatWithFileUpload() {const [artifacts, setArtifacts] = useState([]);// Register file upload actions for AI agentsuseFileUploadAction({addOrUpdateArtifact: (type, data) => {setArtifacts(prev => [...prev, { type, data }]);}});return (<div className="chat-interface"><FilePickerInputonFileSelection={handleFiles}dragAndDropEnabled={true}/>{/* Chat messages */}</div>);}
© 2025 Outshift. All Rights Reserved.
An enhanced chat interface system that transforms traditional text conversations into structured, command-driven interactions. Enables precise agent delegation, context management, and tool execution through intuitive command syntax (@, +, /).

Installation
Integration & Configuration
Instructions
# Initialize HAX in your projecthax init# Add the file upload systemhax add composer file-upload
The file upload system integrates with chat interfaces to provide seamless file sharing capabilities with AI agents.
Setup
import { useFileUploadAction, FilePickerInput, DragAndDropZone } from "@/hax/composer/file-upload";export function ChatWithFileUpload() {const [artifacts, setArtifacts] = useState([]);// Register file upload actions for AI agentsuseFileUploadAction({addOrUpdateArtifact: (type, data) => {setArtifacts(prev => [...prev, { type, data }]);}});return (<div className="chat-interface"><FilePickerInputonFileSelection={handleFiles}dragAndDropEnabled={true}/>{/* Chat messages */}</div>);}
© 2025 Outshift. All Rights Reserved.