use super::llm_client::LLMClient;
use crate::sdk::errors::*;
impl LLMClient {
pub async fn embedding(&self, _text: &str, _model: Option<&str>) -> Result<Vec<f32>> {
Err(SDKError::NotSupported(
"Embedding functionality not yet implemented".to_string(),
))
}
pub async fn batch_embedding(
&self,
_texts: &[String],
_model: Option<&str>,
) -> Result<Vec<Vec<f32>>> {
Err(SDKError::NotSupported(
"Batch embedding functionality not yet implemented".to_string(),
))
}
}