Skip to main content

v1.56.4

ยท One min read

deepgram, fireworks ai, vision, admin ui, dependency upgrades

New Modelsโ€‹

Deepgram Speech to Textโ€‹

New Speech to Text support for Deepgram models. Start Here

from litellm import transcription
import os

# set api keys
os.environ["DEEPGRAM_API_KEY"] = ""
audio_file = open("/path/to/audio.mp3", "rb")

response = transcription(model="deepgram/nova-2", file=audio_file)

print(f"response: {response}")

Fireworks AI - Vision support for all modelsโ€‹

LiteLLM supports document inlining for Fireworks AI models. This is useful for models that are not vision models, but still need to parse documents/images/etc. LiteLLM will add #transform=inline to the url of the image_url, if the model is not a vision model See Code

Proxy Admin UIโ€‹

  • Test Key Tab displays model used in response
  • Test Key Tab renders content in .md, .py (any code/markdown format)

Dependency Upgradesโ€‹

Bug Fixesโ€‹