Implement persistent native A2UI chat surfaces

This commit is contained in:
2026-07-19 16:57:43 +02:00
parent ac611e3f7f
commit fd4fd744e0
25 changed files with 2571 additions and 18 deletions

View File

@@ -57,6 +57,7 @@ pub struct ChatConversation {
pub title: String,
pub model: Option<String>,
pub copilot_session_id: Option<String>,
pub surface_state: Option<String>,
pub created_at: i64,
pub updated_at: i64,
}
@@ -68,6 +69,7 @@ pub struct NewChatConversation<'a> {
pub title: &'a str,
pub model: Option<&'a str>,
pub copilot_session_id: Option<&'a str>,
pub surface_state: Option<&'a str>,
pub created_at: i64,
pub updated_at: i64,
}