Skip to main content

LlmThread

Trait LlmThread 

Source
pub trait LlmThread: Send {
    // Required method
    fn infer<'a>(&'a mut self, delta: &'a str) -> LlmFuture<'a>;
}

Required Methods§

Source

fn infer<'a>(&'a mut self, delta: &'a str) -> LlmFuture<'a>

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§