useserde::{Deserialize, Serialize};/// Final assistant message text returned by `agents completions create`.
////// Wire: `{"type":"notification","content":"...text..."}`.
#[derive(Serialize, Deserialize, Debug, Clone)]pubstructContent{pubcontent: String,
}