move memory_search from hippocampus to subconscious/hook
memory_search.rs is agent orchestration (surface-observe, journal, reflect cycles), not memory storage. Rename to hook.rs and move to subconscious/ where it belongs. Backward compat: pub use subconscious::hook as memory_search in lib.rs so existing crate::memory_search paths still resolve.
This commit is contained in:
parent
3a8383ba37
commit
8ee0d90388
9 changed files with 321 additions and 7 deletions
11
src/learn/Cargo.toml
Normal file
11
src/learn/Cargo.toml
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
[package]
|
||||
name = "poc-training"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
candle-core = "0.8"
|
||||
candle-nn = "0.8"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
anyhow = "1.0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue