Skip to content

Bump the pip group across 1 directory with 4 updates #1250

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 28, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 28, 2025

Bumps the pip group with 4 updates in the / directory: transformers, langchain-core, mlflow and llama-index.

Updates transformers from 4.45.2 to 4.48.0

Release notes

Sourced from transformers's releases.

v4.48.0: ModernBERT, Aria, TimmWrapper, ColPali, Falcon3, Bamba, VitPose, DinoV2 w/ Registers, Emu3, Cohere v2, TextNet, DiffLlama, PixtralLarge, Moonshine

New models

ModernBERT

The ModernBert model was proposed in Smarter, Better, Faster, Longer: A Modern Bidirectional Encoder for Fast, Memory Efficient, and Long Context Finetuning and Inference by Benjamin Warner, Antoine Chaffin, Benjamin Clavié, Orion Weller, Oskar Hallström, Said Taghadouini, Alexis Galalgher, Raja Bisas, Faisal Ladhak, Tom Aarsen, Nathan Cooper, Grifin Adams, Jeremy Howard and Iacopo Poli.

It is a refresh of the traditional encoder architecture, as used in previous models such as BERT and RoBERTa.

It builds on BERT and implements many modern architectural improvements which have been developed since its original release, such as:

  • Rotary Positional Embeddings to support sequences of up to 8192 tokens.
  • Unpadding to ensure no compute is wasted on padding tokens, speeding up processing time for batches with mixed-length sequences.
  • GeGLU Replacing the original MLP layers with GeGLU layers, shown to improve performance.
  • Alternating Attention where most attention layers employ a sliding window of 128 tokens, with Global Attention only used every 3 layers.
  • Flash Attention to speed up processing.
  • A model designed following recent The Case for Co-Designing Model Architectures with Hardware, ensuring maximum efficiency across inference GPUs.
  • Modern training data scales (2 trillion tokens) and mixtures (including code ande math data)

image

Aria

The Aria model was proposed in Aria: An Open Multimodal Native Mixture-of-Experts Model by Li et al. from the Rhymes.AI team.

Aria is an open multimodal-native model with best-in-class performance across a wide range of multimodal, language, and coding tasks. It has a Mixture-of-Experts architecture, with respectively 3.9B and 3.5B activated parameters per visual token and text token.

TimmWrapper

We add a TimmWrapper set of classes such that timm models can be loaded in as transformer models into the library.

Here's a general usage example:

import torch
from urllib.request import urlopen
from PIL import Image
from transformers import AutoConfig, AutoModelForImageClassification, AutoImageProcessor
checkpoint = "timm/resnet50.a1_in1k"
img = Image.open(urlopen(
'https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/beignets-task-guide.png'
))
image_processor = AutoImageProcessor.from_pretrained(checkpoint)
</tr></table>

... (truncated)

Commits

Updates langchain-core from 0.3.12 to 0.3.15

Commits

Updates mlflow from 2.17.0 to 2.20.3

Release notes

Sourced from mlflow's releases.

MLflow 2.20.3 is a patch release includes several major features and improvements

Features:

Bug fixes:

Small bug fixes and documentation updates:

#14640, #14574, #14593, @​serena-ruan; #14338, #14693, #14664, #14663, #14377, @​B-Step62; #14680, @​JulesLandrySimard; #14388, #14685, @​harupy; #14704, @​brilee; #14698, #14658, @​bbqiu; #14660, #14659, #14632, #14616, #14594, @​TomeHirata; #14535, @​njbrake

MLflow 2.20.2 is a patch release includes several bug fixes and features

Features:

Bug fixes:

Documentation updates:

Small bug fixes and documentation updates:

#14410, #14569, #14440, @​harupy; #14510, #14544, #14491, #14488, @​bbqiu; #14518, @​serena-ruan; #14517, #14500, #14461, #14478, @​TomeHirata; #14512, @​shaikmoeed; #14496, #14473, #14475, @​B-Step62; #14467, @​seal07; #14022, #14453, #14539, @​daniellok-db; #14450, @​BenWilson2; #14449, @​SaiMadhavanG

MLflow 2.20.1 is a patch release includes several bug fixes and features:

Features:

Bug fixes:

... (truncated)

Changelog

Sourced from mlflow's changelog.

2.20.3 (2025-02-26)

MLflow 2.20.3 is a patch release includes several major features and improvements

Features:

Bug fixes:

Small bug fixes and documentation updates:

#14640, #14574, #14593, @​serena-ruan; #14338, #14693, #14664, #14663, #14377, @​B-Step62; #14680, @​JulesLandrySimard; #14388, #14685, @​harupy; #14704, @​brilee; #14698, #14658, @​bbqiu; #14660, #14659, #14632, #14616, #14594, @​TomeHirata; #14535, @​njbrake

2.20.2 (2025-02-13)

MLflow 2.20.2 is a patch release includes several bug fixes and features

Features:

Bug fixes:

Documentation updates:

Small bug fixes and documentation updates:

#14410, #14569, #14440, @​harupy; #14510, #14544, #14491, #14488, @​bbqiu; #14518, @​serena-ruan; #14517, #14500, #14461, #14478, @​TomeHirata; #14512, @​shaikmoeed; #14496, #14473, #14475, @​B-Step62; #14467, @​seal07; #14022, #14453, #14539, @​daniellok-db; #14450, @​BenWilson2; #14449, @​SaiMadhavanG

2.20.1 (2025-01-30)

MLflow 2.20.1 is a patch release includes several bug fixes and features:

Features:

... (truncated)

Commits
  • bf43fab Run python3 dev/update_mlflow_versions.py pre-release ... (#14740)
  • 180c58a lint
  • 82d8437 Fix transformers test in examples (#14640)
  • 4d04a96 Fix UCFunction test (#14574)
  • 3c775c4 [Maintenanc - test only fix] Fix anthropic autolog test (#14338)
  • cc971bf lint and links
  • f770435 Fix RegressorEvaluator for a regressor that returns a dataframe with multip...
  • 93baa86 Fix RegressorEvaluator for a regressor that returns a dataframe with a sing...
  • 96eb5bc Support Anthropic thinking content block (#14733)
  • e1c9527 Implemented GPU metrics for AMD/HIP GPUs (#12694)
  • Additional commits viewable in compare view

Updates llama-index from 0.11.23 to 0.12.9

Release notes

Sourced from llama-index's releases.

v0.12.9

No release notes provided.

v0.12.8

No release notes provided.

v0.12.7

No release notes provided.

v0.12.6

No release notes provided.

v0.12.5

No release notes provided.

v0.12.4

No release notes provided.

v0.12.3

No release notes provided.

v0.12.2

No release notes provided.

v0.12.1

No release notes provided.

2024-11-17 (v0.12.0)

NOTE: Updating to v0.12.0 will require bumping every other llama-index-* package! Every package has had a version bump. Only notable changes are below.

llama-index-core [0.12.0]

  • Dropped python3.8 support, Unpinned numpy (#16973)
  • Kg/dynamic pg triplet retrieval limit (#16928)

llama-index-indices-managed-llama-cloud [0.6.1]

  • Add ID support for LlamaCloudIndex & update from_documents logic, modernize apis (#16927)
  • allow skipping waiting for ingestion when uploading file (#16934)
  • add support for files endpoints (#16933)

llama-index-indices-managed-vectara [0.3.0]

  • Add Custom Prompt Parameter (#16976)

llama-index-llms-bedrock [0.3.0]

  • minor fix for messages/completion to prompt (#15729)

llama-index-llms-bedrock-converse [0.4.0]

... (truncated)

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.12.9]

  • clean up type hints in schema extractor (#17394)
  • Fix IndexError in LLM Reranking when handling malformed LLM responses (#17353)

llama-index-llms-bedrock-converse [0.4.3]

  • Fix Regression on Tools use for Bedrock Converse (#17364)

llama-index-llms-sagemaker-endpoint [0.3.1]

  • Pass aws_region_name to get_aws_service_client() in SageMakerLLM (#12000)

llama-index-postprocessor-voyageai-rerank [0.3.2]

  • VoyageAIRerank constructor fix for truncation (#17343)

llama-index-readers-gitlab [0.3.1]

  • Fix: Properly add blob documents from Gitlab Repo (#17392)

llama-index-readers-rss [0.3.2]

  • Fix minor issues in rss (#17351)

llama-index-readers-web [0.3.3]

  • fix: prevent infinite recursion in get_article_urls (#17360)

llama-index-vector-stores-azureaisearch [0.3.2]

  • azureaisearch: add semantic search mode support for async queries (#17335)

llama-index-vector-stores-azurecosmosnosql [1.3.1]

  • fix storeindex cosmosnosql query issue - (BadRequest) (#17385)

llama-index-vector-stores-milvus [0.5.0]

llama-index-vector-stores-opensearch [0.5.2]

  • Fix typo in property name (#17365)
  • bugfix when initializing with async aoss vector store (#17340)

llama-index-vector-stores-tablestore [0.2.2]

  • TablestoreVectorStore: support hybrid query, modify some documents. (#17366)
  • TablestoreVectorStore check the Dimension of the embedding when writing it to store. (#17321)

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the pip group with 4 updates in the / directory: [transformers](https://github.com/huggingface/transformers), [langchain-core](https://github.com/langchain-ai/langchain), [mlflow](https://github.com/mlflow/mlflow) and [llama-index](https://github.com/run-llama/llama_index).


Updates `transformers` from 4.45.2 to 4.48.0
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v4.45.2...v4.48.0)

Updates `langchain-core` from 0.3.12 to 0.3.15
- [Release notes](https://github.com/langchain-ai/langchain/releases)
- [Commits](langchain-ai/langchain@langchain-core==0.3.12...langchain-core==0.3.15)

Updates `mlflow` from 2.17.0 to 2.20.3
- [Release notes](https://github.com/mlflow/mlflow/releases)
- [Changelog](https://github.com/mlflow/mlflow/blob/master/CHANGELOG.md)
- [Commits](mlflow/mlflow@v2.17.0...v2.20.3)

Updates `llama-index` from 0.11.23 to 0.12.9
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.11.23...v0.12.9)

---
updated-dependencies:
- dependency-name: transformers
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: langchain-core
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: mlflow
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: llama-index
  dependency-type: direct:production
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Mar 28, 2025
@codecov-commenter
Copy link

Codecov Report

All modified and coverable lines are covered by tests ✅

📢 Thoughts on this report? Let us know!

@CalebCourier CalebCourier merged commit f5afb70 into main Mar 28, 2025
14 of 16 checks passed
@CalebCourier CalebCourier deleted the dependabot/pip/pip-c1d516724f branch March 28, 2025 17:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants