pub trait LlmPortServiceExt: LlmPort {
// Required method
fn into_llm_service(self: Arc<Self>) -> LlmService;
}Expand description
Extension trait that converts an LlmPort into a tower service.
Required Methods§
Sourcefn into_llm_service(self: Arc<Self>) -> LlmService
fn into_llm_service(self: Arc<Self>) -> LlmService
Convert this LLM port into a tower::Service for completions.