forked from kent/consciousness
replace hardcoded personal names with config values
User and assistant names now come from config.user_name and
config.assistant_name throughout: system prompt, DMN prompts,
debug screen, and all agent files. Agent templates use
{user_name} and {assistant_name} placeholders.
Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
parent
1fd4ce05c1
commit
33e45f6ce8
21 changed files with 75 additions and 63 deletions
|
|
@ -148,7 +148,7 @@ impl daemon::Server for DaemonImpl {
|
|||
format!("\n{ctx}")
|
||||
};
|
||||
let msg = format!(
|
||||
"This is your time (Kent AFK, test nudge). \
|
||||
"This is your time (User AFK, test nudge). \
|
||||
Let your feelings guide your thinking.{extra}"
|
||||
);
|
||||
let ok = state.send(&msg);
|
||||
|
|
@ -250,7 +250,7 @@ impl daemon::Server for DaemonImpl {
|
|||
status.set_consolidating(s.consolidating);
|
||||
status.set_dreaming(s.dreaming);
|
||||
status.set_fired(s.fired);
|
||||
status.set_kent_present(s.kent_present());
|
||||
status.set_user_present(s.user_present());
|
||||
status.set_uptime(crate::now() - s.start_time);
|
||||
status.set_activity(match s.notifications.activity {
|
||||
notify::Activity::Idle => crate::daemon_capnp::Activity::Idle,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue