mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
fix: update FastMCP initialization for API changes
- Remove deprecated auth_server_provider parameter - Use auth parameter correctly with OAuthProvider instead of AuthSettings - Fixes type error after dependency updates 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -22,6 +22,7 @@ from basic_memory.config import WATCH_STATUS_JSON
|
||||
from basic_memory.utils import generate_permalink
|
||||
from basic_memory.config import config_manager
|
||||
|
||||
|
||||
class ProjectService:
|
||||
"""Service for managing Basic Memory projects."""
|
||||
|
||||
@@ -545,4 +546,4 @@ class ProjectService:
|
||||
database_size=db_size_readable,
|
||||
watch_status=watch_status,
|
||||
timestamp=datetime.now(),
|
||||
)
|
||||
)
|
||||
|
||||
@@ -148,7 +148,7 @@ class SearchService:
|
||||
# If parsing fails, treat as single tag
|
||||
return [tags] if tags.strip() else []
|
||||
|
||||
return [] # pragma: no cover
|
||||
return [] # pragma: no cover
|
||||
|
||||
async def index_entity(
|
||||
self,
|
||||
|
||||
Reference in New Issue
Block a user