Skip to main content

ChatSession

Struct ChatSession 

Source
pub struct ChatSession {
    pub session_id: Uuid,
    pub system: Option<String>,
    pub messages: Vec<Message>,
    pub cache_strategy: CacheStrategy,
}
Expand description

Conversation state.

Fields§

§session_id: Uuid§system: Option<String>

Optional system prompt.

§messages: Vec<Message>

Message history in normalized form.

§cache_strategy: CacheStrategy

Cache-injection strategy.

Implementations§

Source§

impl ChatSession

Source

pub fn new() -> Self

Source

pub fn with_system(self, system: impl Into<String>) -> Self

Source

pub fn with_cache_strategy(self, strategy: CacheStrategy) -> Self

Source

pub fn push_user(&mut self, content: impl Into<String>)

Append a user text message.

Source

pub fn push_assistant(&mut self, response: NormalizedResponse)

Append the assistant’s response content blocks verbatim.

Source

pub fn push_tool_results(&mut self, results: Vec<ToolResultMessage>)

Append tool results as a single user message containing ContentBlock::ToolResult blocks. Providers translate the exact shape at the wire layer.

Source

pub fn append_to_last_user(&mut self, text: impl Into<String>)

Append text to the tail of the most recent user message as a new ContentBlock::Text block. Used for mid-turn injections (stream rules) that must NOT create a bare user message after tool results (provider alternation rules — spec D7). Falls back to pushing a new user message when no user message exists; that only happens with an empty, system-only, or assistant-only history, where a user message is alternation-safe.

Caller contract: intended for mid-turn injection while the tail message is a user message (before any assistant commit). If the tail is an assistant message, the text lands on an older user message mid-history.

Source

pub fn len(&self) -> usize

Total message count (including system messages if pushed manually).

Source

pub fn is_empty(&self) -> bool

Source

pub fn compress( &mut self, target_tokens: u32, compressor: &dyn HistoryCompressor, tokenizer: &dyn Tokenizer, ) -> u32

Compress history in place to fit within target_tokens using the provided compressor and tokenizer. Returns the token count after compression (may still exceed target_tokens if no further moves were safe).

Source

pub fn save(&self, path: &Path) -> Result<(), ClassifiedError>

Persist the session to disk as JSON (supports /resume).

Source

pub fn load(path: &Path) -> Result<Self, ClassifiedError>

Load a session from disk.

Trait Implementations§

Source§

impl Clone for ChatSession

Source§

fn clone(&self) -> ChatSession

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ChatSession

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for ChatSession

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for ChatSession

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for ChatSession

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

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> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

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

Source§

type Error = !

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>,

Source§

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> 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