Update hf_demo.py
Browse files- hf_demo.py +2 -5
hf_demo.py
CHANGED
|
@@ -7,11 +7,8 @@ from datetime import datetime
|
|
| 7 |
|
| 8 |
# ARF v4 imports
|
| 9 |
from agentic_reliability_framework.core.governance.risk_engine import RiskEngine
|
| 10 |
-
from agentic_reliability_framework.runtime.memory import
|
| 11 |
-
|
| 12 |
-
RAGGraphMemory,
|
| 13 |
-
MemoryConstants
|
| 14 |
-
)
|
| 15 |
|
| 16 |
app = FastAPI(title="ARF v4 API with Memory")
|
| 17 |
|
|
|
|
| 7 |
|
| 8 |
# ARF v4 imports
|
| 9 |
from agentic_reliability_framework.core.governance.risk_engine import RiskEngine
|
| 10 |
+
from agentic_reliability_framework.runtime.memory import create_faiss_index, RAGGraphMemory
|
| 11 |
+
from agentic_reliability_framework.runtime.memory.constants import MemoryConstants
|
|
|
|
|
|
|
|
|
|
| 12 |
|
| 13 |
app = FastAPI(title="ARF v4 API with Memory")
|
| 14 |
|