1//! # 查找可用模型 2 3pub struct ModelRequest; 4 5impl ModelRequest { 6 pub fn url() -> String { 7 "https://api.deepseek.com/models".to_string() 8 } 9}