File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
backends/advanced-backend/src/advanced_omi_backend Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -357,4 +357,5 @@ Project includes `.cursor/rules/always-plan-first.mdc` requiring understanding b
357357- ** GET /api/auth/config** : Authentication configuration
358358
359359## Notes for Claude
360- Check if the src/ is volume mounted. If not, do compose build so that code changes are reflected.
360+ Check if the src/ is volume mounted. If not, do compose build so that code changes are reflected.
361+ Check backend/advanced-backend/Docs for up to date information on advanced backend.
Original file line number Diff line number Diff line change 5151from advanced_omi_backend .database import AudioChunksRepository
5252from advanced_omi_backend .debug_system_tracker import (
5353 get_debug_tracker ,
54- init_debug_tracker ,
5554 shutdown_debug_tracker ,
5655)
56+ from advanced_omi_backend .llm_client import async_health_check
5757from advanced_omi_backend .memory import (
5858 get_memory_service ,
5959 init_memory_config ,
6464 get_processor_manager ,
6565 init_processor_manager ,
6666)
67- from advanced_omi_backend .task_manager import get_task_manager , init_task_manager
67+ from advanced_omi_backend .task_manager import init_task_manager
6868from advanced_omi_backend .transcription_providers import get_transcription_provider
6969from advanced_omi_backend .users import User , register_client_to_user
7070
@@ -783,7 +783,6 @@ async def health_check():
783783
784784 # Check LLM service (non-critical service - may not be running)
785785 try :
786- from advanced_omi_backend .llm_client import async_health_check
787786
788787 llm_health = await asyncio .wait_for (async_health_check (), timeout = 8.0 )
789788 health_status ["services" ]["audioai" ] = {
You can’t perform that action at this time.
0 commit comments