intital file restructure

This commit is contained in:
serversdwn
2025-11-25 20:50:05 -05:00
parent b5fe47074a
commit 5492d9c0c5
15 changed files with 1 additions and 105 deletions

View File

@@ -1,6 +1,5 @@
from fastapi import FastAPI
from pydantic import BaseModel
from identity import load_identity
from reasoning import reason_check
from reflection import reflect_notes
from rag import query_rag
@@ -28,7 +27,7 @@ class IngestRequest(BaseModel):
# ---------------------------------------------------
# Load identity
# ---------------------------------------------------
IDENTITY = load_identity()
IDENTITY = None
# ---------------------------------------------------
# Routes MUST come after app = FastAPI()