camel-component-llm 0.18.0

LLM chat, embeddings, tool calling, multi-turn, response cache, cost observability, retry, and concurrency control via OpenAI, Ollama, or Mock
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Thin dispatcher — each thematic test family lives in its own file.
// See ADR-0023 for the split rationale.

#[path = "producer_chat_tests.rs"]
mod producer_chat_tests;
#[path = "producer_retry_tests.rs"]
mod producer_retry_tests;
#[path = "producer_semaphore_tests.rs"]
mod producer_semaphore_tests;
#[path = "producer_test_helpers.rs"]
mod producer_test_helpers;
#[path = "producer_timeout_tests.rs"]
mod producer_timeout_tests;
#[path = "producer_tools_tests.rs"]
mod producer_tools_tests;