pub struct ConversationEntry {
pub id: Uuid,
pub request: String,
pub response: String,
pub model_used: ModelType,
pub timestamp: DateTime<Utc>,
pub tokens_used: Option<u32>,
pub cost: Option<f64>,
pub files_modified: Vec<String>,
}Expand description
Conversation history entry
Fields§
§id: UuidUnique identifier for this conversation
request: StringThe user’s request/prompt
response: StringThe AI’s response
model_used: ModelTypeThe AI model that was used
timestamp: DateTime<Utc>When this conversation occurred
tokens_used: Option<u32>Number of tokens used (if available)
cost: Option<f64>Cost of the API call (if available)
files_modified: Vec<String>List of files that were modified in this conversation
Trait Implementations§
Source§impl Clone for ConversationEntry
impl Clone for ConversationEntry
Source§fn clone(&self) -> ConversationEntry
fn clone(&self) -> ConversationEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ConversationEntry
impl Debug for ConversationEntry
Source§impl<'de> Deserialize<'de> for ConversationEntry
impl<'de> Deserialize<'de> for ConversationEntry
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ConversationEntry
impl RefUnwindSafe for ConversationEntry
impl Send for ConversationEntry
impl Sync for ConversationEntry
impl Unpin for ConversationEntry
impl UnwindSafe for ConversationEntry
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more