#ifndef AI_CHAT_DISPLAY_H #define AI_CHAT_DISPLAY_H #include "display.h" class AiChatDisplay : public Display { public: AiChatDisplay(); void SetStatus(const char* status) override; void SetEmotion(const char* emotion) override; void SetChatMessage(const char* role, const char* content) override; }; #endif // AI_CHAT_DISPLAY_H