참고소스 수정본

This commit is contained in:
LASTA_DEV01\lasta
2026-05-12 19:40:31 +09:00
parent 0f34a451fc
commit 2e9204243d
8708 changed files with 3259488 additions and 869 deletions

View File

@@ -0,0 +1,20 @@
"""OntoCast: Agentic ontology-assisted framework for semantic triple extraction.
OntoCast is a comprehensive framework for extracting semantic triples from
documents using ontology assistance. It provides a complete pipeline for
document processing, ontology management, and knowledge graph construction.
The framework includes:
- Document conversion and chunking
- Ontology selection and management
- Fact extraction and validation
- Triple store integration (Neo4j, Fuseki, Filesystem)
- LLM-powered semantic analysis
- REST API server for document processing
For more information, see the documentation at https://growgraph.github.io/ontocast/
"""
from ontocast.stategraph.atomic import facts_loop, ontology_loop
__all__ = ["facts_loop", "ontology_loop"]