magicapi-ai-gateway 1.0.0

[DEPRECATED] This package has been renamed to 'noveum-ai-gateway'. Please use the new package for all future development. A high-performance AI Gateway proxy for routing requests to various AI providers, offering seamless integration and management of multiple AI providers.
//! Integration tests for the AI Gateway.
//! 
//! These tests make real requests to the AI providers via the gateway and verify the responses.
//! They also check that the metrics are correctly sent to ElasticSearch.
//! 
//! # Running the tests
//! 
//! To run the tests, you need to:
//! 
//! 1. Start the AI Gateway locally: `cargo run`
//! 2. Create a `.env.test` file with your API keys and ElasticSearch configuration
//! 3. Run the tests with: `cargo test --test integration -- --nocapture`
//! 
//! The tests assume that ElasticSearch is configured in your gateway.

pub mod common;
pub mod openai_test;
pub mod anthropic_test;
pub mod groq_test;
pub mod fireworks_test;
pub mod together_test;

// Add more provider test modules here as they are implemented