make history public

This commit is contained in:
2026-07-30 21:33:57 +02:00
parent 236ef036ec
commit df6010ab38
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "own_mcp"
version = "0.2.2"
version = "0.2.3"
edition = "2024"
license = "GPL-3.0"
+1 -1
View File
@@ -78,7 +78,7 @@ pub struct AgentChat {
llm_client: Box<dyn LLMClient>,
model: String,
mcp_servers: HashMap<String, MCPServerData>,
message_history: Vec<ChatMessage>,
pub message_history: Vec<ChatMessage>,
}
#[derive(Debug, Error)]