Skip to content
Merged
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
40 changes: 40 additions & 0 deletions litellm/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ litellm_settings:
- agent-complex-core
- agent-medium-core
- agent-simple-core
- whisper-1
- gpt-4o-mini-transcribe
- gpt-4o-mini-tts
- tts-1
Comment thread
sourcery-ai[bot] marked this conversation as resolved.
fallbacks:
- agent-simple-core:
- agent-medium-core
Expand Down Expand Up @@ -220,6 +224,42 @@ model_list:
supports_vision: true
is_public_model_group: true

# ================================================================================
# AUDIO STT / TTS COMPATIBILITY ALIASES
# ================================================================================
- model_name: whisper-1
litellm_params:
model: openai/whisper-1
api_base: http://127.0.0.1:8084
Comment on lines +230 to +233

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚨 issue (security): Using plain HTTP for the audio endpoint may be risky outside strictly local setups.

These aliases point to api_base: http://127.0.0.1:8084 without TLS. If this config might be reused outside strictly local/container networking, please either switch to HTTPS or make it explicit that these settings are for local-only use to avoid accidental insecure exposure.

api_key: local-token
request_timeout: 60
model_info:
mode: audio_transcription
is_public_model_group: true
- model_name: gpt-4o-mini-transcribe
litellm_params:
model: openai/whisper-1
api_base: http://127.0.0.1:8084
api_key: local-token
request_timeout: 60
model_info:
mode: audio_transcription
is_public_model_group: true
- model_name: gpt-4o-mini-tts
litellm_params:
model: openrouter/openai/tts-1
request_timeout: 60
model_info:
mode: audio_speech
is_public_model_group: true
- model_name: tts-1
litellm_params:
model: openrouter/openai/tts-1
request_timeout: 60
model_info:
mode: audio_speech
is_public_model_group: true

redis_settings:
redis_host: 127.0.0.1
redis_port: VALKEY_CACHE_PORT_PLACEHOLDER
Expand Down