use anyhow::Result;
use serde_json::Value;
use std::path::Path;
pub fn parse_numpy_file(path: &Path) -> Result<Value> {
let mut result = serde_json::Map::new();
result.insert("model_type".to_string(), Value::String("numpy".to_string()));
result.insert(
"file_path".to_string(),
Value::String(path.to_string_lossy().to_string()),
);
Ok(Value::Object(result))
}