File size: 17,101 Bytes
a21c316 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 | use base64::Engine;
use serde_json::{json, Value};
use tokio::time::Duration;
use crate::proxy::config::UpstreamProxyConfig;
use crate::proxy::ZaiConfig;
const ZAI_PAAZ_CHAT_COMPLETIONS_URL: &str = "https://api.z.ai/api/paas/v4/chat/completions";
fn build_client(upstream_proxy: UpstreamProxyConfig, timeout_secs: u64) -> Result<reqwest::Client, String> {
let mut builder = reqwest::Client::builder()
.timeout(Duration::from_secs(timeout_secs.max(5)));
if upstream_proxy.enabled && !upstream_proxy.url.is_empty() {
let url = crate::proxy::config::normalize_proxy_url(&upstream_proxy.url);
let proxy = reqwest::Proxy::all(&url)
.map_err(|e| format!("Invalid upstream proxy url: {}", e))?;
builder = builder.proxy(proxy);
}
builder.build().map_err(|e| format!("Failed to build HTTP client: {}", e))
}
fn is_http_url(value: &str) -> bool {
let v = value.trim();
v.starts_with("http://") || v.starts_with("https://")
}
fn mime_for_image_extension(ext: &str) -> Option<&'static str> {
match ext.to_ascii_lowercase().as_str() {
"png" => Some("image/png"),
"jpg" | "jpeg" => Some("image/jpeg"),
_ => None,
}
}
fn mime_for_video_extension(ext: &str) -> Option<&'static str> {
match ext.to_ascii_lowercase().as_str() {
"mp4" => Some("video/mp4"),
"mov" => Some("video/quicktime"),
"m4v" => Some("video/x-m4v"),
_ => None,
}
}
fn file_ext(path: &std::path::Path) -> Option<String> {
path.extension()
.and_then(|s| s.to_str())
.map(|s| s.to_string())
}
fn encode_file_as_data_url(path: &std::path::Path, mime: &str) -> Result<String, String> {
let bytes = std::fs::read(path).map_err(|e| format!("Failed to read file: {}", e))?;
let encoded = base64::engine::general_purpose::STANDARD.encode(bytes);
Ok(format!("data:{};base64,{}", mime, encoded))
}
fn image_source_to_content(image_source: &str, max_size_mb: u64) -> Result<Value, String> {
if is_http_url(image_source) {
return Ok(json!({
"type": "image_url",
"image_url": { "url": image_source }
}));
}
let path = std::path::Path::new(image_source);
let meta = std::fs::metadata(path).map_err(|_| "Image file not found".to_string())?;
let max_size = max_size_mb * 1024 * 1024;
if meta.len() > max_size {
return Err(format!(
"Image file too large ({} bytes), max {} MB",
meta.len(),
max_size_mb
));
}
let ext = file_ext(path).ok_or("Unsupported image format".to_string())?;
let mime = mime_for_image_extension(&ext).ok_or("Unsupported image format".to_string())?;
let data_url = encode_file_as_data_url(path, mime)?;
Ok(json!({
"type": "image_url",
"image_url": { "url": data_url }
}))
}
fn video_source_to_content(video_source: &str, max_size_mb: u64) -> Result<Value, String> {
if is_http_url(video_source) {
return Ok(json!({
"type": "video_url",
"video_url": { "url": video_source }
}));
}
let path = std::path::Path::new(video_source);
let meta = std::fs::metadata(path).map_err(|_| "Video file not found".to_string())?;
let max_size = max_size_mb * 1024 * 1024;
if meta.len() > max_size {
return Err(format!(
"Video file too large ({} bytes), max {} MB",
meta.len(),
max_size_mb
));
}
let ext = file_ext(path).ok_or("Unsupported video format".to_string())?;
let mime = mime_for_video_extension(&ext).ok_or("Unsupported video format".to_string())?;
let data_url = encode_file_as_data_url(path, mime)?;
Ok(json!({
"type": "video_url",
"video_url": { "url": data_url }
}))
}
fn user_message_with_content(mut content: Vec<Value>, prompt: &str) -> Value {
content.push(json!({ "type": "text", "text": prompt }));
json!({ "role": "user", "content": content })
}
async fn vision_chat_completion(
client: &reqwest::Client,
api_key: &str,
system_prompt: &str,
user_content: Vec<Value>,
prompt: &str,
) -> Result<String, String> {
let body = json!({
"model": "glm-4.6v",
"messages": [
{ "role": "system", "content": system_prompt },
user_message_with_content(user_content, prompt),
],
"thinking": { "type": "enabled" },
"stream": false,
"temperature": 0.8,
"top_p": 0.6,
"max_tokens": 32768
});
let resp = client
.post(ZAI_PAAZ_CHAT_COMPLETIONS_URL)
.bearer_auth(api_key)
.header("X-Title", "Vision MCP Local")
.header("Accept-Language", "en-US,en")
.json(&body)
.send()
.await
.map_err(|e| format!("Upstream request failed: {}", e))?;
if !resp.status().is_success() {
let status = resp.status().as_u16();
let text = resp.text().await.unwrap_or_default();
return Err(format!("HTTP {}: {}", status, text));
}
let v: Value = resp.json().await.map_err(|e| format!("Invalid JSON response: {}", e))?;
let content = v
.get("choices")
.and_then(|c| c.get(0))
.and_then(|c| c.get("message"))
.and_then(|m| m.get("content"))
.and_then(|c| c.as_str())
.ok_or_else(|| "Invalid API response: missing choices[0].message.content".to_string())?;
Ok(content.to_string())
}
pub fn tool_specs() -> Vec<Value> {
vec![
json!({
"name": "ui_to_artifact",
"description": "Convert UI screenshots into artifacts (code/prompt/spec/description).",
"inputSchema": {
"type": "object",
"properties": {
"image_source": { "type": "string", "description": "Local file path or remote URL to the image" },
"output_type": { "type": "string", "enum": ["code","prompt","spec","description"] },
"prompt": { "type": "string" }
},
"required": ["image_source","output_type","prompt"]
}
}),
json!({
"name": "extract_text_from_screenshot",
"description": "Extract text/code from screenshots (OCR-like).",
"inputSchema": {
"type": "object",
"properties": {
"image_source": { "type": "string" },
"prompt": { "type": "string" },
"language_hint": { "type": "string" }
},
"required": ["image_source","prompt"]
}
}),
json!({
"name": "diagnose_error_screenshot",
"description": "Diagnose error screenshots (stack traces, logs, runtime errors).",
"inputSchema": {
"type": "object",
"properties": {
"image_source": { "type": "string" },
"prompt": { "type": "string" },
"context": { "type": "string" }
},
"required": ["image_source","prompt"]
}
}),
json!({
"name": "understand_technical_diagram",
"description": "Analyze architecture/flow/UML/ER diagrams.",
"inputSchema": {
"type": "object",
"properties": {
"image_source": { "type": "string" },
"prompt": { "type": "string" },
"diagram_type": { "type": "string" }
},
"required": ["image_source","prompt"]
}
}),
json!({
"name": "analyze_data_visualization",
"description": "Analyze charts/dashboards to extract insights and trends.",
"inputSchema": {
"type": "object",
"properties": {
"image_source": { "type": "string" },
"prompt": { "type": "string" },
"analysis_focus": { "type": "string" }
},
"required": ["image_source","prompt"]
}
}),
json!({
"name": "ui_diff_check",
"description": "Compare two UI screenshots and report visual differences.",
"inputSchema": {
"type": "object",
"properties": {
"expected_image_source": { "type": "string" },
"actual_image_source": { "type": "string" },
"prompt": { "type": "string" }
},
"required": ["expected_image_source","actual_image_source","prompt"]
}
}),
json!({
"name": "analyze_image",
"description": "General-purpose image analysis.",
"inputSchema": {
"type": "object",
"properties": {
"image_source": { "type": "string" },
"prompt": { "type": "string" }
},
"required": ["image_source","prompt"]
}
}),
json!({
"name": "analyze_video",
"description": "Analyze video content.",
"inputSchema": {
"type": "object",
"properties": {
"video_source": { "type": "string" },
"prompt": { "type": "string" }
},
"required": ["video_source","prompt"]
}
}),
]
}
pub async fn call_tool(
zai: &ZaiConfig,
upstream_proxy: UpstreamProxyConfig,
timeout_secs: u64,
tool_name: &str,
arguments: &Value,
) -> Result<Value, String> {
let api_key = zai.api_key.trim();
if api_key.is_empty() {
return Err("z.ai api_key is missing".to_string());
}
let client = build_client(upstream_proxy, timeout_secs)?;
let tool_result = match tool_name {
"ui_to_artifact" => {
let image_source = arguments
.get("image_source")
.and_then(|v| v.as_str())
.ok_or("Missing image_source")?;
let output_type = arguments
.get("output_type")
.and_then(|v| v.as_str())
.ok_or("Missing output_type")?;
let prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?;
let system_prompt = match output_type {
"code" => "You are a frontend engineer. Generate clean, accessible, responsive frontend code from the UI screenshot.",
"prompt" => "You generate precise prompts to recreate UI screenshots.",
"spec" => "You are a design systems architect. Produce a detailed UI specification from the screenshot.",
"description" => "You describe UI screenshots clearly and completely in natural language.",
_ => return Err("Invalid output_type".to_string()),
};
let image = image_source_to_content(image_source, 5)?;
vision_chat_completion(&client, api_key, system_prompt, vec![image], prompt).await?
}
"extract_text_from_screenshot" => {
let image_source = arguments
.get("image_source")
.and_then(|v| v.as_str())
.ok_or("Missing image_source")?;
let mut prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?.to_string();
if let Some(lang) = arguments.get("language_hint").and_then(|v| v.as_str()) {
if !lang.trim().is_empty() {
prompt.push_str(&format!("\n\nLanguage hint: {}", lang.trim()));
}
}
let image = image_source_to_content(image_source, 5)?;
let system_prompt = "Extract text from the screenshot accurately. Preserve code formatting. If unsure, say what is uncertain.";
vision_chat_completion(&client, api_key, system_prompt, vec![image], &prompt).await?
}
"diagnose_error_screenshot" => {
let image_source = arguments
.get("image_source")
.and_then(|v| v.as_str())
.ok_or("Missing image_source")?;
let mut prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?.to_string();
if let Some(ctx) = arguments.get("context").and_then(|v| v.as_str()) {
if !ctx.trim().is_empty() {
prompt.push_str(&format!("\n\nContext: {}", ctx.trim()));
}
}
let image = image_source_to_content(image_source, 5)?;
let system_prompt = "Diagnose the error shown in the screenshot. Identify root cause, propose fixes and verification steps.";
vision_chat_completion(&client, api_key, system_prompt, vec![image], &prompt).await?
}
"understand_technical_diagram" => {
let image_source = arguments
.get("image_source")
.and_then(|v| v.as_str())
.ok_or("Missing image_source")?;
let mut prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?.to_string();
if let Some(diagram_type) = arguments.get("diagram_type").and_then(|v| v.as_str()) {
if !diagram_type.trim().is_empty() {
prompt.push_str(&format!("\n\nDiagram type: {}", diagram_type.trim()));
}
}
let image = image_source_to_content(image_source, 5)?;
let system_prompt = "Explain the technical diagram. Describe components, relationships, data flows, and key assumptions.";
vision_chat_completion(&client, api_key, system_prompt, vec![image], &prompt).await?
}
"analyze_data_visualization" => {
let image_source = arguments
.get("image_source")
.and_then(|v| v.as_str())
.ok_or("Missing image_source")?;
let mut prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?.to_string();
if let Some(focus) = arguments.get("analysis_focus").and_then(|v| v.as_str()) {
if !focus.trim().is_empty() {
prompt.push_str(&format!("\n\nFocus: {}", focus.trim()));
}
}
let image = image_source_to_content(image_source, 5)?;
let system_prompt = "Analyze the chart/dashboard and extract insights, trends, anomalies, and recommendations.";
vision_chat_completion(&client, api_key, system_prompt, vec![image], &prompt).await?
}
"ui_diff_check" => {
let expected = arguments
.get("expected_image_source")
.and_then(|v| v.as_str())
.ok_or("Missing expected_image_source")?;
let actual = arguments
.get("actual_image_source")
.and_then(|v| v.as_str())
.ok_or("Missing actual_image_source")?;
let prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?;
let expected_img = image_source_to_content(expected, 5)?;
let actual_img = image_source_to_content(actual, 5)?;
let system_prompt = "Compare the two UI screenshots and report differences grouped by severity. Include actionable fix suggestions.";
vision_chat_completion(
&client,
api_key,
system_prompt,
vec![expected_img, actual_img],
prompt,
)
.await?
}
"analyze_image" => {
let image_source = arguments
.get("image_source")
.and_then(|v| v.as_str())
.ok_or("Missing image_source")?;
let prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?;
let image = image_source_to_content(image_source, 5)?;
let system_prompt = "Analyze the image. Be precise and include relevant details.";
vision_chat_completion(&client, api_key, system_prompt, vec![image], prompt).await?
}
"analyze_video" => {
let video_source = arguments
.get("video_source")
.and_then(|v| v.as_str())
.ok_or("Missing video_source")?;
let prompt = arguments.get("prompt").and_then(|v| v.as_str()).ok_or("Missing prompt")?;
let video = video_source_to_content(video_source, 8)?;
let system_prompt = "Analyze the video content according to the user's request.";
vision_chat_completion(&client, api_key, system_prompt, vec![video], prompt).await?
}
_ => return Err("Unknown tool".to_string()),
};
Ok(json!({
"content": [
{ "type": "text", "text": tool_result }
]
}))
}
|