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