litellm-rs 0.4.16

A high-performance AI Gateway written in Rust, providing OpenAI-compatible APIs with intelligent routing, load balancing, and enterprise features
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Tests for Predibase provider

#[cfg(test)]
use super::*;

#[tokio::test]
async fn test_predibase_provider_creation() {
    let config = PredibaseConfig {
        api_key: Some("test-key".to_string()),
        ..Default::default()
    };

    let result = PredibaseProvider::new(config).await;
    assert!(result.is_ok());
}