pub trait LlmEngineCreator: Send + Sync { // Required method fn create(&self) -> Arc<Mutex<dyn LlmEngine>>; }
A creator for an LLM engine.