flatten: move poc-memory contents to workspace root
No more subcrate nesting — src/, agents/, schema/, defaults/, build.rs all live at the workspace root. poc-daemon remains as the only workspace member. Crate name (poc-memory) and all imports unchanged. Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
parent
891cca57f8
commit
998b71e52c
113 changed files with 79 additions and 78 deletions
|
|
@ -1,39 +0,0 @@
|
|||
#[macro_export]
|
||||
macro_rules! dbglog {
|
||||
($($arg:tt)*) => {{
|
||||
use std::io::Write;
|
||||
if let Ok(mut f) = std::fs::OpenOptions::new()
|
||||
.create(true).append(true)
|
||||
.open("/tmp/poc-debug.log")
|
||||
{
|
||||
let _ = writeln!(f, $($arg)*);
|
||||
}
|
||||
}};
|
||||
}
|
||||
|
||||
// agent/ — interactive agent and shared infrastructure
|
||||
//
|
||||
// Merged from the former poc-agent crate. Contains:
|
||||
// - api/ — LLM API backends (OpenAI-compatible, Anthropic)
|
||||
// - types — Message, ToolDef, ChatRequest, etc.
|
||||
// - tools/ — tool definitions and dispatch
|
||||
// - ui_channel — streaming UI communication
|
||||
// - runner — the interactive agent loop
|
||||
// - cli, config, context, dmn, identity, log, observe, parsing, tui
|
||||
|
||||
pub mod api;
|
||||
pub mod types;
|
||||
pub mod tools;
|
||||
pub mod ui_channel;
|
||||
pub mod journal;
|
||||
|
||||
pub mod runner;
|
||||
pub mod cli;
|
||||
pub mod config;
|
||||
pub mod context;
|
||||
pub mod dmn;
|
||||
pub mod identity;
|
||||
pub mod log;
|
||||
pub mod observe;
|
||||
pub mod parsing;
|
||||
pub mod tui;
|
||||
Loading…
Add table
Add a link
Reference in a new issue