Skip to content

Commit 2375abb

Browse files
Terraphim CIclaude
andcommitted
feat(ontology): add specialized agents and HGNC gene normalization
Complete Dynamic Ontology implementation with: - Specialized agents (Extraction, Normalization, Coverage, Review) - HGNC gene normalization module with 20+ oncology genes - Integration tests for the full pipeline Files: - ontology_agents.rs: Specialized agent structs - hgnc.rs: Gene normalizer with exact + fuzzy matching - ontology_integration_test.rs: 8 integration tests Uses existing fuzzy matching (Levenshtein/Jaro-Winkler) and graph ranking - no vector embeddings needed. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 1ae2072 commit 2375abb

6 files changed

Lines changed: 1115 additions & 23 deletions

File tree

crates/terraphim_multi_agent/src/agents/mod.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@
44
//! to provide specific functionality like summarization, chat, and other domain-specific tasks.
55
66
pub mod chat_agent;
7+
pub mod ontology_agents;
78
pub mod summarization_agent;
89

910
pub use chat_agent::*;
11+
pub use ontology_agents::*;
1012
pub use summarization_agent::*;
1113

1214
// Re-export commonly used types

0 commit comments

Comments
 (0)