code-mesh-core 0.1.0

High-performance, WASM-powered distributed swarm intelligence core library for concurrent code execution and neural mesh computing
Documentation
1
2
3
4
5
6
7
8
//! Model trait and common implementations

use super::provider::{Cost, Limits, ModelCapabilities};
use serde_json::Value;
use std::collections::HashMap;

/// Model trait representing an AI model (re-exported from provider)
pub use super::provider::Model;