daat-locus 0.4.0

A long-running local agent runtime with memory, workflows, apps, and sleep-time self-improvement.
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

use super::examples::ProgramExample;

#[derive(Clone, Default, Serialize, Deserialize)]
pub struct PromptTuningConfig<O> {
    pub extra_instructions: Vec<String>,
    pub examples: Vec<ProgramExample<O>>,
}