swink-agent 0.8.0

Core scaffolding for running LLM-powered agentic loops
Documentation
1
2
3
4
5
6
use std::sync::Arc;

use crate::loop_::AgentEvent;

/// A function that receives forwarded agent events.
pub type EventForwarderFn = Arc<dyn Fn(AgentEvent) + Send + Sync>;