feat: add React UI and AI page sharing tools

Move HTTP page rendering to the React app, fix multi-tool-call message handling, add API docs lookup, web page lookup, and Markdown preview page sharing.
This commit is contained in:
2026-07-07 22:27:14 +08:00
parent 3d77733e11
commit 640ba9e7d2
65 changed files with 8020 additions and 1732 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "ias-common"
version = "0.1.0"
version = "0.1.1"
edition = "2024"
[dependencies]
+1
View File
@@ -8,6 +8,7 @@ pub enum QueueMessage {
Notice(ChannelMessage, String),
Aissitant(ChannelMessage, AssistantMessage),
Tool(ChannelMessage, String, String, String),
Tools(ChannelMessage, Vec<ToolMessage>),
}
#[derive(Debug, Clone, Serialize, Deserialize)]