mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
feat: Add integrations folder for framework integrations
- Created integrations/ folder at repository root for optional framework integrations - Moved integrations folder from semantica/integrations/ to root-level integrations/ - Added __init__.py with documentation for future integrations (Google ADK, Claude Agent SDK, Agno) - Keeps core semantica package lean while enabling ecosystem integrations - Each integration will be self-contained and installable via extras_require
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
"""
|
||||
Semantica Framework Integrations
|
||||
|
||||
Optional integration packages for agentic frameworks (Google ADK, Claude Agent SDK, Agno, etc.).
|
||||
Each integration is self-contained, independently installable via extras_require, and maintains
|
||||
zero impact on core Semantica - keeping the semantic layer lean while maximizing ecosystem reach.
|
||||
"""
|
||||
@@ -1,19 +0,0 @@
|
||||
"""
|
||||
Semantica Integrations Module
|
||||
|
||||
Placeholder for future integration adapters with agentic frameworks and SDKs.
|
||||
Exposes Semantica's semantic intelligence (knowledge graphs, ontologies, provenance
|
||||
tracking, semantic extraction) as native components within their respective frameworks.
|
||||
|
||||
Planned Integrations:
|
||||
- Agno Framework (Issue #249): Semantic memory and knowledge graph integration
|
||||
- Google ADK (Issue #251): Semantic tools and memory interfaces
|
||||
- Claude Agent SDK (Issue #250): Custom tools and hooks for explainable AI
|
||||
|
||||
All integrations will be opt-in via pip extras with zero breaking changes.
|
||||
|
||||
Status: Placeholder for future implementation
|
||||
"""
|
||||
|
||||
__version__ = "0.1.0"
|
||||
__all__ = []
|
||||
Reference in New Issue
Block a user