package handlers // StartConversationResponse is the response for starting an architectural conversation. type StartConversationResponse struct { ConversationWithMessagesDTO } // ContinueConversationResponse is the response for continuing a conversation. type ContinueConversationResponse struct { Message *MessageDTO `json:"message"` } // GenerateBlueprintResponse is the response for generating a blueprint from a conversation. type GenerateBlueprintResponse struct { Blueprint *BlueprintDTO `json:"blueprint"` }