mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2025-12-28 03:14:32 +01:00
This commit introduces the ChatView widget, a central component of the application that manages the chat interface. It's responsible for displaying both agent and user messages and includes the following features: - Fetching chats for a specific task upon initialization. - A reverse ListView to display chats with the most recent messages at the bottom. - Dynamic rendering of UserMessageTile and AgentMessageTile widgets based on message type. - Integration with the ChatInputField for inputting user messages. - Placeholder logic for handling send action, to be implemented later. This implementation lays the groundwork for a fully functional chat interface within the application, allowing for a seamless interaction between users and agents.