10 lines
190 B
Rust
10 lines
190 B
Rust
// nazarick-core/src/agent/context.rs
|
|
|
|
use std::sync::Arc;
|
|
use crate::memory::Memory;
|
|
|
|
#[derive(Clone)]
|
|
pub struct AgentContext {
|
|
pub agent_id: String,
|
|
pub memory: Arc<dyn Memory>,
|
|
} |