typeduck-codex-utils-absolute-path 0.11.0

Support package for the standalone Codex Web runtime (codex-memories-write)
Documentation
1
2
3
4
5
6
7
8
9
10
mod ad_hoc;
mod prune;

use std::path::Path;

pub(crate) async fn seed_extension_instructions(memory_root: &Path) -> std::io::Result<()> {
    ad_hoc::seed_instructions(memory_root).await
}

pub use prune::prune_old_extension_resources;