pub trait AgentModelExt: CompletionModel + Sized {
// Provided method
fn into_agent_builder(self) -> AgentBuilder
where Self: 'static { ... }
}Expand description
Adds classic agent construction to every portable completion model.
Provided Methods§
Sourcefn into_agent_builder(self) -> AgentBuilderwhere
Self: 'static,
fn into_agent_builder(self) -> AgentBuilderwhere
Self: 'static,
Convert this model into a classic agent builder.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".