chore: Pre beta prep (#20)

fix: drop search_index table on db reindex 
fix: ai_resource_guide.md path
chore: remove logfire
Signed-off-by: phernandez <paul@basicmachines.co>
This commit is contained in:
Paul Hernandez
2025-03-07 14:31:35 -06:00
committed by GitHub
parent d2bd75a949
commit 6a4bd54646
71 changed files with 3555 additions and 569 deletions
-9
View File
@@ -1,13 +1,7 @@
"""FastAPI application for basic-memory knowledge graph API."""
# Suppress logfire warnings
import os
os.environ["LOGFIRE_IGNORE_NO_CONFIG"] = "1"
from contextlib import asynccontextmanager
import logfire
from fastapi import FastAPI, HTTPException
from fastapi.exception_handlers import http_exception_handler
from loguru import logger
@@ -34,9 +28,6 @@ app = FastAPI(
lifespan=lifespan,
)
if app_config != "test":
logfire.instrument_fastapi(app)
# Include routers
app.include_router(knowledge.router)