Skip to content

Commit 106dbbb

Browse files
committed
minor updates
1 parent 7418096 commit 106dbbb

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

CLAUDE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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.

backends/advanced-backend/src/advanced_omi_backend/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
from advanced_omi_backend.database import AudioChunksRepository
5252
from 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
5757
from advanced_omi_backend.memory import (
5858
get_memory_service,
5959
init_memory_config,
@@ -64,7 +64,7 @@
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
6868
from advanced_omi_backend.transcription_providers import get_transcription_provider
6969
from 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"] = {

0 commit comments

Comments
 (0)