geographdb-core 0.5.4

Geometric graph database core - 3D spatial indexing for code analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Corpus loading utilities for geometric graph construction and inference.

pub mod coordinate_branch;
pub mod hf_loader;
pub mod inference;
pub mod tool_schema;
pub use coordinate_branch::CoordinateBranch;
pub use hf_loader::{HfDatasetLoader, HfDatasetSpec};
pub use inference::{
    build_edge_weights, build_node_index, build_octree, decode_node_id, prompt_centroid,
    GeometricWalker, TransitionMode, WalkerConfig,
};
pub use tool_schema::{
    inject_tool_subgraphs, load_persisted_tool_schemas, nearest_tool_anchor,
    nearest_tool_anchor_for_prompt, parse_tool_schemas, ToolSchema,
};