Struct llm_weaver::architecture::Diagram

source ·
pub struct Diagram;
Expand description

The following diagram shows a very high level slimmed down overview of the architecture of the library and how an application might use it.

Only the traits Loom and Config are expanded to show some of their main associated types.

graph TB subgraph Chat Application App chat_gpt[Chat GPT] bard[Bard] end App-. impl .- Loom App-. impl .- Config chat_gpt[Chat GPT]-. impl .- llm bard[Bard]-. impl .- llm subgraph LLM Weaver llm>Llm] subgraph Config prompt_model[PromptModel]-- prompt --> chat_gpt summary_model[SummaryModel]-- prompt --> bard tapestry_chest_type[Chest] end subgraph Loom weave-- save prompt and response --> tapestry_chest_type weave-- generate summary --> summary_model weave-- generate response --> prompt_model end tapestry_chest_handler>TapestryChestHandler] tapestry_chest[TapestryChest]-. default impl .- tapestry_chest_handler tapestry_chest_type --> tapestry_chest tapestry_chest --> redis redis[Redis] end

The application must implement the Loom and Config traits in order to utilize the library. This includes but is not limited to providing the types that implement the Llm trait which defines the LLMs which will be used to prompt and generate summaries.

The Config trait also requires the application to supply an implementation for Chest which is responsible for storing and retrieving the TapestryFragments, but is not required since llm_weaver provides a default implementation that uses Redis as the storage backend.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into<'async_trait>( self ) -> Pin<Box<dyn Future<Output = Result<U, <U as TryFrom<T>>::Error>> + 'async_trait>>
where T: 'async_trait,

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more