Litellm

Latest version: v1.61.8

Safety actively analyzes 707009 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 89 of 110

1.28.2

Not secure
What's Changed
* [UI] View top models by spend by krrishdholakia in https://github.com/BerriAI/litellm/pull/2257
* [FEAT] Use Base64 images with vertex_ai/gemini-pro-vision by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2263
* [FEAT] add groq api pricing, models by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2268
* fix: change actual github action for a call to discord RESTful API by DanielChico in https://github.com/BerriAI/litellm/pull/2262


Feature - Pass Base64 encoded images to `vertex_ai/gemini-pro-vision`
Docs: https://docs.litellm.ai/docs/providers/vertex#gemini-pro-vision

python
import litellm

def encode_image(image_path):
import base64

with open(image_path, "rb") as image_file:
return base64.b64encode(image_file.read()).decode("utf-8")

image_path = "cached_logo.jpg"
Getting the base64 string
base64_image = encode_image(image_path)
response = litellm.completion(
model="vertex_ai/gemini-pro-vision",
messages=[
{
"role": "user",
"content": [
{"type": "text", "text": "Whats in this image?"},
{
"type": "image_url",
"image_url": {
"url": "data:image/jpeg;base64," + base64_image
},
},
],
}
],
)
print(response)

New Contributors
* DanielChico made their first contribution in https://github.com/BerriAI/litellm/pull/2262

**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.28.1...v1.28.2

1.28.1

Not secure
What's Changed
* (feat) add user_api_key_alias in litellm_params metadata by lucebert in https://github.com/BerriAI/litellm/pull/2217
* [FEAT] mistral azure - use with env vars + added pricing by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2247
* build(ui): fix admin viewer issue by krrishdholakia in https://github.com/BerriAI/litellm/pull/2249
* [FEAT] proxy add pagination on /user/info endpoint (Admin UI does not load all users) by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2255

New Contributors
* lucebert made their first contribution in https://github.com/BerriAI/litellm/pull/2217

**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.28.0...v1.28.1

1.28.0

Not secure
**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.27.15...v1.28.0

1.27.15

Not secure
What's Changed
* [FIX] Proxy - Set different locations per vertex ai deployment on litellm proxy by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2234
* fix(proxy_server.py): introduces a beta endpoint for admin to view global spend by krrishdholakia in https://github.com/BerriAI/litellm/pull/2236
* [FEAT] Track which models support function calling by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2241
* [FIX] Race Condition with Custom Callbacks where Async Streaming got triggered twice by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2240
* [WIP] Allow proxy admin to add others to view global spend by krrishdholakia in https://github.com/BerriAI/litellm/pull/2231
* 👉 Support for Mistral AI Tool Calling Live now https://docs.litellm.ai/docs/providers/mistral

Check if a model supports function calling, parallel function calling https://docs.litellm.ai/docs/completion/function_call
![codeimage-snippet_29 (1) 1](https://github.com/BerriAI/litellm/assets/29436595/8e591e0c-6ee9-49d7-92e9-7a69e69fca18)



**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.27.14...v1.27.15

1.27.14

Not secure
What's Changed
* [Docs] Proxy - Pass vertex_params by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2229
* [FEAT] Clickhouse - Create Analytics Tables by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2223
* Drop None values from server streaming response by krrishdholakia in https://github.com/BerriAI/litellm/pull/2225
* [FEAT] GET /daily_metrics by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2226
* feat(proxy_server.py): adds ui_access_mode to control access to proxy ui by krrishdholakia in https://github.com/BerriAI/litellm/pull/2230

![image](https://github.com/BerriAI/litellm/assets/29436595/2fae6a1c-003d-4a42-9cf5-414fc770dac2)

**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.27.10...v1.27.14

1.27.10

Not secure
What's Changed
* [FIX] using mistral on azure ai studio by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2216
* [FIX] Minor fix for logging proxy logs on clickhouse by ishaan-jaff in https://github.com/BerriAI/litellm/pull/2219
* fix(ui/create_key_button.tsx): enable user to set key budget duration by krrishdholakia in https://github.com/BerriAI/litellm/pull/2220


**Full Changelog**: https://github.com/BerriAI/litellm/compare/v1.27.9...v1.27.10

Page 89 of 110

Links

Releases

Has known vulnerabilities

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.