Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions backends/advanced/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
- ./data/audio_chunks:/app/audio_chunks
- ./data/debug_dir:/app/debug_dir
- ./data:/app/data
- ../../config.yml:/app/config.yml:ro
- ../../config.yml:/app/config.yml # Removed :ro to allow UI config saving
environment:
- DEEPGRAM_API_KEY=${DEEPGRAM_API_KEY}
- MISTRAL_API_KEY=${MISTRAL_API_KEY}
Expand Down Expand Up @@ -65,7 +65,7 @@ services:
- ./start-workers.sh:/app/start-workers.sh
- ./data/audio_chunks:/app/audio_chunks
- ./data:/app/data
- ../../config.yml:/app/config.yml:ro
- ../../config.yml:/app/config.yml # Removed :ro for consistency
environment:
- DEEPGRAM_API_KEY=${DEEPGRAM_API_KEY}
- MISTRAL_API_KEY=${MISTRAL_API_KEY}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def get_memory_config_raw(current_user: User = Depends(current_superuser))

@router.post("/admin/memory/config/raw")
async def update_memory_config_raw(
config_yaml: str = Body(..., embed=True),
config_yaml: str = Body(..., media_type="text/plain"),
current_user: User = Depends(current_superuser)
):
"""Update memory configuration YAML and hot reload. Admin only."""
Expand All @@ -91,7 +91,7 @@ async def update_memory_config_raw(

@router.post("/admin/memory/config/validate")
async def validate_memory_config(
config_yaml: str = Body(..., embed=True),
config_yaml: str = Body(..., media_type="text/plain"),
current_user: User = Depends(current_superuser)
):
"""Validate memory configuration YAML syntax. Admin only."""
Expand Down
Loading
Loading