MCPcopy Create free account
hub / github.com/Ironclad/rivet-example / Message

Interface Message

app/src/ChatMessages.tsx:5–8  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3import { FaPaperPlane, FaUserCircle, FaRobot, FaTimes } from 'react-icons/fa';
4
5interface Message {
6 message: string;
7 type: 'user' | 'assistant';
8}
9
10const initialMessages: Message[] = [
11 { message: "Hi there! How can I help you today?", type: 'assistant' },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected