diff --git a/docs/advanced_usage/vllm_wrapper.md b/docs/advanced_usage/vllm_wrapper.md new file mode 100644 index 0000000000..bbda9cfc69 --- /dev/null +++ b/docs/advanced_usage/vllm_wrapper.md @@ -0,0 +1,163 @@ +## vLLM + +!!! note + vLLM currently supports only a limited number of models, and many implementations have subtle differences compared to the default implementations in mteb (see the [overview issue](add me) for more information). For the full list of supported models, refer to the [vllm documentation](https://docs.vllm.ai/en/stable/models/supported_models/#pooling-models). + + +## Installation + +If you're using cuda you can run +=== "pip" + ```bash + pip install "mteb[vllm]" + ``` +=== "uv" + ```bash + uv pip install "mteb[vllm]" + ``` + +For other architectures, please refer to the [vllm installation guide](https://docs.vllm.ai/en/latest/getting_started/installation/). +## Usage + +To use vLLM with MTEB you have to wrap the model with its respective wrapper. + +!!! note + you must update your Python code to guard usage of vllm behind a if __name__ == '__main__': block. For example, instead of this: + + ```python + import vllm + + llm = vllm.LLM(...) + ``` + try this instead: + ```python + if __name__ == '__main__': + import vllm + + llm = vllm.LLM(...) + ``` + + See more [troubleshooting](https://docs.vllm.ai/en/latest/usage/troubleshooting/#python-multiprocessing) + +=== "Embedding models" + ```python + import mteb + from mteb.models.vllm_wrapper import VllmEncoderWrapper + + def run_vllm_encoder(): + """Evaluate a model on specified MTEB tasks using vLLM for inference.""" + encoder = VllmEncoderWrapper(model="intfloat/e5-small") + return mteb.evaluate( + encoder, + mteb.get_task("STS12"), + ) + + if __name__ == "__main__": + results = run_vllm_encoder() + print(results) + ``` +=== "Reranking models" + ```python + import mteb + from mteb.models.vllm_wrapper import VllmCrossEncoderWrapper + + def run_vllm_crossencoder(): + """Evaluate a model on specified MTEB tasks using vLLM for inference.""" + cross_encoder = VllmCrossEncoderWrapper(model="cross-encoder/ms-marco-MiniLM-L-6-v2") + return mteb.evaluate( + cross_encoder, + mteb.get_task("AskUbuntuDupQuestions"), + ) + + + if __name__ == "__main__": + results = run_vllm_crossencoder() + print(results) + ``` + +## Why is vLLM fast? + +### Half-Precision Inference + +By default, vLLM uses Flash Attention, which only supports float16 and bfloat16 but not float32. vLLM does not optimize inference performance for float32. + +
+ ![](../images/visualizations/half_precision_inference.png) +
The throughput using float16 is approximately four times that of float32. +ST: using sentence transformers backend +vLLM: using vLLM backend +X-axis: Throughput (request/s) +Y-axis: Latency, Time needed for one step (ms) <- logarithmic scale +The curve lower right is better ↘ +
+
+ + + +!!! note + + | Format | Bits | Exponent | Fraction | + |----------|------|----------|----------| + | float32 | 32 | 8 | 23 | + | float16 | 16 | 5 | 10 | + | bfloat16 | 16 | 8 | 7 | + + If the model weights are stored in float32: + + - VLLM uses float16 for inference by default to inference a float32 model, it will keep numerical precision in most cases, for it have retains relatively more Fraction bits. However, due to the smaller Exponent part (only 5 bits), some models (e.g., the Gemma family) may risk producing NaN. VLLM maintains a list models that may cause NaN values and uses bfloat16 for inference by default. + - Using bfloat16 for inference avoids NaN risks because its Exponent part matches float32 with 8 bits. However, with only 7 Fraction bits, numerical precision decreases noticeably. + - Using float32 for inference incurs no precision loss but is about four times slower than float16/bfloat16. + + If model weights are stored in float16 or bfloat16, vLLM defaults to using the original dtype for inference. + + Quantization: With the advancement of open-source large models, fine-tuning of larger models for tasks like embedding and reranking is increasing. Exploring quantization methods to accelerate inference and reduce GPU memory usage may become necessary. + + + +### Unpadding + +By default, Sentence Transformers (st) pads all inputs in a batch to the length of the longest one, which is undoubtedly very inefficient. VLLM avoids padding entirely during inference. + +
+ ![](../images/visualizations/unpadding.png) +
X-axis: Throughput (request/s) +ST: using sentence transformers +vLLM: using vLLM +Y-axis: Latency, Time needed for one step (ms) <- logarithmic scale +The curve lower right is better ↘ +
+
+ + +Sentence Transformers (st) suffers a noticeable drop in speed when handling requests with varied input lengths, whereas vLLM does not. + +### Others + +For models using bidirectional attention, such as BERT, VLLM offers a range of performance optimizations: + +- Optimized CUDA kernels, including FlashAttention and FlashInfer integration +- CUDA Graphs and `torch.compile` support to reduce overhead and accelerate execution +- Support for tensor, pipeline, data, and expert parallelism for distributed inference +- Multiple quantization schemes—GPTQ, AWQ, AutoRound, INT4, INT8, and FP8—for efficient deployment +- Continuous batching of incoming requests to maximize throughput + +For causal attention models, such as the Qwen3 reranker, the following optimizations are also applicable: + +- Efficient KV cache memory management via PagedAttention +- Chunked prefill for improved memory handling during long-context processing +- Prefix caching to accelerate repeated prompt processing + +vLLM’s optimizations are primarily designed for and most effective with causal language models (generative models). For the full list of features, refer to the [vllm documentation](https://docs.vllm.ai/en/latest/features/). + + +## API Reference + + +:::mteb.models.vllm_wrapper.VllmWrapperBase + +!!! info + For all vLLM parameters, please refer to https://docs.vllm.ai/en/latest/configuration/engine_args/. + +:::mteb.models.vllm_wrapper.VllmEncoderWrapper + +:::mteb.models.vllm_wrapper.VllmCrossEncoderWrapper diff --git a/docs/images/visualizations/half_precision_inference.png b/docs/images/visualizations/half_precision_inference.png new file mode 100644 index 0000000000..c2b49fc154 Binary files /dev/null and b/docs/images/visualizations/half_precision_inference.png differ diff --git a/docs/images/visualizations/unpadding.png b/docs/images/visualizations/unpadding.png new file mode 100644 index 0000000000..2c8c019ef6 Binary files /dev/null and b/docs/images/visualizations/unpadding.png differ diff --git a/mkdocs.yml b/mkdocs.yml index 6a178db2f4..de3a72f229 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -84,6 +84,7 @@ nav: - Two stage reranking: advanced_usage/two_stage_reranking.md - Cache embeddings: advanced_usage/cache_embeddings.md - Retrieval backend: advanced_usage/retrieval_backend.md + - vLLM Wrapper: advanced_usage/vllm_wrapper.md - Contributing: - Adding a Model: contributing/adding_a_model.md - Adding a Task: contributing/adding_a_dataset.md diff --git a/mteb/models/vllm_wrapper.py b/mteb/models/vllm_wrapper.py new file mode 100644 index 0000000000..8f667b9239 --- /dev/null +++ b/mteb/models/vllm_wrapper.py @@ -0,0 +1,327 @@ +from __future__ import annotations + +import atexit +import gc +import logging +import os +from collections.abc import Callable +from typing import TYPE_CHECKING, Any, Literal + +import numpy as np +import torch +from torch.utils.data import DataLoader + +from mteb._requires_package import requires_package +from mteb.abstasks.task_metadata import TaskMetadata +from mteb.models import ModelMeta +from mteb.models.abs_encoder import AbsEncoder +from mteb.types import Array, BatchedInput, PromptType + +if TYPE_CHECKING: + from vllm.config import PoolerConfig # type: ignore[import-not-found] +else: + PoolerConfig = dict[str, Any] + +logger = logging.getLogger(__name__) + +Dtype = Literal["half", "float16", "float", "float32", "bfloat16", "auto"] + + +class VllmWrapperBase: + """Wrapper for vllm serving engine.""" + + convert = "auto" + mteb_model_meta: ModelMeta | None = None + + def __init__( + self, + model: str | ModelMeta, + revision: str | None = None, + *, + trust_remote_code: bool = True, + dtype: Dtype = "auto", + head_dtype: Literal["model"] | Dtype | None = None, + max_model_len: int | None = None, + max_num_batched_tokens: int | None = None, + max_num_seqs: int = 128, + tensor_parallel_size: int = 1, + enable_prefix_caching: bool | None = None, + gpu_memory_utilization: float = 0.9, + hf_overrides: dict[str, Any] | None = None, + pooler_config: PoolerConfig | None = None, + enforce_eager: bool = False, + **kwargs: Any, + ): + """Wrapper for vllm serving engine. + + Args: + model: model name string. + revision: The revision of the model to use. + trust_remote_code: Whether to trust remote code execution when loading the model. + Should be True for models with custom code. + dtype: Data type for model weights. "auto" will automatically select appropriate + dtype based on hardware and model capabilities. vllm uses flash attention by + default, which does not support fp32. Therefore, it defaults to using fp16 for + inference on fp32 models. Testing has shown a relatively small drop in accuracy. + You can manually opt for fp32, but inference speed will be very slow. + head_dtype: "head" refers to the last Linear layer(s) of an LLMs, such as the score + or classifier in a classification model. Uses fp32 for the head by default to + gain extra precision. + max_model_len: Maximum sequence length (context window) supported by the model. + If None, uses the model's default maximum length. + max_num_batched_tokens: Maximum number of tokens to process in a single batch. + If None, automatically determined. + max_num_seqs: Maximum number of sequences to process concurrently. + tensor_parallel_size: Number of GPUs for tensor parallelism. + enable_prefix_caching: Whether to enable KV cache sharing for common prompt prefixes. + If None, uses the model's default setting. + gpu_memory_utilization: Target GPU memory utilization ratio (0.0 to 1.0). + hf_overrides: Dictionary mapping Hugging Face configuration keys to override values. + pooler_config: Controls the behavior of output pooling in pooling models. + enforce_eager: Whether to disable CUDA graph optimization and use eager execution. + **kwargs: Additional arguments to pass to the vllm serving engine model. + """ + requires_package( + self, + "vllm", + "Wrapper for vllm serving engine", + install_instruction="pip install mteb[vllm]", + ) + + os.environ["VLLM_WORKER_MULTIPROC_METHOD"] = "spawn" + + from vllm import LLM, EngineArgs + + hf_overrides = {} if hf_overrides is None else hf_overrides + + if head_dtype is not None: + hf_overrides["head_dtype"] = head_dtype + + model_name = model if isinstance(model, str) else model.name + + if isinstance(model, ModelMeta): + logger.info( + "Using revision from model meta. Passed revision will be ignored" + ) + revision = model.revision + + args = EngineArgs( + model=model_name, + revision=revision, + runner="pooling", + convert=self.convert, # type: ignore[arg-type] + max_model_len=max_model_len, + max_num_batched_tokens=max_num_batched_tokens, + max_num_seqs=max_num_seqs, + tensor_parallel_size=tensor_parallel_size, + enable_prefix_caching=enable_prefix_caching, + gpu_memory_utilization=gpu_memory_utilization, + hf_overrides=hf_overrides, + pooler_config=pooler_config, + enforce_eager=enforce_eager, + trust_remote_code=trust_remote_code, + dtype=dtype, + **kwargs, + ) + self.llm = LLM(**vars(args)) + + if isinstance(model, str): + self.mteb_model_meta = ModelMeta.from_hub(model=model, revision=revision) + else: + self.mteb_model_meta = model + + atexit.register(self.cleanup) + + def cleanup(self): + """Clean up the VLLM distributed runtime environment and release GPU resources.""" + if self.llm is None: + return + + from vllm.distributed import ( # type: ignore[import-not-found] + cleanup_dist_env_and_memory, + ) + + self.llm = None + gc.collect() + cleanup_dist_env_and_memory() + + def __del__(self): + try: + self.cleanup() + except Exception: + pass + + +class VllmEncoderWrapper(AbsEncoder, VllmWrapperBase): + """vLLM wrapper for Encoder models. + + Args: + model: model name string or ModelMeta. + revision: The revision of the model to use. + prompt_dict: A dictionary mapping task names to prompt strings. + use_instructions: Whether to use instructions from the prompt_dict. + When False, values from prompt_dict are used as static prompts (prefixes). + When True, values from prompt_dict are used as instructions to be formatted + using the instruction_template. + instruction_template: A template or callable to format instructions. + Can be a string with '{instruction}' placeholder or a callable that takes + the instruction and prompt type and returns a formatted string. + apply_instruction_to_documents: Whether to apply instructions to documents prompts. + **kwargs: Additional arguments to pass to the vllm serving engine model. + """ + + convert = "embed" + + def __init__( + self, + model: str | ModelMeta, + revision: str | None = None, + prompt_dict: dict[str, str] | None = None, + use_instructions: bool = False, + instruction_template: ( + str | Callable[[str, PromptType | None], str] | None + ) = None, + apply_instruction_to_documents: bool = True, + **kwargs: Any, + ): + if use_instructions and instruction_template is None: + raise ValueError( + "To use instructions, an instruction_template must be provided. " + "For example, `Instruction: {instruction}`" + ) + + if ( + isinstance(instruction_template, str) + and "{instruction}" not in instruction_template + ): + raise ValueError( + "Instruction template must contain the string '{instruction}'." + ) + + self.prompts_dict = prompt_dict + self.use_instructions = use_instructions + self.instruction_template = instruction_template + self.apply_instruction_to_passages = apply_instruction_to_documents + super().__init__( + model, + revision, + **kwargs, + ) + + def encode( + self, + inputs: DataLoader[BatchedInput], + *, + task_metadata: TaskMetadata, + hf_split: str, + hf_subset: str, + prompt_type: PromptType | None = None, + **kwargs: Any, + ) -> Array: + """Encodes the given sentences using the encoder. + + Args: + inputs: The sentences to encode. + task_metadata: The metadata of the task. Sentence-transformers uses this to + determine which prompt to use from a specified dictionary. + prompt_type: The name type of prompt. (query or passage) + hf_split: Split of current task + hf_subset: Subset of current task + **kwargs: Additional arguments to pass to the encoder. + + Returns: + The encoded sentences. + """ + prompt = "" + if self.use_instructions and self.prompts_dict is not None: + prompt = self.get_task_instruction(task_metadata, prompt_type) + elif self.prompts_dict is not None: + prompt_name = self.get_prompt_name(task_metadata, prompt_type) + if prompt_name is not None: + prompt = self.prompts_dict.get(prompt_name, "") + + if ( + self.use_instructions + and self.apply_instruction_to_passages is False + and prompt_type == PromptType.document + ): + logger.info( + f"No instruction used, because prompt type = {prompt_type.document}" + ) + prompt = "" + else: + logger.info( + f"Using instruction: '{prompt}' for task: '{task_metadata.name}' prompt type: '{prompt_type}'" + ) + + prompts = [prompt + text for batch in inputs for text in batch["text"]] + outputs = self.llm.encode( + prompts, pooling_task="embed", truncate_prompt_tokens=-1 + ) + embeddings = torch.stack([output.outputs.data for output in outputs]) + return embeddings + + +class VllmCrossEncoderWrapper(VllmWrapperBase): + """vLLM wrapper for CrossEncoder models.""" + + convert = "classify" + + def __init__( + self, + model: str | ModelMeta, + revision: str | None = None, + query_prefix: str = "", + document_prefix: str = "", + **kwargs: Any, + ): + super().__init__( + model, + revision, + **kwargs, + ) + self.query_prefix = query_prefix + self.document_prefix = document_prefix + + def predict( + self, + inputs1: DataLoader[BatchedInput], + inputs2: DataLoader[BatchedInput], + *, + task_metadata: TaskMetadata, + hf_split: str, + hf_subset: str, + prompt_type: PromptType | None = None, + **kwargs: Any, + ) -> Array: + """Predicts relevance scores for pairs of inputs. Note that, unlike the encoder, the cross-encoder can compare across inputs. + + Args: + inputs1: First Dataloader of inputs to encode. For reranking tasks, these are queries (for text only tasks `QueryDatasetType`). + inputs2: Second Dataloader of inputs to encode. For reranking, these are documents (for text only tasks `RetrievalOutputType`). + task_metadata: Metadata of the current task. + hf_split: Split of current task, allows to know some additional information about current split. + E.g. Current language + hf_subset: Subset of current task. Similar to `hf_split` to get more information + prompt_type: The name type of prompt. (query or passage) + **kwargs: Additional arguments to pass to the cross-encoder. + + Returns: + The predicted relevance scores for each inputs pair. + """ + queries = [ + self.query_prefix + text for batch in inputs1 for text in batch["text"] + ] + corpus = [ + self.document_prefix + text for batch in inputs2 for text in batch["text"] + ] + # TODO: support score prompt + + outputs = self.llm.score( + queries, + corpus, + truncate_prompt_tokens=-1, + use_tqdm=False, + ) + scores = np.array([output.outputs.score for output in outputs]) + return scores diff --git a/pyproject.toml b/pyproject.toml index a893436a2d..e11b3c991e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -44,6 +44,8 @@ dependencies = [ "pytrec-eval-terrier>=0.5.6", "pydantic>=2.0.0", "polars>=0.20.22", + "torch; python_full_version < '3.14'", + "torch>=2.9.0; python_full_version >= '3.14'", ] @@ -99,6 +101,7 @@ youtu = ["tencentcloud-sdk-python-common>=3.0.1454", "tencentcloud-sdk-python-lk llama-embed-nemotron = ["transformers==4.51.0"] faiss-cpu = ["faiss-cpu>=1.12.0"] eager_embed = ["qwen_vl_utils>=0.0.14"] +vllm = ["vllm>=0.11.1"] [dependency-groups] lint = [ @@ -329,6 +332,7 @@ conflicts = [ { extra = "colqwen3" }, { extra = "jina-v4" }, { extra = "sauerkrautlm-colpali" }, + { extra = "vllm" }, ] ] @@ -346,6 +350,7 @@ module = [ "sklearn", "sklearn.*", "faiss", + "vllm", ] ignore_missing_imports = true diff --git a/tests/test_models/test_vllm.py b/tests/test_models/test_vllm.py new file mode 100644 index 0000000000..3ab70e597b --- /dev/null +++ b/tests/test_models/test_vllm.py @@ -0,0 +1,26 @@ +from pathlib import Path + +import pytest + +import mteb +from mteb import AbsTask +from mteb.models.vllm_wrapper import VllmCrossEncoderWrapper, VllmEncoderWrapper +from tests.mock_tasks import MockRerankingTask + + +@pytest.mark.parametrize("model_name", ["cross-encoder/ms-marco-TinyBERT-L2-v2"]) +@pytest.mark.parametrize("task", [MockRerankingTask()]) +def test_vllm_cross_encoder(task: AbsTask, model_name: str, tmp_path: Path): + pytest.importorskip("vllm", reason="vllm not installed") + + model = VllmCrossEncoderWrapper(model_name) + mteb.evaluate(model, task, cache=None) + + +@pytest.mark.parametrize("model_name", ["sentence-transformers/all-MiniLM-L6-v2"]) +@pytest.mark.parametrize("task", [MockRerankingTask()]) +def test_vllm_encoder(task: AbsTask, model_name: str, tmp_path: Path): + pytest.importorskip("vllm", reason="vllm not installed") + + model = VllmEncoderWrapper(model_name) + mteb.evaluate(model, task, cache=None) diff --git a/uv.lock b/uv.lock index ec25c0d021..22ef502eb5 100644 --- a/uv.lock +++ b/uv.lock @@ -2,126 +2,136 @@ version = 1 revision = 3 requires-python = ">=3.10, <3.15" resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] conflicts = [[ { package = "mteb", extra = "blip2" }, @@ -134,6 +144,7 @@ conflicts = [[ { package = "mteb", extra = "pylate" }, { package = "mteb", extra = "sauerkrautlm-colpali" }, { package = "mteb", extra = "timm" }, + { package = "mteb", extra = "vllm" }, ]] [manifest] @@ -145,14 +156,15 @@ version = "1.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "huggingface-hub" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "psutil" }, { name = "pyyaml" }, { name = "safetensors" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4a/8e/ac2a9566747a93f8be36ee08532eb0160558b07630a081a6056a9f89bf1d/accelerate-1.12.0.tar.gz", hash = "sha256:70988c352feb481887077d2ab845125024b2a137a5090d6d7a32b57d03a45df6", size = 398399, upload-time = "2025-11-21T11:27:46.973Z" } wheels = [ @@ -184,7 +196,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiohappyeyeballs" }, { name = "aiosignal" }, - { name = "async-timeout", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "async-timeout", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "attrs" }, { name = "frozenlist" }, { name = "multidict" }, @@ -312,7 +324,7 @@ version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "frozenlist" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/61/62/06741b579156360248d1ec624842ad0edf697050bbaf7c3e46394e106ad1/aiosignal-1.4.0.tar.gz", hash = "sha256:f47eecd9468083c2029cc99945502cb7708b082c232f9aca65da147157b251c7", size = 25007, upload-time = "2025-07-03T22:54:43.528Z" } wheels = [ @@ -353,6 +365,25 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/78/b6/6307fbef88d9b5ee7421e68d78a9f162e0da4900bc5f5793f6d3d0e34fb8/annotated_types-0.7.0-py3-none-any.whl", hash = "sha256:1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53", size = 13643, upload-time = "2024-05-20T21:33:24.1Z" }, ] +[[package]] +name = "anthropic" +version = "0.71.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "distro" }, + { name = "docstring-parser" }, + { name = "httpx" }, + { name = "jiter" }, + { name = "pydantic" }, + { name = "sniffio" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/82/4f/70682b068d897841f43223df82d96ec1d617435a8b759c4a2d901a50158b/anthropic-0.71.0.tar.gz", hash = "sha256:eb8e6fa86d049061b3ef26eb4cbae0174ebbff21affa6de7b3098da857d8de6a", size = 489102, upload-time = "2025-10-16T15:54:40.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/5d/77/073e8ac488f335aec7001952825275582fb8f433737e90f24eeef9d878f6/anthropic-0.71.0-py3-none-any.whl", hash = "sha256:85c5015fcdbdc728390f11b17642a65a4365d03b12b799b18b6cc57e71fdb327", size = 355035, upload-time = "2025-10-16T15:54:38.238Z" }, +] + [[package]] name = "antlr4-python3-runtime" version = "4.9.3" @@ -364,15 +395,50 @@ name = "anyio" version = "4.12.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "idna" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/16/ce/8a777047513153587e5434fd752e89334ac33e379aa3497db860eeb60377/anyio-4.12.0.tar.gz", hash = "sha256:73c693b567b0c55130c104d0b43a9baf3aa6a31fc6110116509f27bf75e21ec0", size = 228266, upload-time = "2025-11-28T23:37:38.911Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/7f/9c/36c5c37947ebfb8c7f22e0eb6e4d188ee2d53aa3880f3f2744fb894f0cb1/anyio-4.12.0-py3-none-any.whl", hash = "sha256:dad2376a628f98eeca4881fc56cd06affd18f659b17a747d3ff0307ced94b1bb", size = 113362, upload-time = "2025-11-28T23:36:57.897Z" }, ] +[[package]] +name = "apache-tvm-ffi" +version = "0.1.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f4/08/d1f9296f7446f6bf9cc9c6f6359e7a12840d4f06206afbdf17808b6179b7/apache_tvm_ffi-0.1.8.tar.gz", hash = "sha256:e1e174a12e425cbcf2d458014ee9522fc73b70725c07583e6d8ad6929804527b", size = 2438333, upload-time = "2026-01-12T08:37:45.452Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/9d/a0/7b7e319460f46e874ed6a664040708443ea52dff43496b36df38d2185372/apache_tvm_ffi-0.1.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:705027d7203484012a7910e5ee9e94c64a41a1214c4163d4fe85336727437fbb", size = 1838523, upload-time = "2026-01-12T08:36:48.273Z" }, + { url = "https://files.pythonhosted.org/packages/aa/f2/6f06e4d8eca5f782a0cb71174b1c7212a90d1a1f20ad69e96842719bbcfe/apache_tvm_ffi-0.1.8-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:25497460f50d5eca6400691c63f451fb4d0f771c832a12d247e807469b6817e8", size = 1995997, upload-time = "2026-01-12T08:36:49.893Z" }, + { url = "https://files.pythonhosted.org/packages/d8/76/821dc486e032249d733533f6d21f4d7f806133885e9a1cc3ab0c87636959/apache_tvm_ffi-0.1.8-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:7f348ad61fafb960578f3ebad9230129bfa03ff8c9b2a953b90b3c485ff930bb", size = 2069232, upload-time = "2026-01-12T08:36:51.723Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ab/1edce06930ae9735e6e6c959111e8375fe6884a35d709ca2f8ddf976a854/apache_tvm_ffi-0.1.8-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cec04a28fd49b7149f8288bcab013832745cc6642989b1f6ade9e2adb05d94a1", size = 1939174, upload-time = "2026-01-12T08:36:53.042Z" }, + { url = "https://files.pythonhosted.org/packages/13/fc/4d3b1d499f0754f8691595df055630e44e578d484df72ffcec1aa32f480a/apache_tvm_ffi-0.1.8-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:97c36e3594ba3f3a4bebb9bb355e12a0d871aa8b8280dd678895f33146824eaa", size = 2053136, upload-time = "2026-01-12T08:36:54.48Z" }, + { url = "https://files.pythonhosted.org/packages/06/1a/5fead8f5fe18992fc99aba034c5d8b5f1c1a51340c49a8851cda54e78b87/apache_tvm_ffi-0.1.8-cp310-cp310-win_amd64.whl", hash = "sha256:52732008a10db305e71eb24dc6f4a1d21d4a775ca2afc98c181a800394b30fc6", size = 1810089, upload-time = "2026-01-12T08:36:56.137Z" }, + { url = "https://files.pythonhosted.org/packages/41/a9/c16a9a12219e5edf5937b4cbd20a5c4629a49aabc9247ee5faa76284fda4/apache_tvm_ffi-0.1.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f245c649e4cdc6d53bdadaf5ace632216685c7f4044edbe090777bb6ae6c947c", size = 1840183, upload-time = "2026-01-12T08:36:57.427Z" }, + { url = "https://files.pythonhosted.org/packages/2e/d0/993a10e05e227cc116ff08350e7d05ebc8702b54dcf68549fb14fde54b03/apache_tvm_ffi-0.1.8-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:873e992f1ac96a41e208eb79a6bfc286dd0ab92b410a010a48a25d1cfccfe515", size = 1995191, upload-time = "2026-01-12T08:36:58.851Z" }, + { url = "https://files.pythonhosted.org/packages/45/bf/6af34b470355e0da11acd2fc392e56b8b6ce2d5b4bd7ed0689c91a4c3bc1/apache_tvm_ffi-0.1.8-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e64e4ba281a8be5e2a04ae64203bff95519ed011ed4c804253ea6630ce6eefb0", size = 2068645, upload-time = "2026-01-12T08:37:00.547Z" }, + { url = "https://files.pythonhosted.org/packages/6c/29/b9a163d2994734be3ad49f0718ebe7c88d2aaa22efaef4a5f78a041be64a/apache_tvm_ffi-0.1.8-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6ac845d4457bdb4b72508f6e37e611f25baffb55522979ef1842a14530c6395e", size = 1939296, upload-time = "2026-01-12T08:37:01.988Z" }, + { url = "https://files.pythonhosted.org/packages/a5/b9/dd358adc5811936ed056f01b4303178c8313257f4555898e070c85bfc8da/apache_tvm_ffi-0.1.8-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:87fbbb82ec739b5f99836dee2c6a2f8cd46df42d5827cbd130b5b3b31617248d", size = 2053343, upload-time = "2026-01-12T08:37:03.628Z" }, + { url = "https://files.pythonhosted.org/packages/16/24/78b7108827cca1f71c073d4ac6ae4ca4c4c3f800e534b52cccbdfbb3ebb6/apache_tvm_ffi-0.1.8-cp311-cp311-win_amd64.whl", hash = "sha256:1606b2b7a305e539b47a34327fac0ebb0c9e6c5f1b8418bf6e6ad16b3e3e4bb0", size = 1809996, upload-time = "2026-01-12T08:37:05.616Z" }, + { url = "https://files.pythonhosted.org/packages/ce/20/bd739afc04f7b75daded57f515b59ae3ef2e938041f680873d03b9e0b918/apache_tvm_ffi-0.1.8-cp312-abi3-macosx_11_0_arm64.whl", hash = "sha256:f83b9b303bf987e2d59a7ccce60e3b75143b22dc2f300c18e3655308e6773054", size = 1811768, upload-time = "2026-01-12T08:37:07.305Z" }, + { url = "https://files.pythonhosted.org/packages/2d/08/178237bb6b4bec8284562a65d8501cb45bbbe2579db8e607a44f301903f7/apache_tvm_ffi-0.1.8-cp312-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b869c065914db61429d215d2017c5cfa6088910e9bd54ab1dabe68be3c7a838c", size = 1967076, upload-time = "2026-01-12T08:37:08.889Z" }, + { url = "https://files.pythonhosted.org/packages/05/56/d682e40de5d29fe22b27eff9b1bf5603d40bd0c03e6dd6a13eb1cab8f2f8/apache_tvm_ffi-0.1.8-cp312-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:c4f59fcf43e7be6be7a61939f942cb2f71da40eb3dbda76310744cdce1d5d9bb", size = 2044757, upload-time = "2026-01-12T08:37:10.249Z" }, + { url = "https://files.pythonhosted.org/packages/1a/c3/ad7bf3cfb2cf60986eab5a138e8c2f2493c0566cd3428033c1509bf8ab70/apache_tvm_ffi-0.1.8-cp312-abi3-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61b50d33f72ac149a8d9c0d83127bbee1867a5cd4cc2cb195db0b17f94d3d4f0", size = 1910926, upload-time = "2026-01-12T08:37:11.708Z" }, + { url = "https://files.pythonhosted.org/packages/c5/5f/dd21dcef2f9b3bd04575ac933329e7415b45cb586c12a3ffecbde8057400/apache_tvm_ffi-0.1.8-cp312-abi3-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:37972240411e789b9e96423bfa604d1c3431a4c07a28290ef1d8bbc7ac193e68", size = 2025728, upload-time = "2026-01-12T08:37:13.064Z" }, + { url = "https://files.pythonhosted.org/packages/b1/b6/4b6b1bd9d3db0240af262c4c77ed243a692eabe8d1d6463969299259a07a/apache_tvm_ffi-0.1.8-cp312-abi3-win_amd64.whl", hash = "sha256:808636e582a442f706b580b54f07bfb40798c28d8b6c1ec1e33be0d41808934d", size = 1790253, upload-time = "2026-01-12T08:37:14.444Z" }, + { url = "https://files.pythonhosted.org/packages/4a/09/a6062f8d14d56702d1cc5a0afd350b7876a41f9499c6c9a4e5c347042af4/apache_tvm_ffi-0.1.8-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:c62e4f5fa6e67aa9eb53c466d82b67056d9f8b463cefdecb808a4a8d05fd9b2c", size = 1842494, upload-time = "2026-01-12T08:37:16.102Z" }, + { url = "https://files.pythonhosted.org/packages/af/5d/27ec468dc9d9ed801ac174f1a1b731dc70d8756bca9b0a2115aa348cc1ed/apache_tvm_ffi-0.1.8-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5db86ed703d6a25c80d4d111bf914d68c624c2b9989b93a31aa8cea646bdb269", size = 1980789, upload-time = "2026-01-12T08:37:17.663Z" }, + { url = "https://files.pythonhosted.org/packages/16/e4/c076429127228b8248df2166344eb1783817f5bd5ab89023a6b8ec7b0c28/apache_tvm_ffi-0.1.8-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:af1ded3895885f999f40249b87e7c1d6771f97c1ff157a0b9cd9659fb862de54", size = 2053441, upload-time = "2026-01-12T08:37:19.375Z" }, + { url = "https://files.pythonhosted.org/packages/b9/20/da8c7d371421f67a2fbcffc132ea8d248a27972381e6ce2438123162b9cb/apache_tvm_ffi-0.1.8-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a671c49bf56efc22e73c4a0c5108c57561eb1098e2730b9844c0e728b1963e36", size = 1923737, upload-time = "2026-01-12T08:37:21.083Z" }, + { url = "https://files.pythonhosted.org/packages/7a/8d/ffef9930cebab541f9d4488d6762a20d369094e237788fa2f015b7572329/apache_tvm_ffi-0.1.8-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ef1f36cf2d27ec4ac4cc9c3916d0d99298b96e68e154dc975037c06d463fd791", size = 2035546, upload-time = "2026-01-12T08:37:22.552Z" }, + { url = "https://files.pythonhosted.org/packages/45/fd/cefc25aafbc3ab7a96b53ea9a37fa821ec1448242a559fd753ffd971900d/apache_tvm_ffi-0.1.8-cp314-cp314t-win_amd64.whl", hash = "sha256:e74ae18de2123ff00be36def9f0051e0512173a8448432962723c5582d0c66ea", size = 1850155, upload-time = "2026-01-12T08:37:24.175Z" }, +] + [[package]] name = "arrow" version = "1.4.0" @@ -386,6 +452,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ed/c9/d7977eaacb9df673210491da99e6a247e93df98c715fc43fd136ce1d3d33/arrow-1.4.0-py3-none-any.whl", hash = "sha256:749f0769958ebdc79c173ff0b0670d59051a535fa26e8eba02953dc19eb43205", size = 68797, upload-time = "2025-10-18T17:46:45.663Z" }, ] +[[package]] +name = "astor" +version = "0.8.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/5a/21/75b771132fee241dfe601d39ade629548a9626d1d39f333fde31bc46febe/astor-0.8.1.tar.gz", hash = "sha256:6a6effda93f4e1ce9f618779b2dd1d9d84f1e32812c23a29b3fff6fd7f63fa5e", size = 35090, upload-time = "2019-12-10T01:50:35.51Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/88/97eef84f48fa04fbd6750e62dcceafba6c63c81b7ac1420856c8dcc0a3f9/astor-0.8.1-py2.py3-none-any.whl", hash = "sha256:070a54e890cefb5b3739d19f30f5a5ec840ffc9c50ffa7d23cc9fc1a38ebbfc5", size = 27488, upload-time = "2019-12-10T01:50:33.628Z" }, +] + [[package]] name = "asttokens" version = "3.0.1" @@ -613,6 +688,101 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/68/11/21331aed19145a952ad28fca2756a1433ee9308079bd03bd898e903a2e53/black-25.12.0-py3-none-any.whl", hash = "sha256:48ceb36c16dbc84062740049eef990bb2ce07598272e673c17d1a7720c71c828", size = 206191, upload-time = "2025-12-08T01:40:50.963Z" }, ] +[[package]] +name = "blake3" +version = "1.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.12'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/75/aa/abcd75e9600987a0bc6cfe9b6b2ff3f0e2cb08c170addc6e76035b5c4cb3/blake3-1.0.8.tar.gz", hash = "sha256:513cc7f0f5a7c035812604c2c852a0c1468311345573de647e310aca4ab165ba", size = 117308, upload-time = "2025-10-14T06:47:48.83Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/a0/fbe66cf17f72cab1600246b90db6cb39b52a88335b9bd2821688379d8dde/blake3-1.0.8-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:8956bb9aec47b6c37ccce935a943588f1f5e6e2e85d43bb7cb76a574238f8a9b", size = 350634, upload-time = "2025-10-14T06:45:09.621Z" }, + { url = "https://files.pythonhosted.org/packages/20/bc/f4b88873054aa87b8c36398775713bf674807e7449a9c7fefe35d3cf1dc5/blake3-1.0.8-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7adbbee5dd0c302218eb8acdfd82b7006930eb5798f56f79f9cca89f6f192662", size = 328382, upload-time = "2025-10-14T06:45:11.137Z" }, + { url = "https://files.pythonhosted.org/packages/b9/e5/4c37ced9358cece71f2f380a57f77a449f6e87cc6d9f450613237b7a3078/blake3-1.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:859cd57bac097a2cd63cb36d64c2f6f16c9edece5590f929e70157478e46dc9e", size = 371337, upload-time = "2025-10-14T06:45:12.296Z" }, + { url = "https://files.pythonhosted.org/packages/d1/df/0825da1cde7ca63a8bcdc785ca7f8647b025e9497eef18c75bb9754dbd26/blake3-1.0.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9e1d70bf76c02846d0868a3d413eb6c430b76a315e12f1b2e59b5cf56c1f62a3", size = 374945, upload-time = "2025-10-14T06:45:13.99Z" }, + { url = "https://files.pythonhosted.org/packages/b7/a3/43f10c623179dce789ca9e3b8f4064fb6312e99f05c1aae360d07ad95bb0/blake3-1.0.8-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d3fe26f145fcb82931d1820b55c0279f72f8f8e49450dd9d74efbfd409b28423", size = 448766, upload-time = "2025-10-14T06:45:15.471Z" }, + { url = "https://files.pythonhosted.org/packages/db/8f/9431bf5fe0eedeb2aadb4fe81fb18945cf8d49adad98e7988fb3cdac76c2/blake3-1.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:97c076d58ee37eb5b2d8d91bb9db59c5a008fd59c71845dc57fe438aeeabaf10", size = 507107, upload-time = "2025-10-14T06:45:17.055Z" }, + { url = "https://files.pythonhosted.org/packages/ac/55/3712cdaebaefa8d5acec46f8df7861ba1832e1e188bc1333dd5acd31f760/blake3-1.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:78731ce7fca46f776ae45fb5271a2a76c4a92c9687dd4337e84b2ae9a174b28f", size = 393955, upload-time = "2025-10-14T06:45:18.718Z" }, + { url = "https://files.pythonhosted.org/packages/1f/d0/add0441e7aaa6b358cac0ddc9246f0799b60d25f06bd542b554afe19fd85/blake3-1.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c65e373c8b47174b969ee61a89ee56922f722972eb650192845c8546df8d9db9", size = 387577, upload-time = "2025-10-14T06:45:20.332Z" }, + { url = "https://files.pythonhosted.org/packages/b2/9a/e4a61f5c0cad4d51a886e8f4367e590caaead8a4809892292bf724c4421d/blake3-1.0.8-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db54946792d2b8c6fa4be73e6e334519f13c1b52e7ff346b3e2ec8ad3eb59401", size = 550515, upload-time = "2025-10-14T06:45:21.867Z" }, + { url = "https://files.pythonhosted.org/packages/28/c7/90c01091465628acff96534e82d4b3bc16ca22c515f69916d2715273c0e3/blake3-1.0.8-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:67d9c42c42eb1c7aedcf901591c743266009fcf48babf6d6f8450f567cb94a84", size = 554650, upload-time = "2025-10-14T06:45:23.047Z" }, + { url = "https://files.pythonhosted.org/packages/d5/11/812d7125c6e99e5e0e841a9af2c4161ac811c027e08886353df76eae7b96/blake3-1.0.8-cp310-cp310-win32.whl", hash = "sha256:444215a1e5201f8fa4e5c7352e938a7070cd33d66aeb1dd9b1103a64b6920f9e", size = 228695, upload-time = "2025-10-14T06:45:24.255Z" }, + { url = "https://files.pythonhosted.org/packages/3c/7e/ab9b5c4b650ff397d347451bfb1ad7e6e53dc06c945e2fd091f27a76422e/blake3-1.0.8-cp310-cp310-win_amd64.whl", hash = "sha256:725c52c4d393c7bd1a10682df322d480734002a1389b320366c660568708846b", size = 215660, upload-time = "2025-10-14T06:45:25.381Z" }, + { url = "https://files.pythonhosted.org/packages/7d/e1/1df74c915fde3c48940247ad64984f40f5968191d7b5230bcc7b31402e7c/blake3-1.0.8-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:9a8946cb6b1d2b2096daaaa89856f39887bce2b78503fa31b78173e3a86fa281", size = 350481, upload-time = "2025-10-14T06:45:26.625Z" }, + { url = "https://files.pythonhosted.org/packages/bb/0d/7c47ae1f5f8d60783ce6234a8b31db351fc62be243006a6276284ca3d40d/blake3-1.0.8-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:adccc3a139207e02bb7d7bb0715fe0b87069685aad5f3afff820b2f829467904", size = 328039, upload-time = "2025-10-14T06:45:32.844Z" }, + { url = "https://files.pythonhosted.org/packages/f4/0a/515209b0c282c360e249b89cd85350d97cfd55fadbb4df736c67b77b27a1/blake3-1.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fcfe81b3ae3fb5d2e88be0d3259603ff95f0d5ed69f655c28fdaef31e49a470", size = 371092, upload-time = "2025-10-14T06:45:34.062Z" }, + { url = "https://files.pythonhosted.org/packages/a0/33/9d342a2bf5817f006bbe947335e5d387327541ea47590854947befd01251/blake3-1.0.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58ce8d45a5bb5326482de72ea1969a378634236186a970fef63058a5b7b8b435", size = 374859, upload-time = "2025-10-14T06:45:35.262Z" }, + { url = "https://files.pythonhosted.org/packages/5b/fc/ea4bef850a7ec9fbb383503fd3c56056dd9fa44e10c3bc61050ab7b2bac0/blake3-1.0.8-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:83605dbf43f581d8b7175b7f3bfe5388bad5a7c6ac175c9c11d669da31133f4b", size = 448585, upload-time = "2025-10-14T06:45:36.542Z" }, + { url = "https://files.pythonhosted.org/packages/a5/67/167a65a4c431715407d07b1b8b1367698a3ad88e7260edb85f0c5293f08a/blake3-1.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b5573b052777142b2cecc453d022c3f21aa4aba75011258410bb98f41c1a727", size = 507519, upload-time = "2025-10-14T06:45:37.814Z" }, + { url = "https://files.pythonhosted.org/packages/32/e2/0886e192d634b264c613b0fbf380745b39992b424a0effc00ef08783644e/blake3-1.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe1b02ab49bfd969ef50b9f17482a2011c77536654af21807ba5c2674e0bb2a0", size = 393645, upload-time = "2025-10-14T06:45:39.146Z" }, + { url = "https://files.pythonhosted.org/packages/fc/3b/7fb2fe615448caaa5f6632b2c7551117b38ccac747a3a5769181e9751641/blake3-1.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c7780666dc6be809b49442d6d5ce06fdbe33024a87560b58471103ec17644682", size = 387640, upload-time = "2025-10-14T06:45:40.546Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8c/2bfc942c6c97cb3d20f341859343bb86ee20af723fedfc886373e606079b/blake3-1.0.8-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:af394b50c6aa0b1b957a99453d1ee440ef67cd2d1b5669c731647dc723de8a3a", size = 550316, upload-time = "2025-10-14T06:45:42.003Z" }, + { url = "https://files.pythonhosted.org/packages/7e/75/0252be37620699b79dbaa799c9b402d63142a131d16731df4ef09d135dd7/blake3-1.0.8-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c63ece266a43014cf29e772a82857cd8e90315ae3ed53e3c5204851596edd5f2", size = 554463, upload-time = "2025-10-14T06:45:43.22Z" }, + { url = "https://files.pythonhosted.org/packages/8c/6d/d698ae2d5ddd25976fd2c11b079ca071334aecbba6414da8c9cc8e19d833/blake3-1.0.8-cp311-cp311-win32.whl", hash = "sha256:44c2815d4616fad7e2d757d121c0a11780f70ffc817547b3059b5c7e224031a7", size = 228375, upload-time = "2025-10-14T06:45:44.425Z" }, + { url = "https://files.pythonhosted.org/packages/34/d7/33b01e27dc3542dc9ec44132684506f880cd0257b04da0bf7f4b2afa41c8/blake3-1.0.8-cp311-cp311-win_amd64.whl", hash = "sha256:8f2ef8527a7a8afd99b16997d015851ccc0fe2a409082cebb980af2554e5c74c", size = 215733, upload-time = "2025-10-14T06:45:46.049Z" }, + { url = "https://files.pythonhosted.org/packages/ed/a0/b7b6dff04012cfd6e665c09ee446f749bd8ea161b00f730fe1bdecd0f033/blake3-1.0.8-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:d8da4233984d51471bd4e4366feda1d90d781e712e0a504ea54b1f2b3577557b", size = 347983, upload-time = "2025-10-14T06:45:47.214Z" }, + { url = "https://files.pythonhosted.org/packages/5b/a2/264091cac31d7ae913f1f296abc20b8da578b958ffb86100a7ce80e8bf5c/blake3-1.0.8-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1257be19f2d381c868a34cc822fc7f12f817ddc49681b6d1a2790bfbda1a9865", size = 325415, upload-time = "2025-10-14T06:45:48.482Z" }, + { url = "https://files.pythonhosted.org/packages/ee/7d/85a4c0782f613de23d114a7a78fcce270f75b193b3ff3493a0de24ba104a/blake3-1.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:269f255b110840e52b6ce9db02217e39660ebad3e34ddd5bca8b8d378a77e4e1", size = 371296, upload-time = "2025-10-14T06:45:49.674Z" }, + { url = "https://files.pythonhosted.org/packages/e3/20/488475254976ed93fab57c67aa80d3b40df77f7d9db6528c9274bff53e08/blake3-1.0.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:66ca28a673025c40db3eba21a9cac52f559f83637efa675b3f6bd8683f0415f3", size = 374516, upload-time = "2025-10-14T06:45:51.23Z" }, + { url = "https://files.pythonhosted.org/packages/7b/21/2a1c47fedb77fb396512677ec6d46caf42ac6e9a897db77edd0a2a46f7bb/blake3-1.0.8-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bcb04966537777af56c1f399b35525aa70a1225816e121ff95071c33c0f7abca", size = 447911, upload-time = "2025-10-14T06:45:52.637Z" }, + { url = "https://files.pythonhosted.org/packages/cb/7d/db0626df16029713e7e61b67314c4835e85c296d82bd907c21c6ea271da2/blake3-1.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e5b5da177d62cc4b7edf0cea08fe4dec960c9ac27f916131efa890a01f747b93", size = 505420, upload-time = "2025-10-14T06:45:54.445Z" }, + { url = "https://files.pythonhosted.org/packages/5b/55/6e737850c2d58a6d9de8a76dad2ae0f75b852a23eb4ecb07a0b165e6e436/blake3-1.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:38209b10482c97e151681ea3e91cc7141f56adbbf4820a7d701a923124b41e6a", size = 394189, upload-time = "2025-10-14T06:45:55.719Z" }, + { url = "https://files.pythonhosted.org/packages/5b/94/eafaa5cdddadc0c9c603a6a6d8339433475e1a9f60c8bb9c2eed2d8736b6/blake3-1.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:504d1399b7fb91dfe5c25722d2807990493185faa1917456455480c36867adb5", size = 388001, upload-time = "2025-10-14T06:45:57.067Z" }, + { url = "https://files.pythonhosted.org/packages/17/81/735fa00d13de7f68b25e1b9cb36ff08c6f165e688d85d8ec2cbfcdedccc5/blake3-1.0.8-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c84af132aa09abeadf9a0118c8fb26f4528f3f42c10ef8be0fcf31c478774ec4", size = 550302, upload-time = "2025-10-14T06:45:58.657Z" }, + { url = "https://files.pythonhosted.org/packages/0e/c6/d1fe8bdea4a6088bd54b5a58bc40aed89a4e784cd796af7722a06f74bae7/blake3-1.0.8-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:a25db3d36b55f5ed6a86470155cc749fc9c5b91c949b8d14f48658f9d960d9ec", size = 554211, upload-time = "2025-10-14T06:46:00.269Z" }, + { url = "https://files.pythonhosted.org/packages/55/d1/ca74aa450cbe10e396e061f26f7a043891ffa1485537d6b30d3757e20995/blake3-1.0.8-cp312-cp312-win32.whl", hash = "sha256:e0fee93d5adcd44378b008c147e84f181f23715307a64f7b3db432394bbfce8b", size = 228343, upload-time = "2025-10-14T06:46:01.533Z" }, + { url = "https://files.pythonhosted.org/packages/4d/42/bbd02647169e3fbed27558555653ac2578c6f17ccacf7d1956c58ef1d214/blake3-1.0.8-cp312-cp312-win_amd64.whl", hash = "sha256:6a6eafc29e4f478d365a87d2f25782a521870c8514bb43734ac85ae9be71caf7", size = 215704, upload-time = "2025-10-14T06:46:02.79Z" }, + { url = "https://files.pythonhosted.org/packages/55/b8/11de9528c257f7f1633f957ccaff253b706838d22c5d2908e4735798ec01/blake3-1.0.8-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:46dc20976bd6c235959ef0246ec73420d1063c3da2839a9c87ca395cf1fd7943", size = 347771, upload-time = "2025-10-14T06:46:04.248Z" }, + { url = "https://files.pythonhosted.org/packages/50/26/f7668be55c909678b001ecacff11ad7016cd9b4e9c7cc87b5971d638c5a9/blake3-1.0.8-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d17eb6382634b3a5bc0c0e0454d5265b0becaeeadb6801ed25150b39a999d0cc", size = 325431, upload-time = "2025-10-14T06:46:06.136Z" }, + { url = "https://files.pythonhosted.org/packages/77/57/e8a85fa261894bf7ce7af928ff3408aab60287ab8d58b55d13a3f700b619/blake3-1.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19fc6f2b7edab8acff6895fc6e38c19bd79f4c089e21153020c75dfc7397d52d", size = 370994, upload-time = "2025-10-14T06:46:07.398Z" }, + { url = "https://files.pythonhosted.org/packages/62/cd/765b76bb48b8b294fea94c9008b0d82b4cfa0fa2f3c6008d840d01a597e4/blake3-1.0.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4f54cff7f15d91dc78a63a2dd02a3dccdc932946f271e2adb4130e0b4cf608ba", size = 374372, upload-time = "2025-10-14T06:46:08.698Z" }, + { url = "https://files.pythonhosted.org/packages/36/7a/32084eadbb28592bb07298f0de316d2da586c62f31500a6b1339a7e7b29b/blake3-1.0.8-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7e12a777f6b798eb8d06f875d6e108e3008bd658d274d8c676dcf98e0f10537", size = 447627, upload-time = "2025-10-14T06:46:10.002Z" }, + { url = "https://files.pythonhosted.org/packages/a7/f4/3788a1d86e17425eea147e28d7195d7053565fc279236a9fd278c2ec495e/blake3-1.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddfc59b0176fb31168f08d5dd536e69b1f4f13b5a0f4b0c3be1003efd47f9308", size = 507536, upload-time = "2025-10-14T06:46:11.614Z" }, + { url = "https://files.pythonhosted.org/packages/fe/01/4639cba48513b94192681b4da472cdec843d3001c5344d7051ee5eaef606/blake3-1.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a2336d5b2a801a7256da21150348f41610a6c21dae885a3acb1ebbd7333d88d8", size = 394105, upload-time = "2025-10-14T06:46:12.808Z" }, + { url = "https://files.pythonhosted.org/packages/21/ae/6e55c19c8460fada86cd1306a390a09b0c5a2e2e424f9317d2edacea439f/blake3-1.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e4072196547484c95a5a09adbb952e9bb501949f03f9e2a85e7249ef85faaba8", size = 386928, upload-time = "2025-10-14T06:46:16.284Z" }, + { url = "https://files.pythonhosted.org/packages/ee/6c/05b7a5a907df1be53a8f19e7828986fc6b608a44119641ef9c0804fbef15/blake3-1.0.8-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:0eab3318ec02f8e16fe549244791ace2ada2c259332f0c77ab22cf94dfff7130", size = 550003, upload-time = "2025-10-14T06:46:17.791Z" }, + { url = "https://files.pythonhosted.org/packages/b4/03/f0ea4adfedc1717623be6460b3710fcb725ca38082c14274369803f727e1/blake3-1.0.8-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:a33b9a1fb6d1d559a8e0d04b041e99419a6bb771311c774f6ff57ed7119c70ed", size = 553857, upload-time = "2025-10-14T06:46:19.088Z" }, + { url = "https://files.pythonhosted.org/packages/cc/6f/e5410d2e2a30c8aba8389ffc1c0061356916bf5ecd0a210344e7b69b62ab/blake3-1.0.8-cp313-cp313-win32.whl", hash = "sha256:e171b169cb7ea618e362a4dddb7a4d4c173bbc08b9ba41ea3086dd1265530d4f", size = 228315, upload-time = "2025-10-14T06:46:20.391Z" }, + { url = "https://files.pythonhosted.org/packages/79/ef/d9c297956dfecd893f29f59e7b22445aba5b47b7f6815d9ba5dcd73fcae6/blake3-1.0.8-cp313-cp313-win_amd64.whl", hash = "sha256:3168c457255b5d2a2fc356ba696996fcaff5d38284f968210d54376312107662", size = 215477, upload-time = "2025-10-14T06:46:21.542Z" }, + { url = "https://files.pythonhosted.org/packages/20/ba/eaa7723d66dd8ab762a3e85e139bb9c46167b751df6e950ad287adb8fb61/blake3-1.0.8-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:b4d672c24dc15ec617d212a338a4ca14b449829b6072d09c96c63b6e6b621aed", size = 347289, upload-time = "2025-10-14T06:46:22.772Z" }, + { url = "https://files.pythonhosted.org/packages/47/b3/6957f6ee27f0d5b8c4efdfda68a1298926a88c099f4dd89c711049d16526/blake3-1.0.8-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:1af0e5a29aa56d4fba904452ae784740997440afd477a15e583c38338e641f41", size = 324444, upload-time = "2025-10-14T06:46:24.729Z" }, + { url = "https://files.pythonhosted.org/packages/13/da/722cebca11238f3b24d3cefd2361c9c9ea47cfa0ad9288eeb4d1e0b7cf93/blake3-1.0.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ef153c5860d5bf1cc71aece69b28097d2a392913eb323d6b52555c875d0439fc", size = 370441, upload-time = "2025-10-14T06:46:26.29Z" }, + { url = "https://files.pythonhosted.org/packages/2e/d5/2f7440c8e41c0af995bad3a159e042af0f4ed1994710af5b4766ca918f65/blake3-1.0.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:e8ae3689f0c7bfa6ce6ae45cab110e4c3442125c4c23b28f1f097856de26e4d1", size = 374312, upload-time = "2025-10-14T06:46:27.451Z" }, + { url = "https://files.pythonhosted.org/packages/a6/6c/fb6a7812e60ce3e110bcbbb11f167caf3e975c589572c41e1271f35f2c41/blake3-1.0.8-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3fb83532f7456ddeb68dae1b36e1f7c52f9cb72852ac01159bbcb1a12b0f8be0", size = 447007, upload-time = "2025-10-14T06:46:29.056Z" }, + { url = "https://files.pythonhosted.org/packages/13/3b/c99b43fae5047276ea9d944077c190fc1e5f22f57528b9794e21f7adedc6/blake3-1.0.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6ae7754c7d96e92a70a52e07c732d594cf9924d780f49fffd3a1e9235e0f5ba7", size = 507323, upload-time = "2025-10-14T06:46:30.661Z" }, + { url = "https://files.pythonhosted.org/packages/fc/bb/ba90eddd592f8c074a0694cb0a744b6bd76bfe67a14c2b490c8bdfca3119/blake3-1.0.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4bacaae75e98dee3b7da6c5ee3b81ee21a3352dd2477d6f1d1dbfd38cdbf158a", size = 393449, upload-time = "2025-10-14T06:46:31.805Z" }, + { url = "https://files.pythonhosted.org/packages/25/ed/58a2acd0b9e14459cdaef4344db414d4a36e329b9720921b442a454dd443/blake3-1.0.8-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9456c829601d72852d8ba0af8dae0610f7def1d59f5942efde1e2ef93e8a8b57", size = 386844, upload-time = "2025-10-14T06:46:33.195Z" }, + { url = "https://files.pythonhosted.org/packages/4a/04/fed09845b18d90862100c8e48308261e2f663aab25d3c71a6a0bdda6618b/blake3-1.0.8-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:497ef8096ec4ac1ffba9a66152cee3992337cebf8ea434331d8fd9ce5423d227", size = 549550, upload-time = "2025-10-14T06:46:35.23Z" }, + { url = "https://files.pythonhosted.org/packages/d6/65/1859fddfabc1cc72548c2269d988819aad96d854e25eae00531517925901/blake3-1.0.8-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:511133bab85ff60ed143424ce484d08c60894ff7323f685d7a6095f43f0c85c3", size = 553805, upload-time = "2025-10-14T06:46:36.532Z" }, + { url = "https://files.pythonhosted.org/packages/c1/c7/2969352017f62378e388bb07bb2191bc9a953f818dc1cd6b9dd5c24916e1/blake3-1.0.8-cp313-cp313t-win32.whl", hash = "sha256:9c9fbdacfdeb68f7ca53bb5a7a5a593ec996eaf21155ad5b08d35e6f97e60877", size = 228068, upload-time = "2025-10-14T06:46:37.826Z" }, + { url = "https://files.pythonhosted.org/packages/d8/fc/923e25ac9cadfff1cd20038bcc0854d0f98061eb6bc78e42c43615f5982d/blake3-1.0.8-cp313-cp313t-win_amd64.whl", hash = "sha256:3cec94ed5676821cf371e9c9d25a41b4f3ebdb5724719b31b2749653b7cc1dfa", size = 215369, upload-time = "2025-10-14T06:46:39.054Z" }, + { url = "https://files.pythonhosted.org/packages/2e/2a/9f13ea01b03b1b4751a1cc2b6c1ef4b782e19433a59cf35b59cafb2a2696/blake3-1.0.8-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:2c33dac2c6112bc23f961a7ca305c7e34702c8177040eb98d0389d13a347b9e1", size = 347016, upload-time = "2025-10-14T06:46:40.318Z" }, + { url = "https://files.pythonhosted.org/packages/06/8e/8458c4285fbc5de76414f243e4e0fcab795d71a8b75324e14959aee699da/blake3-1.0.8-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:c445eff665d21c3b3b44f864f849a2225b1164c08654beb23224a02f087b7ff1", size = 324496, upload-time = "2025-10-14T06:46:42.355Z" }, + { url = "https://files.pythonhosted.org/packages/49/fa/b913eb9cc4af708c03e01e6b88a8bb3a74833ba4ae4b16b87e2829198e06/blake3-1.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a47939f04b89c5c6ff1e51e883e5efab1ea1bf01a02f4d208d216dddd63d0dd8", size = 370654, upload-time = "2025-10-14T06:46:43.907Z" }, + { url = "https://files.pythonhosted.org/packages/7f/4f/245e0800c33b99c8f2b570d9a7199b51803694913ee4897f339648502933/blake3-1.0.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:73e0b4fa25f6e3078526a592fb38fca85ef204fd02eced6731e1cdd9396552d4", size = 374693, upload-time = "2025-10-14T06:46:45.186Z" }, + { url = "https://files.pythonhosted.org/packages/a2/a6/8cb182c8e482071dbdfcc6ec0048271fd48bcb78782d346119ff54993700/blake3-1.0.8-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4b0543c57eb9d6dac9d4bced63e9f7f7b546886ac04cec8da3c3d9c8f30cbbb7", size = 447673, upload-time = "2025-10-14T06:46:46.358Z" }, + { url = "https://files.pythonhosted.org/packages/06/b7/1cbbb5574d2a9436d1b15e7eb5b9d82e178adcaca71a97b0fddaca4bfe3a/blake3-1.0.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ed972ebd553c0c25363459e9fc71a38c045d8419e365b59acd8cd791eff13981", size = 507233, upload-time = "2025-10-14T06:46:48.109Z" }, + { url = "https://files.pythonhosted.org/packages/9c/45/b55825d90af353b3e26c653bab278da9d6563afcf66736677f9397e465be/blake3-1.0.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3bafdec95dfffa3f6571e529644744e280337df15ddd9728f224ba70c5779b23", size = 393852, upload-time = "2025-10-14T06:46:49.511Z" }, + { url = "https://files.pythonhosted.org/packages/34/73/9058a1a457dd20491d1b37de53d6876eff125e1520d9b2dd7d0acbc88de2/blake3-1.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d78f06f3fb838b34c330e2987090376145cbe5944d8608a0c4779c779618f7b", size = 386442, upload-time = "2025-10-14T06:46:51.205Z" }, + { url = "https://files.pythonhosted.org/packages/30/6d/561d537ffc17985e276e08bf4513f1c106f1fdbef571e782604dc4e44070/blake3-1.0.8-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:dd03ff08d1b6e4fdda1cd03826f971ae8966ef6f683a8c68aa27fb21904b5aa9", size = 549929, upload-time = "2025-10-14T06:46:52.494Z" }, + { url = "https://files.pythonhosted.org/packages/03/2f/dbe20d2c57f1a67c63be4ba310bcebc707b945c902a0bde075d2a8f5cd5c/blake3-1.0.8-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:4e02a3c499e35bf51fc15b2738aca1a76410804c877bcd914752cac4f71f052a", size = 553750, upload-time = "2025-10-14T06:46:54.194Z" }, + { url = "https://files.pythonhosted.org/packages/6b/da/c6cb712663c869b2814870c2798e57289c4268c5ac5fb12d467fce244860/blake3-1.0.8-cp314-cp314-win32.whl", hash = "sha256:a585357d5d8774aad9ffc12435de457f9e35cde55e0dc8bc43ab590a6929e59f", size = 228404, upload-time = "2025-10-14T06:46:56.807Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b6/c7dcd8bc3094bba1c4274e432f9e77a7df703532ca000eaa550bd066b870/blake3-1.0.8-cp314-cp314-win_amd64.whl", hash = "sha256:9ab5998e2abd9754819753bc2f1cf3edf82d95402bff46aeef45ed392a5468bf", size = 215460, upload-time = "2025-10-14T06:46:58.15Z" }, + { url = "https://files.pythonhosted.org/packages/75/3c/6c8afd856c353176836daa5cc33a7989e8f54569e9d53eb1c53fc8f80c34/blake3-1.0.8-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:e2df12f295f95a804338bd300e8fad4a6f54fd49bd4d9c5893855a230b5188a8", size = 347482, upload-time = "2025-10-14T06:47:00.189Z" }, + { url = "https://files.pythonhosted.org/packages/6a/35/92cd5501ce8e1f5cabdc0c3ac62d69fdb13ff0b60b62abbb2b6d0a53a790/blake3-1.0.8-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:63379be58438878eeb76ebe4f0efbeaabf42b79f2cff23b6126b7991588ced67", size = 324376, upload-time = "2025-10-14T06:47:01.413Z" }, + { url = "https://files.pythonhosted.org/packages/11/33/503b37220a3e2e31917ef13722efd00055af51c5e88ae30974c733d7ece6/blake3-1.0.8-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88d527c247f9609dc1d45a08fd243e39f0d5300d54c57e048de24d4fa9240ebb", size = 370220, upload-time = "2025-10-14T06:47:02.573Z" }, + { url = "https://files.pythonhosted.org/packages/3e/df/fe817843adf59516c04d44387bd643b422a3b0400ea95c6ede6a49920737/blake3-1.0.8-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:506a47897a11ebe8f3cdeb52f1365d6a2f83959e98ccb0c830f8f73277d4d358", size = 373454, upload-time = "2025-10-14T06:47:03.784Z" }, + { url = "https://files.pythonhosted.org/packages/d1/4d/90a2a623575373dfc9b683f1bad1bf017feafa5a6d65d94fb09543050740/blake3-1.0.8-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5122a61b3b004bbbd979bdf83a3aaab432da3e2a842d7ddf1c273f2503b4884", size = 447102, upload-time = "2025-10-14T06:47:04.958Z" }, + { url = "https://files.pythonhosted.org/packages/93/ff/4e8ce314f60115c4c657b1fdbe9225b991da4f5bcc5d1c1f1d151e2f39d6/blake3-1.0.8-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0171e85d56dec1219abdae5f49a0ed12cb3f86a454c29160a64fd8a8166bba37", size = 506791, upload-time = "2025-10-14T06:47:06.82Z" }, + { url = "https://files.pythonhosted.org/packages/44/88/2963a1f18aab52bdcf35379b2b48c34bbc462320c37e76960636b8602c36/blake3-1.0.8-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:003f61e8c41dd9931edddf1cc6a1bb680fb2ac0ad15493ef4a1df9adc59ce9df", size = 393717, upload-time = "2025-10-14T06:47:09.085Z" }, + { url = "https://files.pythonhosted.org/packages/45/d1/a848ed8e8d4e236b9b16381768c9ae99d92890c24886bb4505aa9c3d2033/blake3-1.0.8-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2c3151955efb09ba58cd3e1263521e15e9e3866a40d6bd3556d86fc968e8f95", size = 386150, upload-time = "2025-10-14T06:47:10.363Z" }, + { url = "https://files.pythonhosted.org/packages/96/09/e3eb5d60f97c01de23d9f434e6e1fc117efb466eaa1f6ddbbbcb62580d6e/blake3-1.0.8-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:5eb25bca3cee2e0dd746a214784fb36be6a43640c01c55b6b4e26196e72d076c", size = 549120, upload-time = "2025-10-14T06:47:11.713Z" }, + { url = "https://files.pythonhosted.org/packages/14/ad/3d9661c710febb8957dd685fdb3e5a861aa0ac918eda3031365ce45789e2/blake3-1.0.8-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:ab4e1dea4fa857944944db78e8f20d99ee2e16b2dea5a14f514fb0607753ac83", size = 553264, upload-time = "2025-10-14T06:47:13.317Z" }, + { url = "https://files.pythonhosted.org/packages/11/55/e332a5b49edf377d0690e95951cca21a00c568f6e37315f9749efee52617/blake3-1.0.8-cp314-cp314t-win32.whl", hash = "sha256:67f1bc11bf59464ef092488c707b13dd4e872db36e25c453dfb6e0c7498df9f1", size = 228116, upload-time = "2025-10-14T06:47:14.516Z" }, + { url = "https://files.pythonhosted.org/packages/b0/5c/dbd00727a3dd165d7e0e8af40e630cd7e45d77b525a3218afaff8a87358e/blake3-1.0.8-cp314-cp314t-win_amd64.whl", hash = "sha256:421b99cdf1ff2d1bf703bc56c454f4b286fce68454dd8711abbcb5a0df90c19a", size = 215133, upload-time = "2025-10-14T06:47:16.069Z" }, +] + [[package]] name = "bleach" version = "6.3.0" @@ -639,8 +809,8 @@ name = "blis" version = "1.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d0/d0/d8cc8c9a4488a787e7fa430f6055e5bd1ddb22c340a751d9e901b82e2efe/blis-1.3.3.tar.gz", hash = "sha256:034d4560ff3cc43e8aa37e188451b0440e3261d989bb8a42ceee865607715ecd", size = 2644873, upload-time = "2025-11-17T12:28:30.511Z" } wheels = [ @@ -686,10 +856,10 @@ name = "bm25s" version = "0.2.14" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/99/72/5ad06c30991ba494242785a3ab8987deb01c07dfc1c492847bde221e62bf/bm25s-0.2.14.tar.gz", hash = "sha256:7b6717770fffbdb3b962e5fe8ef1e6eac7f285d0fbc14484b321e136df837139", size = 59266, upload-time = "2025-09-08T17:06:30.728Z" } wheels = [ @@ -787,6 +957,50 @@ version = "1.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/9b/99/01c6a987c920500189eb74a291bd3a388e6c7cf85736bb6b066d9833315e/cbor-1.0.0.tar.gz", hash = "sha256:13225a262ddf5615cbd9fd55a76a0d53069d18b07d2e9f19c39e6acb8609bbb6", size = 20096, upload-time = "2016-02-09T23:11:12.726Z" } +[[package]] +name = "cbor2" +version = "5.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/d9/8e/8b4fdde28e42ffcd741a37f4ffa9fb59cd4fe01625b544dfcfd9ccb54f01/cbor2-5.8.0.tar.gz", hash = "sha256:b19c35fcae9688ac01ef75bad5db27300c2537eb4ee00ed07e05d8456a0d4931", size = 107825, upload-time = "2025-12-30T18:44:22.455Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3c/05/486166d9e998d65d70810e63eeacc8c5f13d167d8797cf2d73a588beb335/cbor2-5.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2263c0c892194f10012ced24c322d025d9d7b11b41da1c357f3b3fe06676e6b7", size = 69882, upload-time = "2025-12-30T18:43:25.365Z" }, + { url = "https://files.pythonhosted.org/packages/4e/d0/ee976eaaf21c211eef651e1a921c109c3c3a3785d98307d74a70d142f341/cbor2-5.8.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6ffe4ca079f6f8ed393f5c71a8de22651cb27bd50e74e2bcd6bc9c8f853a732b", size = 260696, upload-time = "2025-12-30T18:43:27.784Z" }, + { url = "https://files.pythonhosted.org/packages/66/7f/81cabd3aee6cc54b101a5214d5c3e541d275d7c05647c7dfc266c6aacf6f/cbor2-5.8.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0427bd166230fe4c4b72965c6f2b6273bf29016d97cf08b258fa48db851ea598", size = 252135, upload-time = "2025-12-30T18:43:29.418Z" }, + { url = "https://files.pythonhosted.org/packages/c2/0b/f38e8c579e7e2d88d446549bce35bde7d845199300bc456b4123d6e6f0af/cbor2-5.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c23a04947c37964d70028ca44ea2a8709f09b8adc0090f9b5710fa957e9bc545", size = 255342, upload-time = "2025-12-30T18:43:30.966Z" }, + { url = "https://files.pythonhosted.org/packages/5d/02/8413f1bd42c8f665fb85374151599cb4957848f0f307d08334a08dee544c/cbor2-5.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:218d5c7d2e8d13c7eded01a1b3fe2a9a1e51a7a843cefb8d38cb4bbbc6ad9bf7", size = 247191, upload-time = "2025-12-30T18:43:32.555Z" }, + { url = "https://files.pythonhosted.org/packages/e5/b8/edeffcad06b83d3661827973a8e6f5d51a9f5842e1ee9d191fdef60388ad/cbor2-5.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:4ce7d907a25448af7c13415281d739634edfd417228b274309b243ca52ad71f9", size = 69254, upload-time = "2025-12-30T18:43:33.717Z" }, + { url = "https://files.pythonhosted.org/packages/ce/1a/dde6537d8d1c2b3157ea6487ea417a5ad0157687d0e9a3ff806bf23c8cb1/cbor2-5.8.0-cp310-cp310-win_arm64.whl", hash = "sha256:628d0ea850aa040921a0e50a08180e7d20cf691432cec3eabc193f643eccfbde", size = 64946, upload-time = "2025-12-30T18:43:34.849Z" }, + { url = "https://files.pythonhosted.org/packages/88/4b/623435ef9b98e86b6956a41863d39ff4fe4d67983948b5834f55499681dd/cbor2-5.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:18ac191640093e6c7fbcb174c006ffec4106c3d8ab788e70272c1c4d933cbe11", size = 69875, upload-time = "2025-12-30T18:43:35.888Z" }, + { url = "https://files.pythonhosted.org/packages/58/17/f664201080b2a7d0f57c16c8e9e5922013b92f202e294863ec7e75b7ff7f/cbor2-5.8.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:fddee9103a17d7bed5753f0c7fc6663faa506eb953e50d8287804eccf7b048e6", size = 268316, upload-time = "2025-12-30T18:43:37.161Z" }, + { url = "https://files.pythonhosted.org/packages/d0/e1/072745b4ff01afe9df2cd627f8fc51a1acedb5d3d1253765625d2929db91/cbor2-5.8.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:8d2ea26fad620aba5e88d7541be8b10c5034a55db9a23809b7cb49f36803f05b", size = 258874, upload-time = "2025-12-30T18:43:38.878Z" }, + { url = "https://files.pythonhosted.org/packages/a7/10/61c262b886d22b62c56e8aac6d10fa06d0953c997879ab882a31a624952b/cbor2-5.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:de68b4b310b072b082d317adc4c5e6910173a6d9455412e6183d72c778d1f54c", size = 261971, upload-time = "2025-12-30T18:43:40.401Z" }, + { url = "https://files.pythonhosted.org/packages/7e/42/b7862f5e64364b10ad120ea53e87ec7e891fb268cb99c572348e647cf7e9/cbor2-5.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:418d2cf0e03e90160fa1474c05a40fe228bbb4a92d1628bdbbd13a48527cb34d", size = 254151, upload-time = "2025-12-30T18:43:41.938Z" }, + { url = "https://files.pythonhosted.org/packages/16/6a/8d3636cf75466c18615e7cfac0d345ee3c030f6c79535faed0c2c02b1839/cbor2-5.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:453200ffa1c285ea46ab5745736a015526d41f22da09cb45594624581d959770", size = 69169, upload-time = "2025-12-30T18:43:43.424Z" }, + { url = "https://files.pythonhosted.org/packages/9b/88/79b205bf869558b39a11de70750cb13679b27ba5654a43bed3f2aee7d1b4/cbor2-5.8.0-cp311-cp311-win_arm64.whl", hash = "sha256:f6615412fca973a8b472b3efc4dab01df71cc13f15d8b2c0a1cffac44500f12d", size = 64955, upload-time = "2025-12-30T18:43:44.7Z" }, + { url = "https://files.pythonhosted.org/packages/2f/4f/3a16e3e8fd7e5fd86751a4f1aad218a8d19a96e75ec3989c3e95a8fe1d8f/cbor2-5.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4b3f91fa699a5ce22470e973601c62dd9d55dc3ca20ee446516ac075fcab27c9", size = 70270, upload-time = "2025-12-30T18:43:46.005Z" }, + { url = "https://files.pythonhosted.org/packages/38/81/0d0cf0796fe8081492a61c45278f03def21a929535a492dd97c8438f5dbe/cbor2-5.8.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:518c118a5e00001854adb51f3164e647aa99b6a9877d2a733a28cb5c0a4d6857", size = 286242, upload-time = "2025-12-30T18:43:47.026Z" }, + { url = "https://files.pythonhosted.org/packages/7b/a9/fdab6c10190cfb8d639e01f2b168f2406fc847a2a6bc00e7de78c3381d0a/cbor2-5.8.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cff2a1999e49cd51c23d1b6786a012127fd8f722c5946e82bd7ab3eb307443f3", size = 285412, upload-time = "2025-12-30T18:43:48.563Z" }, + { url = "https://files.pythonhosted.org/packages/31/59/746a8e630996217a3afd523f583fcf7e3d16640d63f9a03f0f4e4f74b5b1/cbor2-5.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4c4492160212374973cdc14e46f0565f2462721ef922b40f7ea11e7d613dfb2a", size = 278041, upload-time = "2025-12-30T18:43:49.92Z" }, + { url = "https://files.pythonhosted.org/packages/0f/a3/f3bbeb6dedd45c6e0cddd627ea790dea295eaf82c83f0e2159b733365ebd/cbor2-5.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:546c7c7c4c6bcdc54a59242e0e82cea8f332b17b4465ae628718fef1fce401ca", size = 278185, upload-time = "2025-12-30T18:43:51.192Z" }, + { url = "https://files.pythonhosted.org/packages/67/e5/9013d6b857ceb6cdb2851ffb5a887f53f2bab934a528c9d6fa73d9989d84/cbor2-5.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:074f0fa7535dd7fdee247c2c99f679d94f3aa058ccb1ccf4126cc72d6d89cbae", size = 69817, upload-time = "2025-12-30T18:43:52.352Z" }, + { url = "https://files.pythonhosted.org/packages/a8/ab/7aa94ba3d44ecbc3a97bdb2fb6a8298063fe2e0b611e539a6fe41e36da20/cbor2-5.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:f95fed480b2a0d843f294d2a1ef4cc0f6a83c7922927f9f558e1f5a8dc54b7ca", size = 64923, upload-time = "2025-12-30T18:43:53.719Z" }, + { url = "https://files.pythonhosted.org/packages/a6/0d/5a3f20bafaefeb2c1903d961416f051c0950f0d09e7297a3aa6941596b29/cbor2-5.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6d8d104480845e2f28c6165b4c961bbe58d08cb5638f368375cfcae051c28015", size = 70332, upload-time = "2025-12-30T18:43:54.694Z" }, + { url = "https://files.pythonhosted.org/packages/57/66/177a3f089e69db69c987453ab4934086408c3338551e4984734597be9f80/cbor2-5.8.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:43efee947e5ab67d406d6e0dc61b5dee9d2f5e89ae176f90677a3741a20ca2e7", size = 285985, upload-time = "2025-12-30T18:43:55.733Z" }, + { url = "https://files.pythonhosted.org/packages/b7/8e/9e17b8e4ed80a2ce97e2dfa5915c169dbb31599409ddb830f514b57f96cc/cbor2-5.8.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:be7ae582f50be539e09c134966d0fd63723fc4789b8dff1f6c2e3f24ae3eaf32", size = 285173, upload-time = "2025-12-30T18:43:57.321Z" }, + { url = "https://files.pythonhosted.org/packages/cc/33/9f92e107d78f88ac22723ac15d0259d220ba98c1d855e51796317f4c4114/cbor2-5.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:50f5c709561a71ea7970b4cd2bf9eda4eccacc0aac212577080fdfe64183e7f5", size = 278395, upload-time = "2025-12-30T18:43:58.497Z" }, + { url = "https://files.pythonhosted.org/packages/2f/3f/46b80050a4a35ce5cf7903693864a9fdea7213567dc8faa6e25cb375c182/cbor2-5.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a6790ecc73aa93e76d2d9076fc42bf91a9e69f2295e5fa702e776dbe986465bd", size = 278330, upload-time = "2025-12-30T18:43:59.656Z" }, + { url = "https://files.pythonhosted.org/packages/eb/d2/d41f8c04c783a4d204e364be2d38043d4f732a3bed6f4c732e321cf34c7b/cbor2-5.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:c114af8099fa65a19a514db87ce7a06e942d8fea2730afd49be39f8e16e7f5e0", size = 69841, upload-time = "2025-12-30T18:44:01.159Z" }, + { url = "https://files.pythonhosted.org/packages/1b/8c/0397a82f6e67665009951453c83058e4c77ba54b9a9017ede56d6870306c/cbor2-5.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:ab3ba00494ad8669a459b12a558448d309c271fa4f89b116ad496ee35db38fea", size = 64982, upload-time = "2025-12-30T18:44:02.138Z" }, + { url = "https://files.pythonhosted.org/packages/4b/0c/0654233d7543ac8a50f4785f172430ddc97538ba418eb305d6e529d1a120/cbor2-5.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:ad72381477133046ce217617d839ea4e9454f8b77d9a6351b229e214102daeb7", size = 70710, upload-time = "2025-12-30T18:44:03.209Z" }, + { url = "https://files.pythonhosted.org/packages/84/62/4671d24e557d7f5a74a01b422c538925140c0495e57decde7e566f91d029/cbor2-5.8.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6da25190fad3434ce99876b11d4ca6b8828df6ca232cf7344cd14ae1166fb718", size = 285005, upload-time = "2025-12-30T18:44:05.109Z" }, + { url = "https://files.pythonhosted.org/packages/87/85/0c67d763a08e848c9a80d7e4723ba497cce676f41bc7ca1828ae90a0a872/cbor2-5.8.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c13919e3a24c5a6d286551fa288848a4cedc3e507c58a722ccd134e461217d99", size = 282435, upload-time = "2025-12-30T18:44:06.465Z" }, + { url = "https://files.pythonhosted.org/packages/b2/01/0650972b4dbfbebcfbe37cbba7fc3cd9019a8da6397ab3446e07175e342b/cbor2-5.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f8c40d32e5972047a777f9bf730870828f3cf1c43b3eb96fd0429c57a1d3b9e6", size = 277493, upload-time = "2025-12-30T18:44:07.609Z" }, + { url = "https://files.pythonhosted.org/packages/b3/6c/7704a4f32adc7f10f3b41ec067f500a4458f7606397af5e4cf2d368fd288/cbor2-5.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7627894bc0b3d5d0807f31e3107e11b996205470c4429dc2bb4ef8bfe7f64e1e", size = 276085, upload-time = "2025-12-30T18:44:09.021Z" }, + { url = "https://files.pythonhosted.org/packages/88/6d/e43452347630efe8133f5304127539100d937c138c0996d27ec63963ec2c/cbor2-5.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:b51c5e59becae746ca4de2bbaa8a2f5c64a68fec05cea62941b1a84a8335f7d1", size = 71657, upload-time = "2025-12-30T18:44:10.162Z" }, + { url = "https://files.pythonhosted.org/packages/8b/66/9a780ef34ab10a0437666232e885378cdd5f60197b1b5e61a62499e5a10a/cbor2-5.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:53b630f4db4b9f477ad84077283dd17ecf9894738aa17ef4938c369958e02a71", size = 67171, upload-time = "2025-12-30T18:44:11.619Z" }, + { url = "https://files.pythonhosted.org/packages/d6/4f/101071f880b4da05771128c0b89f41e334cff044dee05fb013c8f4be661c/cbor2-5.8.0-py3-none-any.whl", hash = "sha256:3727d80f539567b03a7aa11890e57798c67092c38df9e6c23abb059e0f65069c", size = 24374, upload-time = "2025-12-30T18:44:21.476Z" }, +] + [[package]] name = "certifi" version = "2025.11.12" @@ -801,7 +1015,7 @@ name = "cffi" version = "2.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "pycparser", marker = "implementation_name != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/eb/56/b1ba7935a17738ae8453301356628e8147c79dbb825bcbc73dc7401f9846/cffi-2.0.0.tar.gz", hash = "sha256:44d1b5909021139fe36001ae048dbdde8214afa20200eda0f64c068cac5d5529", size = 523588, upload-time = "2025-09-08T23:24:04.541Z" } wheels = [ @@ -981,7 +1195,7 @@ name = "click" version = "8.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3d/fa/656b739db8587d7b5dfa22e22ed02566950fbfbcdc20311993483657a5c0/click-8.3.1.tar.gz", hash = "sha256:12ff4785d337a1bb490bb7e9c2b1ee5da3112e94a8622f26a6c77f5d2fc6842a", size = 295065, upload-time = "2025-11-15T20:45:42.706Z" } wheels = [ @@ -1000,6 +1214,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ae/8a/c4bb04426d608be4a3171efa2e233d2c59a5c8937850c10d098e126df18e/cloudpathlib-0.23.0-py3-none-any.whl", hash = "sha256:8520b3b01468fee77de37ab5d50b1b524ea6b4a8731c35d1b7407ac0cd716002", size = 62755, upload-time = "2025-10-07T22:47:54.905Z" }, ] +[[package]] +name = "cloudpickle" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/27/fb/576f067976d320f5f0114a8d9fa1215425441bb35627b1993e5afd8111e5/cloudpickle-3.1.2.tar.gz", hash = "sha256:7fda9eb655c9c230dab534f1983763de5835249750e85fbcef43aaa30a9a2414", size = 22330, upload-time = "2025-11-03T09:25:26.604Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/88/39/799be3f2f0f38cc727ee3b4f1445fe6d5e4133064ec2e4115069418a5bb6/cloudpickle-3.1.2-py3-none-any.whl", hash = "sha256:9acb47f6afd73f60dc1df93bb801b472f05ff42fa6c84167d25cb206be1fbf4a", size = 22228, upload-time = "2025-11-03T09:25:25.534Z" }, +] + [[package]] name = "codecarbon" version = "2.8.4" @@ -1035,9 +1258,9 @@ dependencies = [ { name = "pydantic" }, { name = "pydantic-core" }, { name = "requests" }, - { name = "tokenizers", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec')" }, + { name = "tokenizers", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec')" }, { name = "types-requests" }, { name = "typing-extensions" }, ] @@ -1060,13 +1283,13 @@ name = "colpali-engine" version = "0.3.13" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "peft", version = "0.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, { name = "pillow", marker = "python_full_version < '3.14'" }, { name = "requests", marker = "python_full_version < '3.14'" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, @@ -1076,6 +1299,21 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/04/93/e9afe4ef301c762a619ef5d66e345bec253fe2e2c230ff8b7d572f6351ee/colpali_engine-0.3.13-py3-none-any.whl", hash = "sha256:4f6225a4368cd17716fa8c2e0f20024490c745a1d5f84afab7e4d71790f48002", size = 88557, upload-time = "2025-11-15T18:37:48.922Z" }, ] +[[package]] +name = "compressed-tensors" +version = "0.12.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "loguru" }, + { name = "pydantic" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" } }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" } }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a2/79/4c5c1cd14266f8cf2650bdb940f986ce7fcaeb56aad8cfa9e9afedf14e2f/compressed_tensors-0.12.2.tar.gz", hash = "sha256:5bb40856dd17f128ab73557ecc73799f80db4dd82fab6de875f1e6899b9ea0c4", size = 190409, upload-time = "2025-10-07T14:30:59.302Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f0/c0/1695b87d369e6652ec0d650912e02eca2151c5e9c29244f94d2afccfe970/compressed_tensors-0.12.2-py3-none-any.whl", hash = "sha256:e554ea761710ca2b0c0ea49276a4ef8e08658624f1591e6a7368817106b48fbe", size = 183049, upload-time = "2025-10-07T14:30:56.523Z" }, +] + [[package]] name = "confection" version = "0.1.5" @@ -1100,33 +1338,35 @@ name = "contourpy" version = "1.3.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/66/54/eb9bfc647b19f2009dd5c7f5ec51c4e6ca831725f1aea7a993034f483147/contourpy-1.3.2.tar.gz", hash = "sha256:b6945942715a034c671b7fc54f9588126b0b8bf23db2696e3ca8328f3ff0ab54", size = 13466130, upload-time = "2025-04-15T17:47:53.79Z" } wheels = [ @@ -1193,105 +1433,114 @@ name = "contourpy" version = "1.3.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/58/01/1253e6698a07380cd31a736d248a3f2a50a7c88779a1813da27503cadc2a/contourpy-1.3.3.tar.gz", hash = "sha256:083e12155b210502d0bca491432bb04d56dc3432f95a979b429f2848c3dbe880", size = 13466174, upload-time = "2025-07-26T12:03:12.549Z" } wheels = [ @@ -1469,7 +1718,7 @@ wheels = [ [package.optional-dependencies] toml = [ - { name = "tomli", marker = "python_full_version <= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "tomli", marker = "python_full_version <= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] [[package]] @@ -1477,7 +1726,7 @@ name = "cryptography" version = "43.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "cffi", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "cffi", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0d/05/07b55d1fa21ac18c3a8c79f764e2514e6f6a9698f1be44994f5adf0d29db/cryptography-43.0.3.tar.gz", hash = "sha256:315b9001266a492a6ff443b61238f956b214dbec9910a081ba5b6646a055a805", size = 686989, upload-time = "2024-10-18T15:58:32.918Z" } wheels = [ @@ -1505,6 +1754,77 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/91/bb/cd2c13be3332e7af3cdf16154147952d39075b9f61ea5e6b5241bf4bf436/cryptography-43.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f18c716be16bc1fea8e95def49edf46b82fccaa88587a45f8dc0ff6ab5d8e0a7", size = 2988811, upload-time = "2024-10-18T15:58:19.674Z" }, ] +[[package]] +name = "cuda-bindings" +version = "13.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-pathfinder" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/60/63/579402b642f5b9b8ceb79e456b39b5771f27e132a8af3b140e54d69790fc/cuda_bindings-13.1.1-cp310-cp310-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4400370a83f1538e25ed4c18c34a0e9d5fad39741e282e69ce24d1479a11017d", size = 15777291, upload-time = "2025-12-09T22:05:41.109Z" }, + { url = "https://files.pythonhosted.org/packages/df/6a/3a293cfb01cd4964444a0f75917b6edb1c31ea69d0230e329975da6991ba/cuda_bindings-13.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:81f92500e2f6aec2dac00a5a1ce77d5aa77ea77b606dc484d951f1f2cc3eaa13", size = 16311623, upload-time = "2025-12-09T22:05:43.897Z" }, + { url = "https://files.pythonhosted.org/packages/72/b8/a5860b9e70faa53658236dc61efc3ecc51846beff4a0b73de9151130ff98/cuda_bindings-13.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:3f5bb8190267216f96597235252087accac4cbccefd1b60756cced114b2d6754", size = 15185932, upload-time = "2025-12-09T22:05:46.089Z" }, + { url = "https://files.pythonhosted.org/packages/b0/58/b8d4c7c5fb29ba46088a7e78d1065484219f8fe41a08adc4a85b1ee56149/cuda_bindings-13.1.1-cp311-cp311-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a5f5a6ade0ad45096568bc4dd1eb3377b65884d29124338fe9a4353130ef6631", size = 15771605, upload-time = "2025-12-09T22:05:48.266Z" }, + { url = "https://files.pythonhosted.org/packages/17/af/710403f76f2d608d483d87089465e1f666351641dbd73d19bd025e652bad/cuda_bindings-13.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9348f69b03b257f07159dd4c869615e139722c2bd81e96c66f6b8f77615efd82", size = 16338970, upload-time = "2025-12-09T22:05:50.598Z" }, + { url = "https://files.pythonhosted.org/packages/64/1c/e7ea27d4cb7d07331c88e3bbed3cacc947d2237471801086c7447b3e195d/cuda_bindings-13.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:ec33b84f4bd65a86a734427f2b9cb8f221bedab2c4cfb681488cabc82f1d64ab", size = 15210672, upload-time = "2025-12-09T22:05:53.369Z" }, + { url = "https://files.pythonhosted.org/packages/53/3d/c8ed9d169843091f3f0d6b8218e826fd59520a37e0434c204feada597988/cuda_bindings-13.1.1-cp312-cp312-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1e75ad0cb863330df784236d289612d71ca855c013d19ae00e5693574abd6915", size = 15530160, upload-time = "2025-12-09T22:05:55.386Z" }, + { url = "https://files.pythonhosted.org/packages/4a/8e/368295623ee43fba622909d780fbb6863efc1638dff55f67a0f04eac6470/cuda_bindings-13.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:25785d1a3cdcd98f151240fd5efd025609319a6720a217dee2a929241749d488", size = 16110386, upload-time = "2025-12-09T22:05:57.71Z" }, + { url = "https://files.pythonhosted.org/packages/60/1f/ecc4701ade3e85f091c625a920574527b9daf7fb354189fbfbc5516af6cd/cuda_bindings-13.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:ccde9c95c0e953b31fe7731bb08da9d0a34b1770498df9a3c156fdfdbe3951ad", size = 15250028, upload-time = "2025-12-09T22:06:00.346Z" }, + { url = "https://files.pythonhosted.org/packages/fe/c1/0ee8fd94bab7e23116e0e3da8c0902e299f3d9edc95f1d7d8ef894c897ed/cuda_bindings-13.1.1-cp313-cp313-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0c9822a57c8f952dc367aacd7c32fe4cb17371104383606f455ea74635bff4c7", size = 15421116, upload-time = "2025-12-09T22:06:02.994Z" }, + { url = "https://files.pythonhosted.org/packages/f3/c2/f272fad414b96299e010dcbe510cf17fc25deaf3443e0fdb55020a8298a3/cuda_bindings-13.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5837f5ea422c5653626dcfe22e9ab68142cd19af9e67a226100f224cc25a1b99", size = 15940152, upload-time = "2025-12-09T22:06:05.079Z" }, + { url = "https://files.pythonhosted.org/packages/2a/56/433093bec0121f031edb582ea3a72f71031e8fbebecaaf329809344da4c7/cuda_bindings-13.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:9e4f348cd7a779657d51e6f71aac3965fb1738f40ff3bbe75265a3242fd6f29f", size = 15216463, upload-time = "2025-12-09T22:06:07.296Z" }, + { url = "https://files.pythonhosted.org/packages/de/38/40416d037ed25db68f1dbd50e0232775a62d90c9f25af22b196c0a13b88c/cuda_bindings-13.1.1-cp314-cp314-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:86258fe1b0d3998bea7f57dc891569e4996705b8dd00366e44c722d0a29b2090", size = 15498927, upload-time = "2025-12-09T22:06:09.476Z" }, + { url = "https://files.pythonhosted.org/packages/ac/3f/f1f88b6cdb7d41ba076f8ff10edf6d3bd17e740da9a163544b43d6349653/cuda_bindings-13.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:daf8468fd603b2724c2d16cbd499348c64916ed72b1d04643f1660ce13cd12ae", size = 15984539, upload-time = "2025-12-09T22:06:11.882Z" }, + { url = "https://files.pythonhosted.org/packages/f6/33/7739cc5e9a3373df8e7dea9060528bee5f70cf6e28b9c14f765502816c71/cuda_bindings-13.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:f2e079182014dbc162562b46467815272c14c7afe5b988978fa968728b0ac726", size = 15373212, upload-time = "2025-12-09T22:06:13.989Z" }, + { url = "https://files.pythonhosted.org/packages/9e/0a/5c6d514e566ff86c4054bbbb6554bf49b9c55fefbc934eb456faecab53c9/cuda_bindings-13.1.1-cp314-cp314t-manylinux_2_24_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d0cd96a6ec00a78235947bff9462b2139bc5b83ce8e297d865802f0b52d1e23d", size = 15403944, upload-time = "2025-12-09T22:06:16.315Z" }, + { url = "https://files.pythonhosted.org/packages/0b/5b/319cfa491a685d4d4757aa24223b6dbc0976954afac42f49fc47290ba6a3/cuda_bindings-13.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9ff465829c6c394c2b4047250324a19925cf8c44633345b2746a4741e07bf827", size = 15911462, upload-time = "2025-12-09T22:06:18.403Z" }, + { url = "https://files.pythonhosted.org/packages/e3/5c/38b92080c5b6c4ddb09f0be2536123f81c7e9e1a89e4573f20cb00347ee3/cuda_bindings-13.1.1-cp314-cp314t-win_amd64.whl", hash = "sha256:8205eee6b8b458a2110c0384923ace206855d0f1b436fc1b145fcbaa1653b501", size = 16044390, upload-time = "2025-12-09T22:06:20.945Z" }, +] + +[[package]] +name = "cuda-pathfinder" +version = "1.3.3" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0b/02/4dbe7568a42e46582248942f54dc64ad094769532adbe21e525e4edf7bc4/cuda_pathfinder-1.3.3-py3-none-any.whl", hash = "sha256:9984b664e404f7c134954a771be8775dfd6180ea1e1aef4a5a37d4be05d9bbb1", size = 27154, upload-time = "2025-12-04T22:35:08.996Z" }, +] + +[[package]] +name = "cuda-python" +version = "13.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-bindings" }, + { name = "cuda-pathfinder" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/08/b5e3b9822662d72d540d830531e3ab6a7cabbda3dd56175696aabccfeb76/cuda_python-13.1.1-py3-none-any.whl", hash = "sha256:944cc4fe6482673d28dd545797a28840945a1668739328fa2ad1e9be4f7050d9", size = 8038, upload-time = "2025-12-09T22:13:10.719Z" }, +] + +[[package]] +name = "cupy-cuda12x" +version = "13.6.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastrlock" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/2e/db22c5148884e4e384f6ebbc7971fa3710f3ba67ca492798890a0fdebc45/cupy_cuda12x-13.6.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:9e37f60f27ff9625dfdccc4688a09852707ec613e32ea9404f425dd22a386d14", size = 126341714, upload-time = "2025-08-18T08:24:08.335Z" }, + { url = "https://files.pythonhosted.org/packages/53/2b/8064d94a6ab6b5c4e643d8535ab6af6cabe5455765540931f0ef60a0bc3b/cupy_cuda12x-13.6.0-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:e78409ea72f5ac7d6b6f3d33d99426a94005254fa57e10617f430f9fd7c3a0a1", size = 112238589, upload-time = "2025-08-18T08:24:15.541Z" }, + { url = "https://files.pythonhosted.org/packages/de/7b/bac3ca73e164d2b51c6298620261637c7286e06d373f597b036fc45f5563/cupy_cuda12x-13.6.0-cp310-cp310-win_amd64.whl", hash = "sha256:f33c9c975782ef7a42c79b6b4fb3d5b043498f9b947126d792592372b432d393", size = 89874119, upload-time = "2025-08-18T08:24:20.628Z" }, + { url = "https://files.pythonhosted.org/packages/54/64/71c6e08f76c06639e5112f69ee3bc1129be00054ad5f906d7fd3138af579/cupy_cuda12x-13.6.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:c790d012fd4d86872b9c89af9f5f15d91c30b8e3a4aa4dd04c2610f45f06ac44", size = 128016458, upload-time = "2025-08-18T08:24:26.394Z" }, + { url = "https://files.pythonhosted.org/packages/fc/d9/5c5077243cd92368c3eccecdbf91d76db15db338169042ffd1647533c6b1/cupy_cuda12x-13.6.0-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:77ba6745a130d880c962e687e4e146ebbb9014f290b0a80dbc4e4634eb5c3b48", size = 113039337, upload-time = "2025-08-18T08:24:31.814Z" }, + { url = "https://files.pythonhosted.org/packages/88/f5/02bea5cdf108e2a66f98e7d107b4c9a6709e5dbfedf663340e5c11719d83/cupy_cuda12x-13.6.0-cp311-cp311-win_amd64.whl", hash = "sha256:a20b7acdc583643a623c8d8e3efbe0db616fbcf5916e9c99eedf73859b6133af", size = 89885526, upload-time = "2025-08-18T08:24:37.258Z" }, + { url = "https://files.pythonhosted.org/packages/12/c5/7e7fc4816d0de0154e5d9053242c3a08a0ca8b43ee656a6f7b3b95055a7b/cupy_cuda12x-13.6.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:a6970ceefe40f9acbede41d7fe17416bd277b1bd2093adcde457b23b578c5a59", size = 127334633, upload-time = "2025-08-18T08:24:43.065Z" }, + { url = "https://files.pythonhosted.org/packages/e0/95/d7e1295141e7d530674a3cc567e13ed0eb6b81524cb122d797ed996b5bea/cupy_cuda12x-13.6.0-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:79b0cacb5e8b190ef409f9e03f06ac8de1b021b0c0dda47674d446f5557e0eb1", size = 112886268, upload-time = "2025-08-18T08:24:49.294Z" }, + { url = "https://files.pythonhosted.org/packages/ae/8c/14555b63fd78cfac7b88af0094cea0a3cb845d243661ec7da69f7b3ea0de/cupy_cuda12x-13.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:ca06fede7b8b83ca9ad80062544ef2e5bb8d4762d1c4fc3ac8349376de9c8a5e", size = 89785108, upload-time = "2025-08-18T08:24:54.527Z" }, + { url = "https://files.pythonhosted.org/packages/19/ec/f62cb991f11fb41291c4c15b6936d7b67ffa71ddb344ad6e8894e06ce58d/cupy_cuda12x-13.6.0-cp313-cp313-manylinux2014_aarch64.whl", hash = "sha256:e5426ae3b1b9cf59927481e457a89e3f0b50a35b114a8034ec9110e7a833434c", size = 126904601, upload-time = "2025-08-18T08:24:59.951Z" }, + { url = "https://files.pythonhosted.org/packages/f8/b8/30127bcdac53a25f94ee201bf4802fcd8d012145567d77c54174d6d01c01/cupy_cuda12x-13.6.0-cp313-cp313-manylinux2014_x86_64.whl", hash = "sha256:52d9e7f83d920da7d81ec2e791c2c2c747fdaa1d7b811971b34865ce6371e98a", size = 112654824, upload-time = "2025-08-18T08:25:05.944Z" }, + { url = "https://files.pythonhosted.org/packages/72/36/c9e24acb19f039f814faea880b3704a3661edaa6739456b73b27540663e3/cupy_cuda12x-13.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:297b4268f839de67ef7865c2202d3f5a0fb8d20bd43360bc51b6e60cb4406447", size = 89750580, upload-time = "2025-08-18T08:25:10.972Z" }, +] + [[package]] name = "cycler" version = "0.12.1" @@ -1589,8 +1909,8 @@ dependencies = [ { name = "httpx" }, { name = "huggingface-hub" }, { name = "multiprocess" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pandas" }, { name = "pyarrow" }, @@ -1618,14 +1938,27 @@ name = "decord" version = "0.6.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/11/79/936af42edf90a7bd4e41a6cac89c913d4b47fa48a26b042d5129a9242ee3/decord-0.6.0-py3-none-manylinux2010_x86_64.whl", hash = "sha256:51997f20be8958e23b7c4061ba45d0efcd86bffd5fe81c695d0befee0d442976", size = 13602299, upload-time = "2021-06-14T21:30:55.486Z" }, { url = "https://files.pythonhosted.org/packages/6c/be/e15b5b866da452e62635a7b27513f31cb581fa2ea9cc9b768b535d62a955/decord-0.6.0-py3-none-win_amd64.whl", hash = "sha256:02665d7c4f1193a330205a791bc128f7e108eb6ae5b67144437a02f700943bad", size = 24733380, upload-time = "2021-06-14T21:30:57.766Z" }, ] +[[package]] +name = "depyf" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "astor" }, + { name = "dill" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/88/35/83fb0178212279aa0af031031905804c6de5618435d229f41ed21bb9ad2c/depyf-0.20.0.tar.gz", hash = "sha256:fb7683bd72c44f67b56029df2c47721e9a02ffa4d7b19095f1c54c4ebf797a98", size = 6168761, upload-time = "2025-10-13T12:33:38.589Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/65/4df6936130b56e1429114e663e7c1576cf845f3aef1b2dd200c0a5d19dba/depyf-0.20.0-py3-none-any.whl", hash = "sha256:d31effad4261cebecb58955d832e448ace88f432328f95f82fd99c30fd9308d4", size = 39381, upload-time = "2025-10-13T12:33:33.647Z" }, +] + [[package]] name = "dill" version = "0.4.0" @@ -1635,6 +1968,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/50/3d/9373ad9c56321fdab5b41197068e1d8c25883b3fea29dd361f9b55116869/dill-0.4.0-py3-none-any.whl", hash = "sha256:44f54bf6412c2c8464c14e8243eb163690a9800dbe2c367330883b19c7561049", size = 119668, upload-time = "2025-04-16T00:41:47.671Z" }, ] +[[package]] +name = "diskcache" +version = "5.6.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/3f/21/1c1ffc1a039ddcc459db43cc108658f32c57d271d7289a2794e401d0fdb6/diskcache-5.6.3.tar.gz", hash = "sha256:2c3a3fa2743d8535d832ec61c2054a1641f41775aa7c556758a109941e33e4fc", size = 67916, upload-time = "2023-08-31T06:12:00.316Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3f/27/4570e78fc0bf5ea0ca45eb1de3818a23787af9b390c0b0a0033a1b8236f9/diskcache-5.6.3-py3-none-any.whl", hash = "sha256:5e31b2d5fbad117cc363ebaf6b689474db18a1f6438bc82358b024abd4c2ca19", size = 45550, upload-time = "2023-08-31T06:11:58.822Z" }, +] + [[package]] name = "distlib" version = "0.4.0" @@ -1653,6 +1995,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/12/b3/231ffd4ab1fc9d679809f356cebee130ac7daa00d6d6f3206dd4fd137e9e/distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2", size = 20277, upload-time = "2023-12-24T09:54:30.421Z" }, ] +[[package]] +name = "dnspython" +version = "2.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8c/8b/57666417c0f90f08bcafa776861060426765fdb422eb10212086fb811d26/dnspython-2.8.0.tar.gz", hash = "sha256:181d3c6996452cb1189c4046c61599b84a5a86e099562ffde77d26984ff26d0f", size = 368251, upload-time = "2025-09-07T18:58:00.022Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/ba/5a/18ad964b0086c6e62e2e7500f7edc89e3faa45033c71c1893d34eed2b2de/dnspython-2.8.0-py3-none-any.whl", hash = "sha256:01d9bbc4a2d76bf0db7c1f729812ded6d912bd318d3b1cf81d30c0f845dbf3af", size = 331094, upload-time = "2025-09-07T18:57:58.071Z" }, +] + [[package]] name = "docstring-parser" version = "0.17.0" @@ -1671,6 +2022,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/87/62/9773de14fe6c45c23649e98b83231fffd7b9892b6cf863251dc2afa73643/einops-0.8.1-py3-none-any.whl", hash = "sha256:919387eb55330f5757c6bea9165c5ff5cfe63a642682ea788a6d472576d81737", size = 64359, upload-time = "2025-02-09T03:17:01.998Z" }, ] +[[package]] +name = "email-validator" +version = "2.3.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "dnspython" }, + { name = "idna" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/f5/22/900cb125c76b7aaa450ce02fd727f452243f2e91a61af068b40adba60ea9/email_validator-2.3.0.tar.gz", hash = "sha256:9fc05c37f2f6cf439ff414f8fc46d917929974a82244c20eb10231ba60c54426", size = 51238, upload-time = "2025-08-26T13:09:06.831Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/de/15/545e2b6cf2e3be84bc1ed85613edd75b8aea69807a71c26f4ca6a9258e82/email_validator-2.3.0-py3-none-any.whl", hash = "sha256:80f13f623413e6b197ae73bb10bf4eb0908faf509ad8362c5edeb0be7fd450b4", size = 35604, upload-time = "2025-08-26T13:09:05.858Z" }, +] + [[package]] name = "evaluate" version = "0.4.6" @@ -1678,11 +2042,11 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "datasets" }, { name = "dill" }, - { name = "fsspec", extra = ["http"], marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, + { name = "fsspec", extra = ["http"], marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, { name = "huggingface-hub" }, { name = "multiprocess" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pandas" }, { name = "requests" }, @@ -1699,7 +2063,7 @@ name = "exceptiongroup" version = "1.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/50/79/66800aadf48771f6b62f7eb014e352e5d06856655206165d775e675a02c9/exceptiongroup-1.3.1.tar.gz", hash = "sha256:8b412432c6055b0b7d14c310000ae93352ed6754f70fa8f7c34141f91c4e3219", size = 30371, upload-time = "2025-11-21T23:01:54.787Z" } wheels = [ @@ -1729,8 +2093,8 @@ name = "fairscale" version = "0.4.4" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9f/51/9b8406605333f7d0a2e6f6a4af29ff64cf6c597b056411c1ed43c35e32b8/fairscale-0.4.4.tar.gz", hash = "sha256:7719898743dc58c04a2294c896ee6308c92ccb3af9e10632b2a62f77cb689357", size = 235374, upload-time = "2021-12-21T20:08:54.56Z" } @@ -1739,8 +2103,8 @@ name = "faiss-cpu" version = "1.13.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, ] wheels = [ @@ -1769,8 +2133,8 @@ dependencies = [ { name = "fastkmeans", marker = "python_full_version < '3.13'" }, { name = "joblib", marker = "python_full_version < '3.13'" }, { name = "maturin", marker = "python_full_version < '3.13'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "setuptools", marker = "python_full_version < '3.13'" }, { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" }, ] @@ -1804,6 +2168,177 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/4d/29/9e1e82e16e9a1763d3b55bfbe9b2fa39d7175a1fd97685c482fa402e111d/fastapi-0.124.0-py3-none-any.whl", hash = "sha256:91596bdc6dde303c318f06e8d2bc75eafb341fc793a0c9c92c0bc1db1ac52480", size = 112505, upload-time = "2025-12-06T13:11:34.392Z" }, ] +[package.optional-dependencies] +standard = [ + { name = "email-validator" }, + { name = "fastapi-cli", extra = ["standard"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "httpx" }, + { name = "jinja2" }, + { name = "python-multipart" }, + { name = "uvicorn", extra = ["standard"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, +] + +[[package]] +name = "fastapi-cli" +version = "0.0.20" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "rich-toolkit" }, + { name = "tomli", marker = "python_full_version < '3.11'" }, + { name = "typer" }, + { name = "uvicorn", extra = ["standard"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d3/ca/d90fb3bfbcbd6e56c77afd9d114dd6ce8955d8bb90094399d1c70e659e40/fastapi_cli-0.0.20.tar.gz", hash = "sha256:d17c2634f7b96b6b560bc16b0035ed047d523c912011395f49f00a421692bc3a", size = 19786, upload-time = "2025-12-22T17:13:33.794Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/08/89/5c4eef60524d0fd704eb0706885b82cd5623a43396b94e4a5b17d3a3f516/fastapi_cli-0.0.20-py3-none-any.whl", hash = "sha256:e58b6a0038c0b1532b7a0af690656093dee666201b6b19d3c87175b358e9f783", size = 12390, upload-time = "2025-12-22T17:13:31.708Z" }, +] + +[package.optional-dependencies] +standard = [ + { name = "fastapi-cloud-cli" }, + { name = "uvicorn", extra = ["standard"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, +] + +[[package]] +name = "fastapi-cloud-cli" +version = "0.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastar" }, + { name = "httpx" }, + { name = "pydantic", extra = ["email"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "rich-toolkit" }, + { name = "rignore" }, + { name = "sentry-sdk" }, + { name = "typer" }, + { name = "uvicorn", extra = ["standard"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/51/e5/95ba86183e9cf7357cbd1c101bb629fc6915750eae4b5b94205c127c31c8/fastapi_cloud_cli-0.9.0.tar.gz", hash = "sha256:07930591122ee4aefd113ea5355fca33141af31195da9038be526bacd5accbfe", size = 31614, upload-time = "2026-01-09T16:30:26.278Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/fd/65cdeb2916419eaf5e61428e63ceec7af5463a2239b1583119d85b38a792/fastapi_cloud_cli-0.9.0-py3-none-any.whl", hash = "sha256:21bf02163cebb5664f59613269eb18f74cc9ea2323d972f049c7fafa7abed0d1", size = 23065, upload-time = "2026-01-09T16:30:24.85Z" }, +] + +[[package]] +name = "fastar" +version = "0.8.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/69/e7/f89d54fb04104114dd0552836dc2b47914f416cc0e200b409dd04a33de5e/fastar-0.8.0.tar.gz", hash = "sha256:f4d4d68dbf1c4c2808f0e730fac5843493fc849f70fe3ad3af60dfbaf68b9a12", size = 68524, upload-time = "2025-11-26T02:36:00.72Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c3/e2/51d9ee443aabcd5aa581d45b18b6198ced364b5cd97e5504c5d782ceb82c/fastar-0.8.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:c9f930cff014cf79d396d0541bd9f3a3f170c9b5e45d10d634d98f9ed08788c3", size = 708536, upload-time = "2025-11-26T02:34:35.236Z" }, + { url = "https://files.pythonhosted.org/packages/07/2a/edfc6274768b8a3859a5ca4f8c29cb7f614d7f27d2378e2c88aa91cda54e/fastar-0.8.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:07b70f712d20622346531a4b46bb332569bea621f61314c0b7e80903a16d14cf", size = 632235, upload-time = "2025-11-26T02:34:19.367Z" }, + { url = "https://files.pythonhosted.org/packages/ef/1e/3cfbaaec464caef196700ee2ffae1c03f94f7c5e2a85d0ec0ea9cdd1da81/fastar-0.8.0-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:330639db3bfba4c6d132421a2a4aeb81e7bea8ce9159cdb6e247fbc5fae97686", size = 871386, upload-time = "2025-11-26T02:33:47.613Z" }, + { url = "https://files.pythonhosted.org/packages/82/50/224a674ad541054179e4e6e0b54bb6e162f04f698a2512b42a8085fc6b6f/fastar-0.8.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:98ea7ceb6231e48d7bb0d7dc13e946baa29c7f6873eaf4afb69725d6da349033", size = 764955, upload-time = "2025-11-26T02:32:44.279Z" }, + { url = "https://files.pythonhosted.org/packages/4d/5e/4608184aa57cb6a54f62c1eb3e5133ba8d461fc7f13193c0255effbec12a/fastar-0.8.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a90695a601a78bbca910fdf2efcdf3103c55d0de5a5c6e93556d707bf886250b", size = 765987, upload-time = "2025-11-26T02:32:59.701Z" }, + { url = "https://files.pythonhosted.org/packages/e0/53/6afd2b680dddfa10df9a16bbcf6cabfee0d92435d5c7e3f4cfe3b1712662/fastar-0.8.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9d0bf655ff4c9320b0ca8a5b128063d5093c0c8c1645a2b5f7167143fd8531aa", size = 930900, upload-time = "2025-11-26T02:33:16.059Z" }, + { url = "https://files.pythonhosted.org/packages/ef/1e/b7a304bfcc1d06845cbfa4b464516f6fff9c8c6692f6ef80a3a86b04e199/fastar-0.8.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d8df22cdd8d58e7689aa89b2e4a07e8e5fa4f88d2d9c2621f0e88a49be97ccea", size = 821523, upload-time = "2025-11-26T02:33:30.897Z" }, + { url = "https://files.pythonhosted.org/packages/1d/da/9ef8605c6d233cd6ca3a95f7f518ac22aa064903afe6afa57733bfb7c31b/fastar-0.8.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e8a5e6ad722685128521c8fb44cf25bd38669650ba3a4b466b8903e5aa28e1a0", size = 821268, upload-time = "2025-11-26T02:34:04.003Z" }, + { url = "https://files.pythonhosted.org/packages/7e/22/ed37c78a6b4420de1677d82e79742787975c34847229c33dc376334c7283/fastar-0.8.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:31cd541231a2456e32104da891cf9962c3b40234d0465cbf9322a6bc8a1b05d5", size = 986286, upload-time = "2025-11-26T02:34:50.279Z" }, + { url = "https://files.pythonhosted.org/packages/ca/a6/366b15f432d85d4089e6e4b52a09cc2a2bcf4d7a1f0771e3d3194deccb1e/fastar-0.8.0-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:175db2a98d67ced106468e8987975484f8bbbd5ad99201da823b38bafb565ed5", size = 1041921, upload-time = "2025-11-26T02:35:07.292Z" }, + { url = "https://files.pythonhosted.org/packages/f4/45/45f8e6991e3ce9f8aeefdc8d4c200daada41097a36808643d1703464c3e2/fastar-0.8.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:ada877ab1c65197d772ce1b1c2e244d4799680d8b3f136a4308360f3d8661b23", size = 1047302, upload-time = "2025-11-26T02:35:24.995Z" }, + { url = "https://files.pythonhosted.org/packages/c2/e2/a587796111a3cd4b78cd61ec3fc1252d8517d81f763f4164ed5680f84810/fastar-0.8.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:01084cb75f13ca6a8e80bd41584322523189f8e81b472053743d6e6c3062b5a6", size = 995141, upload-time = "2025-11-26T02:35:42.449Z" }, + { url = "https://files.pythonhosted.org/packages/89/c0/7a8ec86695b0b77168e220cf2af1aa30592f5ecdbd0ce6d641d29c4a8bae/fastar-0.8.0-cp310-cp310-win32.whl", hash = "sha256:ca639b9909805e44364ea13cca2682b487e74826e4ad75957115ec693228d6b6", size = 456544, upload-time = "2025-11-26T02:36:23.801Z" }, + { url = "https://files.pythonhosted.org/packages/be/a9/8da4deb840121c59deabd939ce2dca3d6beec85576f3743d1144441938b5/fastar-0.8.0-cp310-cp310-win_amd64.whl", hash = "sha256:fbc0f2ed0f4add7fb58034c576584d44d7eaaf93dee721dfb26dbed6e222dbac", size = 490701, upload-time = "2025-11-26T02:36:09.625Z" }, + { url = "https://files.pythonhosted.org/packages/cd/15/1c764530b81b266f6d27d78d49b6bef22a73b3300cd83a280bfd244908c5/fastar-0.8.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:cd9c0d3ebf7a0a6f642f771cf41b79f7c98d40a3072a8abe1174fbd9bd615bd3", size = 708427, upload-time = "2025-11-26T02:34:36.502Z" }, + { url = "https://files.pythonhosted.org/packages/41/fc/75d42c008516543219e4293e4d8ac55da57a5c63147484f10468bd1bc24e/fastar-0.8.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:2875a077340fe4f8099bd3ed8fa90d9595e1ac3cd62ae19ab690d5bf550eeb35", size = 631740, upload-time = "2025-11-26T02:34:20.718Z" }, + { url = "https://files.pythonhosted.org/packages/50/8d/9632984f7824ed2210157dcebd8e9821ef6d4f2b28510d0516db6625ff9b/fastar-0.8.0-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:a999263d9f87184bf2801833b2ecf105e03c0dd91cac78685673b70da564fd64", size = 871628, upload-time = "2025-11-26T02:33:49.279Z" }, + { url = "https://files.pythonhosted.org/packages/05/97/3eb6ea71b7544d45cd29cacb764ca23cde8ce0aed1a6a02251caa4c0a818/fastar-0.8.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5c41111da56430f638cbfc498ebdcc7d30f63416e904b27b7695c29bd4889cb8", size = 765005, upload-time = "2025-11-26T02:32:45.833Z" }, + { url = "https://files.pythonhosted.org/packages/d6/45/3eb0ee945a0b5d5f9df7e7c25c037ce7fa441cd0b4d44f76d286e2f4396a/fastar-0.8.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:3719541a12bb09ab1eae91d2c987a9b2b7d7149c52e7109ba6e15b74aabc49b1", size = 765587, upload-time = "2025-11-26T02:33:01.174Z" }, + { url = "https://files.pythonhosted.org/packages/51/bb/7defd6ec0d9570b1987d8ebde52d07d97f3f26e10b592fb3e12738eba39a/fastar-0.8.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7a9b0fff8079b18acdface7ef1b7f522fd9a589f65ca4a1a0dd7c92a0886c2a2", size = 931150, upload-time = "2025-11-26T02:33:17.374Z" }, + { url = "https://files.pythonhosted.org/packages/28/54/62e51e684dab347c61878afbf09e177029c1a91eb1e39ef244e6b3ef9efa/fastar-0.8.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ac073576c1931959191cb20df38bab21dd152f66c940aa3ca8b22e39f753b2f3", size = 821354, upload-time = "2025-11-26T02:33:32.083Z" }, + { url = "https://files.pythonhosted.org/packages/53/a8/12708ea4d21e3cf9f485b2a67d44ce84d949a6eddcc9aa5b3d324585ab43/fastar-0.8.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:003b59a7c3e405b6a7bff8fab17d31e0ccbc7f06730a8f8ca1694eeea75f3c76", size = 821626, upload-time = "2025-11-26T02:34:05.685Z" }, + { url = "https://files.pythonhosted.org/packages/e7/c4/1b4d3347c7a759853f963410bf6baf42fe014d587c50c39c8e145f4bf1a0/fastar-0.8.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:a7b96748425efd9fc155cd920d65088a1b0d754421962418ea73413d02ff515a", size = 986187, upload-time = "2025-11-26T02:34:52.047Z" }, + { url = "https://files.pythonhosted.org/packages/dc/59/2dbe0dc2570764475e60030403738faa261a9d3bff16b08629c378ab939a/fastar-0.8.0-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:90957a30e64418b02df5b4d525bea50403d98a4b1f29143ce5914ddfa7e54ee4", size = 1041536, upload-time = "2025-11-26T02:35:08.926Z" }, + { url = "https://files.pythonhosted.org/packages/d9/0f/639b295669c7ca6fbc2b4be2a7832aaeac1a5e06923f15a8a6d6daecbc7d/fastar-0.8.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:f6e784a8015623fbb7ccca1af372fd82cb511b408ddd2348dc929fc6e415df73", size = 1047149, upload-time = "2025-11-26T02:35:26.597Z" }, + { url = "https://files.pythonhosted.org/packages/cb/e7/23e3a19e06d261d1894f98eca9458f98c090c505a0c712dafc0ff1fc2965/fastar-0.8.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:a03eaf287bbc93064688a1220580ce261e7557c8898f687f4d0b281c85b28d3c", size = 994992, upload-time = "2025-11-26T02:35:44.009Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7a/3ea4726bae3ac9358d02107ae48f3e10ee186dbed554af79e00b7b498c44/fastar-0.8.0-cp311-cp311-win32.whl", hash = "sha256:661a47ed90762f419406c47e802f46af63a08254ba96abd1c8191e4ce967b665", size = 456449, upload-time = "2025-11-26T02:36:25.291Z" }, + { url = "https://files.pythonhosted.org/packages/cb/3c/0142bee993c431ee91cf5535e6e4b079ad491f620c215fcd79b7e5ffeb2b/fastar-0.8.0-cp311-cp311-win_amd64.whl", hash = "sha256:b48abd6056fef7bc3d414aafb453c5b07fdf06d2df5a2841d650288a3aa1e9d3", size = 490863, upload-time = "2025-11-26T02:36:11.114Z" }, + { url = "https://files.pythonhosted.org/packages/3b/18/d119944f6bdbf6e722e204e36db86390ea45684a1bf6be6e3aa42abd471f/fastar-0.8.0-cp311-cp311-win_arm64.whl", hash = "sha256:50c18788b3c6ffb85e176dcb8548bb8e54616a0519dcdbbfba66f6bbc4316933", size = 462230, upload-time = "2025-11-26T02:36:01.917Z" }, + { url = "https://files.pythonhosted.org/packages/58/f1/5b2ff898abac7f1a418284aad285e3a4f68d189c572ab2db0f6c9079dd16/fastar-0.8.0-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:0f10d2adfe40f47ff228f4efaa32d409d732ded98580e03ed37c9535b5fc923d", size = 706369, upload-time = "2025-11-26T02:34:37.783Z" }, + { url = "https://files.pythonhosted.org/packages/23/60/8046a386dca39154f80c927cbbeeb4b1c1267a3271bffe61552eb9995757/fastar-0.8.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b930da9d598e3bc69513d131f397e6d6be4643926ef3de5d33d1e826631eb036", size = 629097, upload-time = "2025-11-26T02:34:21.888Z" }, + { url = "https://files.pythonhosted.org/packages/22/7e/1ae005addc789924a9268da2394d3bb5c6f96836f7e37b7e3d23c2362675/fastar-0.8.0-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:9d210da2de733ca801de83e931012349d209f38b92d9630ccaa94bd445bdc9b8", size = 868938, upload-time = "2025-11-26T02:33:51.119Z" }, + { url = "https://files.pythonhosted.org/packages/a6/77/290a892b073b84bf82e6b2259708dfe79c54f356e252c2dd40180b16fe07/fastar-0.8.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa02270721517078a5bd61a38719070ac2537a4aa6b6c48cf369cf2abc59174a", size = 765204, upload-time = "2025-11-26T02:32:47.02Z" }, + { url = "https://files.pythonhosted.org/packages/d0/00/c3155171b976003af3281f5258189f1935b15d1221bfc7467b478c631216/fastar-0.8.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:83c391e5b789a720e4d0029b9559f5d6dee3226693c5b39c0eab8eaece997e0f", size = 764717, upload-time = "2025-11-26T02:33:02.453Z" }, + { url = "https://files.pythonhosted.org/packages/b7/43/405b7ad76207b2c11b7b59335b70eac19e4a2653977f5588a1ac8fed54f4/fastar-0.8.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3258d7a78a72793cdd081545da61cabe85b1f37634a1d0b97ffee0ff11d105ef", size = 931502, upload-time = "2025-11-26T02:33:18.619Z" }, + { url = "https://files.pythonhosted.org/packages/da/8a/a3dde6d37cc3da4453f2845cdf16675b5686b73b164f37e2cc579b057c2c/fastar-0.8.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e6eab95dd985cdb6a50666cbeb9e4814676e59cfe52039c880b69d67cfd44767", size = 821454, upload-time = "2025-11-26T02:33:33.427Z" }, + { url = "https://files.pythonhosted.org/packages/da/c1/904fe2468609c8990dce9fe654df3fbc7324a8d8e80d8240ae2c89757064/fastar-0.8.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:829b1854166141860887273c116c94e31357213fa8e9fe8baeb18bd6c38aa8d9", size = 821647, upload-time = "2025-11-26T02:34:07Z" }, + { url = "https://files.pythonhosted.org/packages/c8/73/a0642ab7a400bc07528091785e868ace598fde06fcd139b8f865ec1b6f3c/fastar-0.8.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b1667eae13f9457a3c737f4376d68e8c3e548353538b28f7e4273a30cb3965cd", size = 986342, upload-time = "2025-11-26T02:34:53.371Z" }, + { url = "https://files.pythonhosted.org/packages/af/af/60c1bfa6edab72366461a95f053d0f5f7ab1825fe65ca2ca367432cd8629/fastar-0.8.0-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:b864a95229a7db0814cd9ef7987cb713fd43dce1b0d809dd17d9cd6f02fdde3e", size = 1040207, upload-time = "2025-11-26T02:35:10.65Z" }, + { url = "https://files.pythonhosted.org/packages/f6/a0/0d624290dec622e7fa084b6881f456809f68777d54a314f5dde932714506/fastar-0.8.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:c05fbc5618ce17675a42576fa49858d79734627f0a0c74c0875ab45ee8de340c", size = 1045031, upload-time = "2025-11-26T02:35:28.108Z" }, + { url = "https://files.pythonhosted.org/packages/a7/74/cf663af53c4706ba88e6b4af44a6b0c3bd7d7ca09f079dc40647a8f06585/fastar-0.8.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7f41c51ee96f338662ee3c3df4840511ba3f9969606840f1b10b7cb633a3c716", size = 994877, upload-time = "2025-11-26T02:35:45.797Z" }, + { url = "https://files.pythonhosted.org/packages/52/17/444c8be6e77206050e350da7c338102b6cab384be937fa0b1d6d1f9ede73/fastar-0.8.0-cp312-cp312-win32.whl", hash = "sha256:d949a1a2ea7968b734632c009df0571c94636a5e1622c87a6e2bf712a7334f47", size = 455996, upload-time = "2025-11-26T02:36:26.938Z" }, + { url = "https://files.pythonhosted.org/packages/dc/34/fc3b5e56d71a17b1904800003d9251716e8fd65f662e1b10a26881698a74/fastar-0.8.0-cp312-cp312-win_amd64.whl", hash = "sha256:fc645994d5b927d769121094e8a649b09923b3c13a8b0b98696d8f853f23c532", size = 490429, upload-time = "2025-11-26T02:36:12.707Z" }, + { url = "https://files.pythonhosted.org/packages/35/a8/5608cc837417107c594e2e7be850b9365bcb05e99645966a5d6a156285fe/fastar-0.8.0-cp312-cp312-win_arm64.whl", hash = "sha256:d81ee82e8dc78a0adb81728383bd39611177d642a8fa2d601d4ad5ad59e5f3bd", size = 461297, upload-time = "2025-11-26T02:36:03.546Z" }, + { url = "https://files.pythonhosted.org/packages/d1/a5/79ecba3646e22d03eef1a66fb7fc156567213e2e4ab9faab3bbd4489e483/fastar-0.8.0-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:a3253a06845462ca2196024c7a18f5c0ba4de1532ab1c4bad23a40b332a06a6a", size = 706112, upload-time = "2025-11-26T02:34:39.237Z" }, + { url = "https://files.pythonhosted.org/packages/0a/03/4f883bce878218a8676c2d7ca09b50c856a5470bb3b7f63baf9521ea6995/fastar-0.8.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5cbeb3ebfa0980c68ff8b126295cc6b208ccd81b638aebc5a723d810a7a0e5d2", size = 628954, upload-time = "2025-11-26T02:34:23.705Z" }, + { url = "https://files.pythonhosted.org/packages/4f/f1/892e471f156b03d10ba48ace9384f5a896702a54506137462545f38e40b8/fastar-0.8.0-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:1c0d5956b917daac77d333d48b3f0f3ff927b8039d5b32d8125462782369f761", size = 868685, upload-time = "2025-11-26T02:33:53.077Z" }, + { url = "https://files.pythonhosted.org/packages/39/ba/e24915045852e30014ec6840446975c03f4234d1c9270394b51d3ad18394/fastar-0.8.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27b404db2b786b65912927ce7f3790964a4bcbde42cdd13091b82a89cd655e1c", size = 765044, upload-time = "2025-11-26T02:32:48.187Z" }, + { url = "https://files.pythonhosted.org/packages/14/2c/1aa11ac21a99984864c2fca4994e094319ff3a2046e7a0343c39317bd5b9/fastar-0.8.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0902fc89dcf1e7f07b8563032a4159fe2b835e4c16942c76fd63451d0e5f76a3", size = 764322, upload-time = "2025-11-26T02:33:03.859Z" }, + { url = "https://files.pythonhosted.org/packages/ba/f0/4b91902af39fe2d3bae7c85c6d789586b9fbcf618d7fdb3d37323915906d/fastar-0.8.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:069347e2f0f7a8b99bbac8cd1bc0e06c7b4a31dc964fc60d84b95eab3d869dc1", size = 931016, upload-time = "2025-11-26T02:33:19.902Z" }, + { url = "https://files.pythonhosted.org/packages/c9/97/8fc43a5a9c0a2dc195730f6f7a0f367d171282cd8be2511d0e87c6d2dad0/fastar-0.8.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7fd135306f6bfe9a835918280e0eb440b70ab303e0187d90ab51ca86e143f70d", size = 821308, upload-time = "2025-11-26T02:33:34.664Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e9/058615b63a7fd27965e8c5966f393ed0c169f7ff5012e1674f21684de3ba/fastar-0.8.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:78d06d6897f43c27154b5f2d0eb930a43a81b7eec73f6f0b0114814d4a10ab38", size = 821171, upload-time = "2025-11-26T02:34:08.498Z" }, + { url = "https://files.pythonhosted.org/packages/ca/cf/69e16a17961570a755c37ffb5b5aa7610d2e77807625f537989da66f2a9d/fastar-0.8.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a922f8439231fa0c32b15e8d70ff6d415619b9d40492029dabbc14a0c53b5f18", size = 986227, upload-time = "2025-11-26T02:34:55.06Z" }, + { url = "https://files.pythonhosted.org/packages/fb/83/2100192372e59b56f4ace37d7d9cabda511afd71b5febad1643d1c334271/fastar-0.8.0-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:a739abd51eb766384b4caff83050888e80cd75bbcfec61e6d1e64875f94e4a40", size = 1039395, upload-time = "2025-11-26T02:35:12.166Z" }, + { url = "https://files.pythonhosted.org/packages/75/15/cdd03aca972f55872efbb7cf7540c3fa7b97a75d626303a3ea46932163dc/fastar-0.8.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:5a65f419d808b23ac89d5cd1b13a2f340f15bc5d1d9af79f39fdb77bba48ff1b", size = 1044766, upload-time = "2025-11-26T02:35:29.62Z" }, + { url = "https://files.pythonhosted.org/packages/3d/29/945e69e4e2652329ace545999334ec31f1431fbae3abb0105587e11af2ae/fastar-0.8.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:7bb2ae6c0cce58f0db1c9f20495e7557cca2c1ee9c69bbd90eafd54f139171c5", size = 994740, upload-time = "2025-11-26T02:35:47.887Z" }, + { url = "https://files.pythonhosted.org/packages/4b/5d/dbfe28f8cd1eb484bba0c62e5259b2cf6fea229d6ef43e05c06b5a78c034/fastar-0.8.0-cp313-cp313-win32.whl", hash = "sha256:b28753e0d18a643272597cb16d39f1053842aa43131ad3e260c03a2417d38401", size = 455990, upload-time = "2025-11-26T02:36:28.502Z" }, + { url = "https://files.pythonhosted.org/packages/e1/01/e965740bd36e60ef4c5aa2cbe42b6c4eb1dc3551009238a97c2e5e96bd23/fastar-0.8.0-cp313-cp313-win_amd64.whl", hash = "sha256:620e5d737dce8321d49a5ebb7997f1fd0047cde3512082c27dc66d6ac8c1927a", size = 490227, upload-time = "2025-11-26T02:36:14.363Z" }, + { url = "https://files.pythonhosted.org/packages/dd/10/c99202719b83e5249f26902ae53a05aea67d840eeb242019322f20fc171c/fastar-0.8.0-cp313-cp313-win_arm64.whl", hash = "sha256:c4c4bd08df563120cd33e854fe0a93b81579e8571b11f9b7da9e84c37da2d6b6", size = 461078, upload-time = "2025-11-26T02:36:04.94Z" }, + { url = "https://files.pythonhosted.org/packages/96/4a/9573b87a0ef07580ed111e7230259aec31bb33ca3667963ebee77022ec61/fastar-0.8.0-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:50b36ce654ba44b0e13fae607ae17ee6e1597b69f71df1bee64bb8328d881dfc", size = 706041, upload-time = "2025-11-26T02:34:40.638Z" }, + { url = "https://files.pythonhosted.org/packages/4a/19/f95444a1d4f375333af49300aa75ee93afa3335c0e40fda528e460ed859c/fastar-0.8.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:63a892762683d7ab00df0227d5ea9677c62ff2cde9b875e666c0be569ed940f3", size = 628617, upload-time = "2025-11-26T02:34:24.893Z" }, + { url = "https://files.pythonhosted.org/packages/b3/c9/b51481b38b7e3f16ef2b9e233b1a3623386c939d745d6e41bbd389eaae30/fastar-0.8.0-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:4ae6a145c1bff592644bde13f2115e0239f4b7babaf506d14e7d208483cf01a5", size = 869299, upload-time = "2025-11-26T02:33:54.274Z" }, + { url = "https://files.pythonhosted.org/packages/bf/02/3ba1267ee5ba7314e29c431cf82eaa68586f2c40cdfa08be3632b7d07619/fastar-0.8.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6ae0ff7c0a1c7e1428404b81faee8aebef466bfd0be25bfe4dabf5d535c68741", size = 764667, upload-time = "2025-11-26T02:32:49.606Z" }, + { url = "https://files.pythonhosted.org/packages/1b/84/bf33530fd015b5d7c2cc69e0bce4a38d736754a6955487005aab1af6adcd/fastar-0.8.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dbfd87dbd217b45c898b2dbcd0169aae534b2c1c5cbe3119510881f6a5ac8ef5", size = 763993, upload-time = "2025-11-26T02:33:05.782Z" }, + { url = "https://files.pythonhosted.org/packages/da/e0/9564d24e7cea6321a8d921c6d2a457044a476ef197aa4708e179d3d97f0d/fastar-0.8.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9a5abd99fcba83ef28c8fe6ae2927edc79053db43a0457a962ed85c9bf150d37", size = 930153, upload-time = "2025-11-26T02:33:21.53Z" }, + { url = "https://files.pythonhosted.org/packages/35/b1/6f57fcd8d6e192cfebf97e58eb27751640ad93784c857b79039e84387b51/fastar-0.8.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:91d4c685620c3a9d6b5ae091dbabab4f98b20049b7ecc7976e19cc9016c0d5d6", size = 821177, upload-time = "2025-11-26T02:33:35.839Z" }, + { url = "https://files.pythonhosted.org/packages/b3/78/9e004ea9f3aa7466f5ddb6f9518780e1d2f0ed3ca55f093632982598bace/fastar-0.8.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f77c2f2cad76e9dc7b6701297adb1eba87d0485944b416fc2ccf5516c01219a3", size = 820652, upload-time = "2025-11-26T02:34:09.776Z" }, + { url = "https://files.pythonhosted.org/packages/42/95/b604ed536544005c9f1aee7c4c74b00150db3d8d535cd8232dc20f947063/fastar-0.8.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:e7f07c4a3dada7757a8fc430a5b4a29e6ef696d2212747213f57086ffd970316", size = 985961, upload-time = "2025-11-26T02:34:56.401Z" }, + { url = "https://files.pythonhosted.org/packages/f2/7b/fa9d4d96a5d494bdb8699363bb9de8178c0c21a02e1d89cd6f913d127018/fastar-0.8.0-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:90c0c3fe55105c0aed8a83135dbdeb31e683455dbd326a1c48fa44c378b85616", size = 1039316, upload-time = "2025-11-26T02:35:13.807Z" }, + { url = "https://files.pythonhosted.org/packages/4e/f9/8462789243bc3f33e8401378ec6d54de4e20cfa60c96a0e15e3e9d1389bb/fastar-0.8.0-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:fb9ee51e5bffe0dab3d3126d3a4fac8d8f7235cedcb4b8e74936087ce1c157f3", size = 1045028, upload-time = "2025-11-26T02:35:31.079Z" }, + { url = "https://files.pythonhosted.org/packages/a5/71/9abb128777e616127194b509e98fcda3db797d76288c1a8c23dd22afc14f/fastar-0.8.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:e380b1e8d30317f52406c43b11e98d11e1d68723bbd031e18049ea3497b59a6d", size = 994677, upload-time = "2025-11-26T02:35:49.391Z" }, + { url = "https://files.pythonhosted.org/packages/de/c1/b81b3f194853d7ad232a67a1d768f5f51a016f165cfb56cb31b31bbc6177/fastar-0.8.0-cp314-cp314-win32.whl", hash = "sha256:1c4ffc06e9c4a8ca498c07e094670d8d8c0d25b17ca6465b9774da44ea997ab1", size = 456687, upload-time = "2025-11-26T02:36:30.205Z" }, + { url = "https://files.pythonhosted.org/packages/cb/87/9e0cd4768a98181d56f0cdbab2363404cc15deb93f4aad3b99cd2761bbaa/fastar-0.8.0-cp314-cp314-win_amd64.whl", hash = "sha256:5517a8ad4726267c57a3e0e2a44430b782e00b230bf51c55b5728e758bb3a692", size = 490578, upload-time = "2025-11-26T02:36:16.218Z" }, + { url = "https://files.pythonhosted.org/packages/aa/1e/580a76cf91847654f2ad6520e956e93218f778540975bc4190d363f709e2/fastar-0.8.0-cp314-cp314-win_arm64.whl", hash = "sha256:58030551046ff4a8616931e52a36c83545ff05996db5beb6e0cd2b7e748aa309", size = 461473, upload-time = "2025-11-26T02:36:06.373Z" }, + { url = "https://files.pythonhosted.org/packages/58/4c/bdb5c6efe934f68708529c8c9d4055ebef5c4be370621966438f658b29bd/fastar-0.8.0-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:1e7d29b6bfecb29db126a08baf3c04a5ab667f6cea2b7067d3e623a67729c4a6", size = 705570, upload-time = "2025-11-26T02:34:42.01Z" }, + { url = "https://files.pythonhosted.org/packages/6d/78/f01ac7e71d5a37621bd13598a26e948a12b85ca8042f7ee1a0a8c9f59cda/fastar-0.8.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:05eb7b96940f9526b485f1d0b02393839f0f61cac4b1f60024984f8b326d2640", size = 627761, upload-time = "2025-11-26T02:34:26.152Z" }, + { url = "https://files.pythonhosted.org/packages/06/45/6df0ecda86ea9d2e95053c1a655d153dee55fc121b6e13ea6d1e246a50b6/fastar-0.8.0-cp314-cp314t-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:619352d8ac011794e2345c462189dc02ba634750d23cd9d86a9267dd71b1f278", size = 869414, upload-time = "2025-11-26T02:33:55.618Z" }, + { url = "https://files.pythonhosted.org/packages/b2/72/486421f5a8c0c377cc82e7a50c8a8ea899a6ec2aa72bde8f09fb667a2dc8/fastar-0.8.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:74ebfecef3fe6d7a90355fac1402fd30636988332a1d33f3e80019a10782bb24", size = 763863, upload-time = "2025-11-26T02:32:51.051Z" }, + { url = "https://files.pythonhosted.org/packages/d4/64/39f654dbb41a3867fb1f2c8081c014d8f1d32ea10585d84cacbef0b32995/fastar-0.8.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2975aca5a639e26a3ab0d23b4b0628d6dd6d521146c3c11486d782be621a35aa", size = 763065, upload-time = "2025-11-26T02:33:07.274Z" }, + { url = "https://files.pythonhosted.org/packages/4e/bd/c011a34fb3534c4c3301f7c87c4ffd7e47f6113c904c092ddc8a59a303ea/fastar-0.8.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:afc438eaed8ff0dcdd9308268be5cb38c1db7e94c3ccca7c498ca13a4a4535a3", size = 930530, upload-time = "2025-11-26T02:33:23.117Z" }, + { url = "https://files.pythonhosted.org/packages/55/9d/aa6e887a7033c571b1064429222bbe09adc9a3c1e04f3d1788ba5838ebd5/fastar-0.8.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6ced0a5399cc0a84a858ef0a31ca2d0c24d3bbec4bcda506a9192d8119f3590a", size = 820572, upload-time = "2025-11-26T02:33:37.542Z" }, + { url = "https://files.pythonhosted.org/packages/ad/9c/7a3a2278a1052e1a5d98646de7c095a00cffd2492b3b84ce730e2f1cd93a/fastar-0.8.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec9b23da8c4c039da3fe2e358973c66976a0c8508aa06d6626b4403cb5666c19", size = 820649, upload-time = "2025-11-26T02:34:11.108Z" }, + { url = "https://files.pythonhosted.org/packages/02/9e/d38edc1f4438cd047e56137c26d94783ffade42e1b3bde620ccf17b771ef/fastar-0.8.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:dfba078fcd53478032fd0ceed56960ec6b7ff0511cfc013a8a3a4307e3a7bac4", size = 985653, upload-time = "2025-11-26T02:34:57.884Z" }, + { url = "https://files.pythonhosted.org/packages/69/d9/2147d0c19757e165cd62d41cec3f7b38fad2ad68ab784978b5f81716c7ea/fastar-0.8.0-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:ade56c94c14be356d295fecb47a3fcd473dd43a8803ead2e2b5b9e58feb6dcfa", size = 1038140, upload-time = "2025-11-26T02:35:15.778Z" }, + { url = "https://files.pythonhosted.org/packages/7f/1d/ec4c717ffb8a308871e9602ec3197d957e238dc0227127ac573ec9bca952/fastar-0.8.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:e48d938f9366db5e59441728f70b7f6c1ccfab7eff84f96f9b7e689b07786c52", size = 1045195, upload-time = "2025-11-26T02:35:32.865Z" }, + { url = "https://files.pythonhosted.org/packages/6a/9f/637334dc8c8f3bb391388b064ae13f0ad9402bc5a6c3e77b8887d0c31921/fastar-0.8.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:79c441dc1482ff51a54fb3f57ae6f7bb3d2cff88fa2cc5d196c519f8aab64a56", size = 994686, upload-time = "2025-11-26T02:35:51.392Z" }, + { url = "https://files.pythonhosted.org/packages/c9/e2/dfa19a4b260b8ab3581b7484dcb80c09b25324f4daa6b6ae1c7640d1607a/fastar-0.8.0-cp314-cp314t-win32.whl", hash = "sha256:187f61dc739afe45ac8e47ed7fd1adc45d52eac110cf27d579155720507d6fbe", size = 455767, upload-time = "2025-11-26T02:36:34.758Z" }, + { url = "https://files.pythonhosted.org/packages/51/47/df65c72afc1297797b255f90c4778b5d6f1f0f80282a134d5ab610310ed9/fastar-0.8.0-cp314-cp314t-win_amd64.whl", hash = "sha256:40e9d763cf8bf85ce2fa256e010aa795c0fe3d3bd1326d5c3084e6ce7857127e", size = 489971, upload-time = "2025-11-26T02:36:22.081Z" }, + { url = "https://files.pythonhosted.org/packages/85/11/0aa8455af26f0ae89e42be67f3a874255ee5d7f0f026fc86e8d56f76b428/fastar-0.8.0-cp314-cp314t-win_arm64.whl", hash = "sha256:e59673307b6a08210987059a2bdea2614fe26e3335d0e5d1a3d95f49a05b1418", size = 460467, upload-time = "2025-11-26T02:36:07.978Z" }, + { url = "https://files.pythonhosted.org/packages/25/9f/6eaa810c240236eff2edf736cd50a17c97dbab1693cda4f7bcea09d13418/fastar-0.8.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:2127cf2e80ffd49744a160201e0e2f55198af6c028a7b3f750026e0b1f1caa4e", size = 710544, upload-time = "2025-11-26T02:34:46.195Z" }, + { url = "https://files.pythonhosted.org/packages/1d/a5/58ff9e49a1cd5fbfc8f1238226cbf83b905376a391a6622cdd396b2cfa29/fastar-0.8.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:ff85094f10003801339ac4fa9b20a3410c2d8f284d4cba2dc99de6e98c877812", size = 634020, upload-time = "2025-11-26T02:34:31.085Z" }, + { url = "https://files.pythonhosted.org/packages/80/94/f839257c6600a83fbdb5a7fcc06319599086137b25ba38ca3d2c0fe14562/fastar-0.8.0-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:3dbca235f0bd804cca6602fe055d3892bebf95fb802e6c6c7d872fb10f7abc6c", size = 871735, upload-time = "2025-11-26T02:34:00.088Z" }, + { url = "https://files.pythonhosted.org/packages/eb/79/4124c54260f7ee5cb7034bfe499eff2f8512b052d54be4671e59d4f25a4f/fastar-0.8.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:722e54bfdee6c81a0005e147319e93d8797f442308032c92fa28d03ef8fda076", size = 766779, upload-time = "2025-11-26T02:32:55.109Z" }, + { url = "https://files.pythonhosted.org/packages/36/b6/043b263c4126bf6557c942d099503989af9c5c7ee5cca9a04e00f754816f/fastar-0.8.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0a78e5221b94a80800930b7fd0d0e797ae73aadf7044c05ed46cb9bdf870f022", size = 766755, upload-time = "2025-11-26T02:33:11.595Z" }, + { url = "https://files.pythonhosted.org/packages/57/ff/29a5dc06f2940439ebf98661ecc98d48d3f22fed8d6a2d5dc985d1e8da24/fastar-0.8.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:997092d31ff451de8d0568f6773f3517cb87dcd0bc76184edb65d7154390a6f8", size = 932732, upload-time = "2025-11-26T02:33:27.122Z" }, + { url = "https://files.pythonhosted.org/packages/eb/e8/2218830f422b37aad52c24b53cb84b5d88bd6fd6ad411bd6689b1a32500d/fastar-0.8.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:558e8fcf8fe574541df5db14a46cd98bfbed14a811b7014a54f2b714c0cfac42", size = 822571, upload-time = "2025-11-26T02:33:42.986Z" }, + { url = "https://files.pythonhosted.org/packages/6e/fd/ba6dfeff77cddfe58d85c490b1735c002b81c0d6f826916a8b6c4f8818bc/fastar-0.8.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f1d2a54f87e2908cc19e1a6ee249620174fbefc54a219aba1eaa6f31657683c3", size = 822440, upload-time = "2025-11-26T02:34:15.439Z" }, + { url = "https://files.pythonhosted.org/packages/a7/57/54d5740c84b35de0eb12975397ecc16785b5ad8bed2dbac38b8c8a7c1edd/fastar-0.8.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef94901537be277f9ec59db939eb817960496c6351afede5b102699b5098604d", size = 987424, upload-time = "2025-11-26T02:35:02.742Z" }, + { url = "https://files.pythonhosted.org/packages/ee/c7/18115927f16deb1ddffdbd4ae992e7e33064bc6defa2b92a147948f8bc0c/fastar-0.8.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl", hash = "sha256:0afbb92f78bf29d5e9db76fb46cbabc429e49015cddf72ab9e761afbe88ac100", size = 1042675, upload-time = "2025-11-26T02:35:20.252Z" }, + { url = "https://files.pythonhosted.org/packages/d7/1a/ca884fc7973ec6d765e87af23a4dd25784fb0a36ac2df825f18c3630bbab/fastar-0.8.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:fb59c7925e7710ad178d9e1a3e65edf295d9a042a0cdcb673b4040949eb8ad0a", size = 1047098, upload-time = "2025-11-26T02:35:37.643Z" }, + { url = "https://files.pythonhosted.org/packages/44/ee/25cd645db749b206bb95e1512e57e75d56ccbbb8ec3536f52a7979deab6b/fastar-0.8.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:e6c4d6329da568ec36b1347b0c09c4d27f9dfdeddf9f438ddb16799ecf170098", size = 997397, upload-time = "2025-11-26T02:35:56.215Z" }, + { url = "https://files.pythonhosted.org/packages/98/6e/6c46aa7f8c8734e7f96ee5141acd3877667ce66f34eea10703aa7571d191/fastar-0.8.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:998e3fa4b555b63eb134e6758437ed739ad1652fdd2a61dfe1dacbfddc35fe66", size = 710662, upload-time = "2025-11-26T02:34:47.593Z" }, + { url = "https://files.pythonhosted.org/packages/70/27/fd622442f2fbd4ff5459677987481ef1c60e077cb4e63a2ed4d8dce6f869/fastar-0.8.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:5f83e60d845091f3a12bc37f412774264d161576eaf810ed8b43567eb934b7e5", size = 634049, upload-time = "2025-11-26T02:34:32.365Z" }, + { url = "https://files.pythonhosted.org/packages/8f/ee/aa4d08aea25b5419a7277132e738ab1cd775f26aebddce11413b07e2fdff/fastar-0.8.0-pp311-pypy311_pp73-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:299672e1c74d8b73c61684fac9159cfc063d35f4b165996a88facb0e26862cb5", size = 872055, upload-time = "2025-11-26T02:34:01.377Z" }, + { url = "https://files.pythonhosted.org/packages/92/9a/2bf2f77aade575e67997e0c759fd55cb1c66b7a5b437b1cd0e97d8b241bc/fastar-0.8.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3d3a27066b84d015deab5faee78565509bb33b137896443e4144cb1be1a5f90", size = 766787, upload-time = "2025-11-26T02:32:57.161Z" }, + { url = "https://files.pythonhosted.org/packages/0b/90/23a3f6c252f11b10c70f854bce09abc61f71b5a0e6a4b0eac2bcb9a2c583/fastar-0.8.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ef0bcf4385bbdd3c1acecce2d9ea7dab7cc9b8ee0581bbccb7ab11908a7ce288", size = 766861, upload-time = "2025-11-26T02:33:12.824Z" }, + { url = "https://files.pythonhosted.org/packages/76/bb/beeb9078380acd4484db5c957d066171695d9340e3526398eb230127b0c2/fastar-0.8.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f10ef62b6eda6cb6fd9ba8e1fe08a07d7b2bdcc8eaa00eb91566143b92ed7eee", size = 932667, upload-time = "2025-11-26T02:33:28.405Z" }, + { url = "https://files.pythonhosted.org/packages/f4/6d/b034cc637bd0ee638d5a85d08e941b0b8ffd44cf391fb751ba98233734f7/fastar-0.8.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c4f6c82a8ee98c17aa48585ee73b51c89c1b010e5c951af83e07c3436180e3fc", size = 822712, upload-time = "2025-11-26T02:33:44.27Z" }, + { url = "https://files.pythonhosted.org/packages/e2/2b/7d183c63f59227c4689792042d6647f2586a5e7273b55e81745063088d81/fastar-0.8.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6129067fcb86276635b5857010f4e9b9c7d5d15dd571bb03c6c1ed73c40fd92", size = 822659, upload-time = "2025-11-26T02:34:16.815Z" }, + { url = "https://files.pythonhosted.org/packages/3e/f9/716e0cd9de2427fdf766bc68176f76226cd01fffef3a56c5046fa863f5f0/fastar-0.8.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4cc9e77019e489f1ddac446b6a5b9dfb5c3d9abd142652c22a1d9415dbcc0e47", size = 987412, upload-time = "2025-11-26T02:35:04.259Z" }, + { url = "https://files.pythonhosted.org/packages/a4/b9/9a8c3fd59958c1c8027bc075af11722cdc62c4968bb277e841d131232289/fastar-0.8.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl", hash = "sha256:382bfe82c026086487cb17fee12f4c1e2b4e67ce230f2e04487d3e7ddfd69031", size = 1042911, upload-time = "2025-11-26T02:35:21.857Z" }, + { url = "https://files.pythonhosted.org/packages/e2/2f/c3f30963b47022134b8a231c12845f4d7cfba520f59bbc1a82468aea77c7/fastar-0.8.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:908d2b9a1ff3d549cc304b32f95706a536da8f0bcb0bc0f9e4c1cce39b80e218", size = 1047464, upload-time = "2025-11-26T02:35:39.376Z" }, + { url = "https://files.pythonhosted.org/packages/9e/8a/218ab6d9a2bab3b07718e6cd8405529600edc1e9c266320e8524c8f63251/fastar-0.8.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:1aa7dbde2d2d73eb5b6203d0f74875cb66350f0f1b4325b4839fc8fbbf5d074e", size = 997309, upload-time = "2025-11-26T02:35:57.722Z" }, +] + [[package]] name = "fastavro" version = "1.12.1" @@ -1856,8 +2391,8 @@ name = "fastkmeans" version = "0.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.13'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/08/b5/2ccaf75530a5250825bd5f3c100492e39c43cf2bea84d1bf7ae3def10a85/fastkmeans-0.5.0.tar.gz", hash = "sha256:64196ba228bfa02a98358ee4d30e5af33ddf1aa44cd72e93428916d0e5d2167f", size = 17010, upload-time = "2025-05-14T05:52:38.613Z" } @@ -1865,6 +2400,42 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2d/aa/2b45e0264ee945d6b663fba77cef56b388d8cf68562c5070087246c6ce1f/fastkmeans-0.5.0-py3-none-any.whl", hash = "sha256:ebd693aaffe1c67eabd3636269a078279e9b868fe5bc3052bb7583901ec35068", size = 14548, upload-time = "2025-05-14T05:52:37.625Z" }, ] +[[package]] +name = "fastrlock" +version = "0.8.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/73/b1/1c3d635d955f2b4bf34d45abf8f35492e04dbd7804e94ce65d9f928ef3ec/fastrlock-0.8.3.tar.gz", hash = "sha256:4af6734d92eaa3ab4373e6c9a1dd0d5ad1304e172b1521733c6c3b3d73c8fa5d", size = 79327, upload-time = "2024-12-17T11:03:39.638Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e7/02/3f771177380d8690812d5b2b7736dc6b6c8cd1c317e4572e65f823eede08/fastrlock-0.8.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:cc5fa9166e05409f64a804d5b6d01af670979cdb12cd2594f555cb33cdc155bd", size = 55094, upload-time = "2024-12-17T11:01:49.721Z" }, + { url = "https://files.pythonhosted.org/packages/be/b4/aae7ed94b8122c325d89eb91336084596cebc505dc629b795fcc9629606d/fastrlock-0.8.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:7a77ebb0a24535ef4f167da2c5ee35d9be1e96ae192137e9dc3ff75b8dfc08a5", size = 48220, upload-time = "2024-12-17T11:01:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/96/87/9807af47617fdd65c68b0fcd1e714542c1d4d3a1f1381f591f1aa7383a53/fastrlock-0.8.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:d51f7fb0db8dab341b7f03a39a3031678cf4a98b18533b176c533c122bfce47d", size = 49551, upload-time = "2024-12-17T11:01:52.316Z" }, + { url = "https://files.pythonhosted.org/packages/9d/12/e201634810ac9aee59f93e3953cb39f98157d17c3fc9d44900f1209054e9/fastrlock-0.8.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:767ec79b7f6ed9b9a00eb9ff62f2a51f56fdb221c5092ab2dadec34a9ccbfc6e", size = 49398, upload-time = "2024-12-17T11:01:53.514Z" }, + { url = "https://files.pythonhosted.org/packages/15/a1/439962ed439ff6f00b7dce14927e7830e02618f26f4653424220a646cd1c/fastrlock-0.8.3-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0d6a77b3f396f7d41094ef09606f65ae57feeb713f4285e8e417f4021617ca62", size = 53334, upload-time = "2024-12-17T11:01:55.518Z" }, + { url = "https://files.pythonhosted.org/packages/b5/9e/1ae90829dd40559ab104e97ebe74217d9da794c4bb43016da8367ca7a596/fastrlock-0.8.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:92577ff82ef4a94c5667d6d2841f017820932bc59f31ffd83e4a2c56c1738f90", size = 52495, upload-time = "2024-12-17T11:01:57.76Z" }, + { url = "https://files.pythonhosted.org/packages/e5/8c/5e746ee6f3d7afbfbb0d794c16c71bfd5259a4e3fb1dda48baf31e46956c/fastrlock-0.8.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:3df8514086e16bb7c66169156a8066dc152f3be892c7817e85bf09a27fa2ada2", size = 51972, upload-time = "2024-12-17T11:02:01.384Z" }, + { url = "https://files.pythonhosted.org/packages/76/a7/8b91068f00400931da950f143fa0f9018bd447f8ed4e34bed3fe65ed55d2/fastrlock-0.8.3-cp310-cp310-win_amd64.whl", hash = "sha256:001fd86bcac78c79658bac496e8a17472d64d558cd2227fdc768aa77f877fe40", size = 30946, upload-time = "2024-12-17T11:02:03.491Z" }, + { url = "https://files.pythonhosted.org/packages/90/9e/647951c579ef74b6541493d5ca786d21a0b2d330c9514ba2c39f0b0b0046/fastrlock-0.8.3-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:f68c551cf8a34b6460a3a0eba44bd7897ebfc820854e19970c52a76bf064a59f", size = 55233, upload-time = "2024-12-17T11:02:04.795Z" }, + { url = "https://files.pythonhosted.org/packages/be/91/5f3afba7d14b8b7d60ac651375f50fff9220d6ccc3bef233d2bd74b73ec7/fastrlock-0.8.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_24_aarch64.whl", hash = "sha256:55d42f6286b9d867370af4c27bc70d04ce2d342fe450c4a4fcce14440514e695", size = 48911, upload-time = "2024-12-17T11:02:06.173Z" }, + { url = "https://files.pythonhosted.org/packages/d5/7a/e37bd72d7d70a8a551b3b4610d028bd73ff5d6253201d5d3cf6296468bee/fastrlock-0.8.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_24_i686.whl", hash = "sha256:bbc3bf96dcbd68392366c477f78c9d5c47e5d9290cb115feea19f20a43ef6d05", size = 50357, upload-time = "2024-12-17T11:02:07.418Z" }, + { url = "https://files.pythonhosted.org/packages/0d/ef/a13b8bab8266840bf38831d7bf5970518c02603d00a548a678763322d5bf/fastrlock-0.8.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_24_x86_64.whl", hash = "sha256:77ab8a98417a1f467dafcd2226718f7ca0cf18d4b64732f838b8c2b3e4b55cb5", size = 50222, upload-time = "2024-12-17T11:02:08.745Z" }, + { url = "https://files.pythonhosted.org/packages/01/e2/5e5515562b2e9a56d84659377176aef7345da2c3c22909a1897fe27e14dd/fastrlock-0.8.3-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:04bb5eef8f460d13b8c0084ea5a9d3aab2c0573991c880c0a34a56bb14951d30", size = 54553, upload-time = "2024-12-17T11:02:10.925Z" }, + { url = "https://files.pythonhosted.org/packages/c0/8f/65907405a8cdb2fc8beaf7d09a9a07bb58deff478ff391ca95be4f130b70/fastrlock-0.8.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c9d459ce344c21ff03268212a1845aa37feab634d242131bc16c2a2355d5f65", size = 53362, upload-time = "2024-12-17T11:02:12.476Z" }, + { url = "https://files.pythonhosted.org/packages/ec/b9/ae6511e52738ba4e3a6adb7c6a20158573fbc98aab448992ece25abb0b07/fastrlock-0.8.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33e6fa4af4f3af3e9c747ec72d1eadc0b7ba2035456c2afb51c24d9e8a56f8fd", size = 52836, upload-time = "2024-12-17T11:02:13.74Z" }, + { url = "https://files.pythonhosted.org/packages/88/3e/c26f8192c93e8e43b426787cec04bb46ac36e72b1033b7fe5a9267155fdf/fastrlock-0.8.3-cp311-cp311-win_amd64.whl", hash = "sha256:5e5f1665d8e70f4c5b4a67f2db202f354abc80a321ce5a26ac1493f055e3ae2c", size = 31046, upload-time = "2024-12-17T11:02:15.033Z" }, + { url = "https://files.pythonhosted.org/packages/00/df/56270f2e10c1428855c990e7a7e5baafa9e1262b8e789200bd1d047eb501/fastrlock-0.8.3-cp312-cp312-macosx_11_0_universal2.whl", hash = "sha256:8cb2cf04352ea8575d496f31b3b88c42c7976e8e58cdd7d1550dfba80ca039da", size = 55727, upload-time = "2024-12-17T11:02:17.26Z" }, + { url = "https://files.pythonhosted.org/packages/57/21/ea1511b0ef0d5457efca3bf1823effb9c5cad4fc9dca86ce08e4d65330ce/fastrlock-0.8.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:85a49a1f1e020097d087e1963e42cea6f307897d5ebe2cb6daf4af47ffdd3eed", size = 52201, upload-time = "2024-12-17T11:02:19.512Z" }, + { url = "https://files.pythonhosted.org/packages/80/07/cdecb7aa976f34328372f1c4efd6c9dc1b039b3cc8d3f38787d640009a25/fastrlock-0.8.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5f13ec08f1adb1aa916c384b05ecb7dbebb8df9ea81abd045f60941c6283a670", size = 53924, upload-time = "2024-12-17T11:02:20.85Z" }, + { url = "https://files.pythonhosted.org/packages/88/6d/59c497f8db9a125066dd3a7442fab6aecbe90d6fec344c54645eaf311666/fastrlock-0.8.3-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0ea4e53a04980d646def0f5e4b5e8bd8c7884288464acab0b37ca0c65c482bfe", size = 52140, upload-time = "2024-12-17T11:02:22.263Z" }, + { url = "https://files.pythonhosted.org/packages/62/04/9138943c2ee803d62a48a3c17b69de2f6fa27677a6896c300369e839a550/fastrlock-0.8.3-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:38340f6635bd4ee2a4fb02a3a725759fe921f2ca846cb9ca44531ba739cc17b4", size = 53261, upload-time = "2024-12-17T11:02:24.418Z" }, + { url = "https://files.pythonhosted.org/packages/e2/4b/db35a52589764c7745a613b6943bbd018f128d42177ab92ee7dde88444f6/fastrlock-0.8.3-cp312-cp312-win_amd64.whl", hash = "sha256:da06d43e1625e2ffddd303edcd6d2cd068e1c486f5fd0102b3f079c44eb13e2c", size = 31235, upload-time = "2024-12-17T11:02:25.708Z" }, + { url = "https://files.pythonhosted.org/packages/92/74/7b13d836c3f221cff69d6f418f46c2a30c4b1fe09a8ce7db02eecb593185/fastrlock-0.8.3-cp313-cp313-macosx_11_0_universal2.whl", hash = "sha256:5264088185ca8e6bc83181dff521eee94d078c269c7d557cc8d9ed5952b7be45", size = 54157, upload-time = "2024-12-17T11:02:29.196Z" }, + { url = "https://files.pythonhosted.org/packages/06/77/f06a907f9a07d26d0cca24a4385944cfe70d549a2c9f1c3e3217332f4f12/fastrlock-0.8.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4a98ba46b3e14927550c4baa36b752d0d2f7387b8534864a8767f83cce75c160", size = 50954, upload-time = "2024-12-17T11:02:32.12Z" }, + { url = "https://files.pythonhosted.org/packages/f9/4e/94480fb3fd93991dd6f4e658b77698edc343f57caa2870d77b38c89c2e3b/fastrlock-0.8.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dbdea6deeccea1917c6017d353987231c4e46c93d5338ca3e66d6cd88fbce259", size = 52535, upload-time = "2024-12-17T11:02:33.402Z" }, + { url = "https://files.pythonhosted.org/packages/7d/a7/ee82bb55b6c0ca30286dac1e19ee9417a17d2d1de3b13bb0f20cefb86086/fastrlock-0.8.3-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c6e5bfecbc0d72ff07e43fed81671747914d6794e0926700677ed26d894d4f4f", size = 50942, upload-time = "2024-12-17T11:02:34.688Z" }, + { url = "https://files.pythonhosted.org/packages/63/1d/d4b7782ef59e57dd9dde69468cc245adafc3674281905e42fa98aac30a79/fastrlock-0.8.3-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:2a83d558470c520ed21462d304e77a12639859b205759221c8144dd2896b958a", size = 52044, upload-time = "2024-12-17T11:02:36.613Z" }, + { url = "https://files.pythonhosted.org/packages/28/a3/2ad0a0a69662fd4cf556ab8074f0de978ee9b56bff6ddb4e656df4aa9e8e/fastrlock-0.8.3-cp313-cp313-win_amd64.whl", hash = "sha256:8d1d6a28291b4ace2a66bd7b49a9ed9c762467617febdd9ab356b867ed901af8", size = 30472, upload-time = "2024-12-17T11:02:37.983Z" }, +] + [[package]] name = "ffmpy" version = "1.0.0" @@ -1909,17 +2480,18 @@ dependencies = [ { name = "accelerate" }, { name = "datasets" }, { name = "ir-datasets" }, - { name = "peft", version = "0.17.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "peft", version = "0.18.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "peft", version = "0.17.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "peft", version = "0.18.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, { name = "protobuf" }, { name = "sentence-transformers" }, { name = "sentencepiece" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/87/4e/3ab7a407b04581fd42e87f9fa02eb17117dc9f5e923c3d67dc8ea7acea43/FlagEmbedding-1.3.4.tar.gz", hash = "sha256:ea49794a08dd186110573c38582f242907d42f12e692b5206a03a45621b9311d", size = 163755, upload-time = "2025-02-07T13:41:43.837Z" } @@ -1929,11 +2501,36 @@ version = "2.8.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "einops" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/3b/b2/8d76c41ad7974ee264754709c22963447f7f8134613fd9ce80984ed0dab7/flash_attn-2.8.3.tar.gz", hash = "sha256:1e71dd64a9e0280e0447b8a0c2541bad4bf6ac65bdeaa2f90e51a9e57de0370d", size = 8447812, upload-time = "2025-08-15T08:28:12.911Z" } +[[package]] +name = "flashinfer-python" +version = "0.5.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "apache-tvm-ffi" }, + { name = "click" }, + { name = "einops" }, + { name = "ninja" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "nvidia-cudnn-frontend" }, + { name = "nvidia-cutlass-dsl" }, + { name = "nvidia-ml-py" }, + { name = "packaging" }, + { name = "requests" }, + { name = "tabulate" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" } }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b4/91/cca69baeff24bb3efd12c7479a026432c8717ee47193694010494c528b22/flashinfer_python-0.5.3.tar.gz", hash = "sha256:100d59b0ede47878d2808cd3a1b9039d7a952d66338bc9f68dac192ae1b2e3f1", size = 4682367, upload-time = "2025-11-20T21:22:46.976Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/76/78/6dc7e7da8cb87c9965644ea0d2439457a1bc9256c45ceda0044595be4143/flashinfer_python-0.5.3-py3-none-any.whl", hash = "sha256:b601293b72f9138bad173edc28df84b9f239a013be974e2e79d4ba98aeb38cf5", size = 6998069, upload-time = "2025-11-20T21:22:45.104Z" }, +] + [[package]] name = "fonttools" version = "4.61.0" @@ -2138,6 +2735,20 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ab/6e/81d47999aebc1b155f81eca4477a616a70f238a2549848c38983f3c22a82/ftfy-6.3.1-py3-none-any.whl", hash = "sha256:7c70eb532015cd2f9adb53f101fb6c7945988d023a085d127d1573dc49dd0083", size = 44821, upload-time = "2024-10-26T00:50:33.425Z" }, ] +[[package]] +name = "gguf" +version = "0.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "pyyaml" }, + { name = "tqdm" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/08/08/7de1ca4b71e7bf33b547f82bb22505e221b5fa42f67d635e200e0ad22ad6/gguf-0.17.1.tar.gz", hash = "sha256:36ad71aad900a3e75fc94ebe96ea6029f03a4e44be7627ef7ad3d03e8c7bcb53", size = 89338, upload-time = "2025-06-19T14:00:33.705Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fc/31/6a93a887617ee7deeaa602ca3d02d1c12a6cb8a742a695de5d128f5fa46a/gguf-0.17.1-py3-none-any.whl", hash = "sha256:7bc5aa7eeb1931f7d39b48fdc5b38fda6b294b9dca75cf607ac69557840a3943", size = 96224, upload-time = "2025-06-19T14:00:32.88Z" }, +] + [[package]] name = "ghp-import" version = "2.1.0" @@ -2368,7 +2979,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "aiofiles" }, { name = "anyio" }, - { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "audioop-lts", marker = "python_full_version >= '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "brotli" }, { name = "fastapi" }, { name = "ffmpy" }, @@ -2378,8 +2989,8 @@ dependencies = [ { name = "huggingface-hub" }, { name = "jinja2" }, { name = "markupsafe" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "orjson" }, { name = "packaging" }, { name = "pandas" }, @@ -2437,10 +3048,10 @@ dependencies = [ { name = "accelerate" }, { name = "datasets" }, { name = "mteb" }, - { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, { name = "wandb" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d9/f0/046cd4ff54a9aae266f606b915509b68da81568c2ff49d67bee178b39789/gritlm-1.0.2.tar.gz", hash = "sha256:354dfdf83ab8f4f3d64a6213db22e9c4e08abfae802bd01883fe7df92ff80e81", size = 40362, upload-time = "2024-08-01T17:23:16.667Z" } @@ -2629,6 +3240,49 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/7e/f5/f66802a942d491edb555dd61e3a9961140fd64c90bce1eafd741609d334d/httpcore-1.0.9-py3-none-any.whl", hash = "sha256:2d400746a40668fc9dec9810239072b40b4484b640a8c38fd654a024c7a1bf55", size = 78784, upload-time = "2025-04-24T22:06:20.566Z" }, ] +[[package]] +name = "httptools" +version = "0.7.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b5/46/120a669232c7bdedb9d52d4aeae7e6c7dfe151e99dc70802e2fc7a5e1993/httptools-0.7.1.tar.gz", hash = "sha256:abd72556974f8e7c74a259655924a717a2365b236c882c3f6f8a45fe94703ac9", size = 258961, upload-time = "2025-10-10T03:55:08.559Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c7/e5/c07e0bcf4ec8db8164e9f6738c048b2e66aabf30e7506f440c4cc6953f60/httptools-0.7.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:11d01b0ff1fe02c4c32d60af61a4d613b74fad069e47e06e9067758c01e9ac78", size = 204531, upload-time = "2025-10-10T03:54:20.887Z" }, + { url = "https://files.pythonhosted.org/packages/7e/4f/35e3a63f863a659f92ffd92bef131f3e81cf849af26e6435b49bd9f6f751/httptools-0.7.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:84d86c1e5afdc479a6fdabf570be0d3eb791df0ae727e8dbc0259ed1249998d4", size = 109408, upload-time = "2025-10-10T03:54:22.455Z" }, + { url = "https://files.pythonhosted.org/packages/f5/71/b0a9193641d9e2471ac541d3b1b869538a5fb6419d52fd2669fa9c79e4b8/httptools-0.7.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:c8c751014e13d88d2be5f5f14fc8b89612fcfa92a9cc480f2bc1598357a23a05", size = 440889, upload-time = "2025-10-10T03:54:23.753Z" }, + { url = "https://files.pythonhosted.org/packages/eb/d9/2e34811397b76718750fea44658cb0205b84566e895192115252e008b152/httptools-0.7.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:654968cb6b6c77e37b832a9be3d3ecabb243bbe7a0b8f65fbc5b6b04c8fcabed", size = 440460, upload-time = "2025-10-10T03:54:25.313Z" }, + { url = "https://files.pythonhosted.org/packages/01/3f/a04626ebeacc489866bb4d82362c0657b2262bef381d68310134be7f40bb/httptools-0.7.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b580968316348b474b020edf3988eecd5d6eec4634ee6561e72ae3a2a0e00a8a", size = 425267, upload-time = "2025-10-10T03:54:26.81Z" }, + { url = "https://files.pythonhosted.org/packages/a5/99/adcd4f66614db627b587627c8ad6f4c55f18881549bab10ecf180562e7b9/httptools-0.7.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:d496e2f5245319da9d764296e86c5bb6fcf0cf7a8806d3d000717a889c8c0b7b", size = 424429, upload-time = "2025-10-10T03:54:28.174Z" }, + { url = "https://files.pythonhosted.org/packages/d5/72/ec8fc904a8fd30ba022dfa85f3bbc64c3c7cd75b669e24242c0658e22f3c/httptools-0.7.1-cp310-cp310-win_amd64.whl", hash = "sha256:cbf8317bfccf0fed3b5680c559d3459cccf1abe9039bfa159e62e391c7270568", size = 86173, upload-time = "2025-10-10T03:54:29.5Z" }, + { url = "https://files.pythonhosted.org/packages/9c/08/17e07e8d89ab8f343c134616d72eebfe03798835058e2ab579dcc8353c06/httptools-0.7.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:474d3b7ab469fefcca3697a10d11a32ee2b9573250206ba1e50d5980910da657", size = 206521, upload-time = "2025-10-10T03:54:31.002Z" }, + { url = "https://files.pythonhosted.org/packages/aa/06/c9c1b41ff52f16aee526fd10fbda99fa4787938aa776858ddc4a1ea825ec/httptools-0.7.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a3c3b7366bb6c7b96bd72d0dbe7f7d5eead261361f013be5f6d9590465ea1c70", size = 110375, upload-time = "2025-10-10T03:54:31.941Z" }, + { url = "https://files.pythonhosted.org/packages/cc/cc/10935db22fda0ee34c76f047590ca0a8bd9de531406a3ccb10a90e12ea21/httptools-0.7.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:379b479408b8747f47f3b253326183d7c009a3936518cdb70db58cffd369d9df", size = 456621, upload-time = "2025-10-10T03:54:33.176Z" }, + { url = "https://files.pythonhosted.org/packages/0e/84/875382b10d271b0c11aa5d414b44f92f8dd53e9b658aec338a79164fa548/httptools-0.7.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:cad6b591a682dcc6cf1397c3900527f9affef1e55a06c4547264796bbd17cf5e", size = 454954, upload-time = "2025-10-10T03:54:34.226Z" }, + { url = "https://files.pythonhosted.org/packages/30/e1/44f89b280f7e46c0b1b2ccee5737d46b3bb13136383958f20b580a821ca0/httptools-0.7.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:eb844698d11433d2139bbeeb56499102143beb582bd6c194e3ba69c22f25c274", size = 440175, upload-time = "2025-10-10T03:54:35.942Z" }, + { url = "https://files.pythonhosted.org/packages/6f/7e/b9287763159e700e335028bc1824359dc736fa9b829dacedace91a39b37e/httptools-0.7.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:f65744d7a8bdb4bda5e1fa23e4ba16832860606fcc09d674d56e425e991539ec", size = 440310, upload-time = "2025-10-10T03:54:37.1Z" }, + { url = "https://files.pythonhosted.org/packages/b3/07/5b614f592868e07f5c94b1f301b5e14a21df4e8076215a3bccb830a687d8/httptools-0.7.1-cp311-cp311-win_amd64.whl", hash = "sha256:135fbe974b3718eada677229312e97f3b31f8a9c8ffa3ae6f565bf808d5b6bcb", size = 86875, upload-time = "2025-10-10T03:54:38.421Z" }, + { url = "https://files.pythonhosted.org/packages/53/7f/403e5d787dc4942316e515e949b0c8a013d84078a915910e9f391ba9b3ed/httptools-0.7.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:38e0c83a2ea9746ebbd643bdfb521b9aa4a91703e2cd705c20443405d2fd16a5", size = 206280, upload-time = "2025-10-10T03:54:39.274Z" }, + { url = "https://files.pythonhosted.org/packages/2a/0d/7f3fd28e2ce311ccc998c388dd1c53b18120fda3b70ebb022b135dc9839b/httptools-0.7.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:f25bbaf1235e27704f1a7b86cd3304eabc04f569c828101d94a0e605ef7205a5", size = 110004, upload-time = "2025-10-10T03:54:40.403Z" }, + { url = "https://files.pythonhosted.org/packages/84/a6/b3965e1e146ef5762870bbe76117876ceba51a201e18cc31f5703e454596/httptools-0.7.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2c15f37ef679ab9ecc06bfc4e6e8628c32a8e4b305459de7cf6785acd57e4d03", size = 517655, upload-time = "2025-10-10T03:54:41.347Z" }, + { url = "https://files.pythonhosted.org/packages/11/7d/71fee6f1844e6fa378f2eddde6c3e41ce3a1fb4b2d81118dd544e3441ec0/httptools-0.7.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7fe6e96090df46b36ccfaf746f03034e5ab723162bc51b0a4cf58305324036f2", size = 511440, upload-time = "2025-10-10T03:54:42.452Z" }, + { url = "https://files.pythonhosted.org/packages/22/a5/079d216712a4f3ffa24af4a0381b108aa9c45b7a5cc6eb141f81726b1823/httptools-0.7.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f72fdbae2dbc6e68b8239defb48e6a5937b12218e6ffc2c7846cc37befa84362", size = 495186, upload-time = "2025-10-10T03:54:43.937Z" }, + { url = "https://files.pythonhosted.org/packages/e9/9e/025ad7b65278745dee3bd0ebf9314934c4592560878308a6121f7f812084/httptools-0.7.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:e99c7b90a29fd82fea9ef57943d501a16f3404d7b9ee81799d41639bdaae412c", size = 499192, upload-time = "2025-10-10T03:54:45.003Z" }, + { url = "https://files.pythonhosted.org/packages/6d/de/40a8f202b987d43afc4d54689600ff03ce65680ede2f31df348d7f368b8f/httptools-0.7.1-cp312-cp312-win_amd64.whl", hash = "sha256:3e14f530fefa7499334a79b0cf7e7cd2992870eb893526fb097d51b4f2d0f321", size = 86694, upload-time = "2025-10-10T03:54:45.923Z" }, + { url = "https://files.pythonhosted.org/packages/09/8f/c77b1fcbfd262d422f12da02feb0d218fa228d52485b77b953832105bb90/httptools-0.7.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:6babce6cfa2a99545c60bfef8bee0cc0545413cb0018f617c8059a30ad985de3", size = 202889, upload-time = "2025-10-10T03:54:47.089Z" }, + { url = "https://files.pythonhosted.org/packages/0a/1a/22887f53602feaa066354867bc49a68fc295c2293433177ee90870a7d517/httptools-0.7.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:601b7628de7504077dd3dcb3791c6b8694bbd967148a6d1f01806509254fb1ca", size = 108180, upload-time = "2025-10-10T03:54:48.052Z" }, + { url = "https://files.pythonhosted.org/packages/32/6a/6aaa91937f0010d288d3d124ca2946d48d60c3a5ee7ca62afe870e3ea011/httptools-0.7.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:04c6c0e6c5fb0739c5b8a9eb046d298650a0ff38cf42537fc372b28dc7e4472c", size = 478596, upload-time = "2025-10-10T03:54:48.919Z" }, + { url = "https://files.pythonhosted.org/packages/6d/70/023d7ce117993107be88d2cbca566a7c1323ccbaf0af7eabf2064fe356f6/httptools-0.7.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:69d4f9705c405ae3ee83d6a12283dc9feba8cc6aaec671b412917e644ab4fa66", size = 473268, upload-time = "2025-10-10T03:54:49.993Z" }, + { url = "https://files.pythonhosted.org/packages/32/4d/9dd616c38da088e3f436e9a616e1d0cc66544b8cdac405cc4e81c8679fc7/httptools-0.7.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:44c8f4347d4b31269c8a9205d8a5ee2df5322b09bbbd30f8f862185bb6b05346", size = 455517, upload-time = "2025-10-10T03:54:51.066Z" }, + { url = "https://files.pythonhosted.org/packages/1d/3a/a6c595c310b7df958e739aae88724e24f9246a514d909547778d776799be/httptools-0.7.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:465275d76db4d554918aba40bf1cbebe324670f3dfc979eaffaa5d108e2ed650", size = 458337, upload-time = "2025-10-10T03:54:52.196Z" }, + { url = "https://files.pythonhosted.org/packages/fd/82/88e8d6d2c51edc1cc391b6e044c6c435b6aebe97b1abc33db1b0b24cd582/httptools-0.7.1-cp313-cp313-win_amd64.whl", hash = "sha256:322d00c2068d125bd570f7bf78b2d367dad02b919d8581d7476d8b75b294e3e6", size = 85743, upload-time = "2025-10-10T03:54:53.448Z" }, + { url = "https://files.pythonhosted.org/packages/34/50/9d095fcbb6de2d523e027a2f304d4551855c2f46e0b82befd718b8b20056/httptools-0.7.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:c08fe65728b8d70b6923ce31e3956f859d5e1e8548e6f22ec520a962c6757270", size = 203619, upload-time = "2025-10-10T03:54:54.321Z" }, + { url = "https://files.pythonhosted.org/packages/07/f0/89720dc5139ae54b03f861b5e2c55a37dba9a5da7d51e1e824a1f343627f/httptools-0.7.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:7aea2e3c3953521c3c51106ee11487a910d45586e351202474d45472db7d72d3", size = 108714, upload-time = "2025-10-10T03:54:55.163Z" }, + { url = "https://files.pythonhosted.org/packages/b3/cb/eea88506f191fb552c11787c23f9a405f4c7b0c5799bf73f2249cd4f5228/httptools-0.7.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0e68b8582f4ea9166be62926077a3334064d422cf08ab87d8b74664f8e9058e1", size = 472909, upload-time = "2025-10-10T03:54:56.056Z" }, + { url = "https://files.pythonhosted.org/packages/e0/4a/a548bdfae6369c0d078bab5769f7b66f17f1bfaa6fa28f81d6be6959066b/httptools-0.7.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df091cf961a3be783d6aebae963cc9b71e00d57fa6f149025075217bc6a55a7b", size = 470831, upload-time = "2025-10-10T03:54:57.219Z" }, + { url = "https://files.pythonhosted.org/packages/4d/31/14df99e1c43bd132eec921c2e7e11cda7852f65619bc0fc5bdc2d0cb126c/httptools-0.7.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:f084813239e1eb403ddacd06a30de3d3e09a9b76e7894dcda2b22f8a726e9c60", size = 452631, upload-time = "2025-10-10T03:54:58.219Z" }, + { url = "https://files.pythonhosted.org/packages/22/d2/b7e131f7be8d854d48cb6d048113c30f9a46dca0c9a8b08fcb3fcd588cdc/httptools-0.7.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:7347714368fb2b335e9063bc2b96f2f87a9ceffcd9758ac295f8bbcd3ffbc0ca", size = 452910, upload-time = "2025-10-10T03:54:59.366Z" }, + { url = "https://files.pythonhosted.org/packages/53/cf/878f3b91e4e6e011eff6d1fa9ca39f7eb17d19c9d7971b04873734112f30/httptools-0.7.1-cp314-cp314-win_amd64.whl", hash = "sha256:cfabda2a5bb85aa2a904ce06d974a3f30fb36cc63d7feaddec05d2050acede96", size = 88205, upload-time = "2025-10-10T03:55:00.389Z" }, +] + [[package]] name = "httpx" version = "0.27.2" @@ -2661,7 +3315,7 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "filelock" }, { name = "fsspec" }, - { name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "hf-xet", marker = "platform_machine == 'aarch64' or platform_machine == 'amd64' or platform_machine == 'arm64' or platform_machine == 'x86_64' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pyyaml" }, { name = "requests" }, @@ -2787,8 +3441,8 @@ name = "imageio" version = "2.37.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "pillow" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a3/6f/606be632e37bf8d05b253e8626c2291d74c691ddc7bcdf7d6aaf33b32f6a/imageio-2.37.2.tar.gz", hash = "sha256:0212ef2727ac9caa5ca4b2c75ae89454312f440a756fcfc8ef1993e718f50f8a", size = 389600, upload-time = "2025-11-04T14:29:39.898Z" } @@ -2818,6 +3472,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3d/e3/08458a4bed3f04ee1ca16809b6c45907198c587b3b18dd3d37ac18cd180b/inscriptis-2.7.0-py3-none-any.whl", hash = "sha256:db368f67e7c0624df2fdff7bee1c3a74e795ff536fabce252e3ff29f9c28c23e", size = 45592, upload-time = "2025-11-18T12:16:15.171Z" }, ] +[[package]] +name = "interegular" +version = "0.3.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/dc/9d/8b6dde58a028a3962ce17e84d5fe73758df61378e00ef8ac3d85da34b0ff/interegular-0.3.3.tar.gz", hash = "sha256:d9b697b21b34884711399ba0f0376914b81899ce670032486d0d048344a76600", size = 24705, upload-time = "2024-01-06T23:01:22.372Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c4/01/72d6472f80651673716d1deda2a5bbb633e563ecf94f4479da5519d69d25/interegular-0.3.3-py37-none-any.whl", hash = "sha256:b0c07007d48c89d6d19f7204972d369b2a77222722e126b6aa63aa721dc3b19c", size = 23635, upload-time = "2024-01-06T23:01:20.829Z" }, +] + [[package]] name = "iopath" version = "0.1.10" @@ -2863,11 +3526,11 @@ version = "9.8.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')", "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", @@ -2919,8 +3582,8 @@ dependencies = [ { name = "inscriptis" }, { name = "lxml" }, { name = "lz4" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "pyarrow" }, { name = "pyyaml" }, { name = "requests" }, @@ -3063,6 +3726,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2f/9c/6753e6522b8d0ef07d3a3d239426669e984fb0eba15a315cdbc1253904e4/jiter-0.12.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c24e864cb30ab82311c6425655b0cdab0a98c5d973b065c66a3f020740c2324c", size = 346110, upload-time = "2025-11-09T20:49:21.817Z" }, ] +[[package]] +name = "jmespath" +version = "1.0.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843, upload-time = "2022-06-17T18:00:12.224Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256, upload-time = "2022-06-17T18:00:10.251Z" }, +] + [[package]] name = "joblib" version = "1.5.2" @@ -3170,11 +3842,11 @@ version = "1.8.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')", "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", @@ -3365,7 +4037,7 @@ version = "0.4.56" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "httpx" }, - { name = "orjson", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "orjson", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pydantic" }, { name = "requests" }, @@ -3378,6 +4050,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b8/6f/d5f9c4f1e03c91045d3675dc99df0682bc657952ad158c92c1f423de04f4/langsmith-0.4.56-py3-none-any.whl", hash = "sha256:f2c61d3f10210e78f16f77e3115f407d40f562ab00ac8c76927c7dd55b5c17b2", size = 411849, upload-time = "2025-12-06T00:15:50.828Z" }, ] +[[package]] +name = "lark" +version = "1.2.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/af/60/bc7622aefb2aee1c0b4ba23c1446d3e30225c8770b38d7aedbfb65ca9d5a/lark-1.2.2.tar.gz", hash = "sha256:ca807d0162cd16cef15a8feecb862d7319e7a09bdb13aef927968e45040fed80", size = 252132, upload-time = "2024-08-13T19:49:00.652Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/2d/00/d90b10b962b4277f5e64a78b6609968859ff86889f5b898c1a778c06ec00/lark-1.2.2-py3-none-any.whl", hash = "sha256:c2276486b02f0f1b90be155f2c8ba4a8e194d42775786db622faccd652d8e80c", size = 111036, upload-time = "2024-08-13T19:48:58.603Z" }, +] + [[package]] name = "latexcodec" version = "3.0.1" @@ -3472,6 +4153,21 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/de/0c/6605b6199de8178afe7efc77ca1d8e6db00453bc1d3349d27605c0f42104/librt-0.7.3-cp314-cp314t-win_arm64.whl", hash = "sha256:a9f9b661f82693eb56beb0605156c7fca57f535704ab91837405913417d6990b", size = 45647, upload-time = "2025-12-06T19:04:31.302Z" }, ] +[[package]] +name = "llguidance" +version = "1.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/95/48/3f7a9d3ff1b36bba92b5107a3a21286821227afe9ea464736133994d61fb/llguidance-1.3.0.tar.gz", hash = "sha256:861249afd51dc325646834462ea827e57a5c2b2042e108e6aae7059fdad9104d", size = 1070460, upload-time = "2025-10-20T19:58:44.164Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/3b/33/be5acb85cd8cdc4afde33d9c234eece9f318e087920255af3c05864cd3e7/llguidance-1.3.0-cp39-abi3-macosx_10_12_x86_64.whl", hash = "sha256:f7685222660a762e481ac633d49cc559c64980fe2ee59c8f932a5bb5cbc0c2c2", size = 3220647, upload-time = "2025-10-20T19:58:42.542Z" }, + { url = "https://files.pythonhosted.org/packages/82/e6/b48bda5b15efeaeb62bd0dba8fc6a01d4ae5457a85dbb5d18632385fe15c/llguidance-1.3.0-cp39-abi3-macosx_11_0_arm64.whl", hash = "sha256:098030ff0687261a3f1bd54cf21fe951fc861d56d37a0671250dd36677eaf224", size = 3099830, upload-time = "2025-10-20T19:58:40.826Z" }, + { url = "https://files.pythonhosted.org/packages/aa/11/44389d3d1526d7a5c38ffd587a5ebc61d7bee443ac1dea95f2089ad58f5f/llguidance-1.3.0-cp39-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6f6caca5d78db7f76e1fbb0fff8607b861c32d47fa3d5dee2fc49de27ee269df", size = 2835242, upload-time = "2025-10-20T19:58:34.518Z" }, + { url = "https://files.pythonhosted.org/packages/e7/ca/53ea256396405e4dee70d5a4a35e18543408e18bb16b251d6ca6b5d80310/llguidance-1.3.0-cp39-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0612bb3f034d2487b6e8f9561f02a94a6039d88273bf0c5c539a3bd3895e47d2", size = 3297480, upload-time = "2025-10-20T19:58:37.033Z" }, + { url = "https://files.pythonhosted.org/packages/83/a8/1ff2bedb8f9acb46a2d2d603415d272bb622c142ea86f5b95445cc6e366c/llguidance-1.3.0-cp39-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc17e9dd602c3879bf91664a64bf72f54c74dbfbeb24ccfab6a5fe435b12f7aa", size = 3033133, upload-time = "2025-10-20T19:58:38.721Z" }, + { url = "https://files.pythonhosted.org/packages/d7/a7/9b8086c0cfdddf3f6d47b173a404fa7ac46272f7affbee082c36740f4f1c/llguidance-1.3.0-cp39-abi3-win32.whl", hash = "sha256:2f6f558485a43e273fc5c6c974a9a3ace5d5e170076db9b40e0560e41c3ff18f", size = 2598109, upload-time = "2025-10-20T19:58:47.656Z" }, + { url = "https://files.pythonhosted.org/packages/5a/7e/809349638231f469b9056c0e1bfd924d5ef5558b3b3ec72d093b6fad33b1/llguidance-1.3.0-cp39-abi3-win_amd64.whl", hash = "sha256:1d1cd1c8618d1a13605d3e057c978651e551c8c469b481ee4041f1d6c436002d", size = 2789946, upload-time = "2025-10-20T19:58:45.958Z" }, +] + [[package]] name = "llm2vec" version = "0.2.3" @@ -3479,17 +4175,73 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "datasets" }, { name = "evaluate" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "peft", version = "0.18.0", source = { registry = "https://pypi.org/simple" } }, { name = "scikit-learn" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "tqdm" }, { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" } }, ] sdist = { url = "https://files.pythonhosted.org/packages/79/45/4b71b3d3112d7cb17e9e221ef0a2acd35563f206d7d22ddcf13f460c78c6/llm2vec-0.2.3.tar.gz", hash = "sha256:4ab7491478147da03f07ce54d245670c72cb09e47d4de0c8752ef008416d35fc", size = 27745, upload-time = "2025-01-24T20:10:06.422Z" } +[[package]] +name = "llvmlite" +version = "0.44.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/89/6a/95a3d3610d5c75293d5dbbb2a76480d5d4eeba641557b69fe90af6c5b84e/llvmlite-0.44.0.tar.gz", hash = "sha256:07667d66a5d150abed9157ab6c0b9393c9356f229784a4385c02f99e94fc94d4", size = 171880, upload-time = "2025-01-20T11:14:41.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/41/75/d4863ddfd8ab5f6e70f4504cf8cc37f4e986ec6910f4ef8502bb7d3c1c71/llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9fbadbfba8422123bab5535b293da1cf72f9f478a65645ecd73e781f962ca614", size = 28132306, upload-time = "2025-01-20T11:12:18.634Z" }, + { url = "https://files.pythonhosted.org/packages/37/d9/6e8943e1515d2f1003e8278819ec03e4e653e2eeb71e4d00de6cfe59424e/llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cccf8eb28f24840f2689fb1a45f9c0f7e582dd24e088dcf96e424834af11f791", size = 26201096, upload-time = "2025-01-20T11:12:24.544Z" }, + { url = "https://files.pythonhosted.org/packages/aa/46/8ffbc114def88cc698906bf5acab54ca9fdf9214fe04aed0e71731fb3688/llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7202b678cdf904823c764ee0fe2dfe38a76981f4c1e51715b4cb5abb6cf1d9e8", size = 42361859, upload-time = "2025-01-20T11:12:31.839Z" }, + { url = "https://files.pythonhosted.org/packages/30/1c/9366b29ab050a726af13ebaae8d0dff00c3c58562261c79c635ad4f5eb71/llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:40526fb5e313d7b96bda4cbb2c85cd5374e04d80732dd36a282d72a560bb6408", size = 41184199, upload-time = "2025-01-20T11:12:40.049Z" }, + { url = "https://files.pythonhosted.org/packages/69/07/35e7c594b021ecb1938540f5bce543ddd8713cff97f71d81f021221edc1b/llvmlite-0.44.0-cp310-cp310-win_amd64.whl", hash = "sha256:41e3839150db4330e1b2716c0be3b5c4672525b4c9005e17c7597f835f351ce2", size = 30332381, upload-time = "2025-01-20T11:12:47.054Z" }, + { url = "https://files.pythonhosted.org/packages/b5/e2/86b245397052386595ad726f9742e5223d7aea999b18c518a50e96c3aca4/llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:eed7d5f29136bda63b6d7804c279e2b72e08c952b7c5df61f45db408e0ee52f3", size = 28132305, upload-time = "2025-01-20T11:12:53.936Z" }, + { url = "https://files.pythonhosted.org/packages/ff/ec/506902dc6870249fbe2466d9cf66d531265d0f3a1157213c8f986250c033/llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ace564d9fa44bb91eb6e6d8e7754977783c68e90a471ea7ce913bff30bd62427", size = 26201090, upload-time = "2025-01-20T11:12:59.847Z" }, + { url = "https://files.pythonhosted.org/packages/99/fe/d030f1849ebb1f394bb3f7adad5e729b634fb100515594aca25c354ffc62/llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5d22c3bfc842668168a786af4205ec8e3ad29fb1bc03fd11fd48460d0df64c1", size = 42361858, upload-time = "2025-01-20T11:13:07.623Z" }, + { url = "https://files.pythonhosted.org/packages/d7/7a/ce6174664b9077fc673d172e4c888cb0b128e707e306bc33fff8c2035f0d/llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f01a394e9c9b7b1d4e63c327b096d10f6f0ed149ef53d38a09b3749dcf8c9610", size = 41184200, upload-time = "2025-01-20T11:13:20.058Z" }, + { url = "https://files.pythonhosted.org/packages/5f/c6/258801143975a6d09a373f2641237992496e15567b907a4d401839d671b8/llvmlite-0.44.0-cp311-cp311-win_amd64.whl", hash = "sha256:d8489634d43c20cd0ad71330dde1d5bc7b9966937a263ff1ec1cebb90dc50955", size = 30331193, upload-time = "2025-01-20T11:13:26.976Z" }, + { url = "https://files.pythonhosted.org/packages/15/86/e3c3195b92e6e492458f16d233e58a1a812aa2bfbef9bdd0fbafcec85c60/llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:1d671a56acf725bf1b531d5ef76b86660a5ab8ef19bb6a46064a705c6ca80aad", size = 28132297, upload-time = "2025-01-20T11:13:32.57Z" }, + { url = "https://files.pythonhosted.org/packages/d6/53/373b6b8be67b9221d12b24125fd0ec56b1078b660eeae266ec388a6ac9a0/llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:5f79a728e0435493611c9f405168682bb75ffd1fbe6fc360733b850c80a026db", size = 26201105, upload-time = "2025-01-20T11:13:38.744Z" }, + { url = "https://files.pythonhosted.org/packages/cb/da/8341fd3056419441286c8e26bf436923021005ece0bff5f41906476ae514/llvmlite-0.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0143a5ef336da14deaa8ec26c5449ad5b6a2b564df82fcef4be040b9cacfea9", size = 42361901, upload-time = "2025-01-20T11:13:46.711Z" }, + { url = "https://files.pythonhosted.org/packages/53/ad/d79349dc07b8a395a99153d7ce8b01d6fcdc9f8231355a5df55ded649b61/llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d752f89e31b66db6f8da06df8b39f9b91e78c5feea1bf9e8c1fba1d1c24c065d", size = 41184247, upload-time = "2025-01-20T11:13:56.159Z" }, + { url = "https://files.pythonhosted.org/packages/e2/3b/a9a17366af80127bd09decbe2a54d8974b6d8b274b39bf47fbaedeec6307/llvmlite-0.44.0-cp312-cp312-win_amd64.whl", hash = "sha256:eae7e2d4ca8f88f89d315b48c6b741dcb925d6a1042da694aa16ab3dd4cbd3a1", size = 30332380, upload-time = "2025-01-20T11:14:02.442Z" }, + { url = "https://files.pythonhosted.org/packages/89/24/4c0ca705a717514c2092b18476e7a12c74d34d875e05e4d742618ebbf449/llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:319bddd44e5f71ae2689859b7203080716448a3cd1128fb144fe5c055219d516", size = 28132306, upload-time = "2025-01-20T11:14:09.035Z" }, + { url = "https://files.pythonhosted.org/packages/01/cf/1dd5a60ba6aee7122ab9243fd614abcf22f36b0437cbbe1ccf1e3391461c/llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:9c58867118bad04a0bb22a2e0068c693719658105e40009ffe95c7000fcde88e", size = 26201090, upload-time = "2025-01-20T11:14:15.401Z" }, + { url = "https://files.pythonhosted.org/packages/d2/1b/656f5a357de7135a3777bd735cc7c9b8f23b4d37465505bd0eaf4be9befe/llvmlite-0.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:46224058b13c96af1365290bdfebe9a6264ae62fb79b2b55693deed11657a8bf", size = 42361904, upload-time = "2025-01-20T11:14:22.949Z" }, + { url = "https://files.pythonhosted.org/packages/d8/e1/12c5f20cb9168fb3464a34310411d5ad86e4163c8ff2d14a2b57e5cc6bac/llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:aa0097052c32bf721a4efc03bd109d335dfa57d9bffb3d4c24cc680711b8b4fc", size = 41184245, upload-time = "2025-01-20T11:14:31.731Z" }, + { url = "https://files.pythonhosted.org/packages/d0/81/e66fc86539293282fd9cb7c9417438e897f369e79ffb62e1ae5e5154d4dd/llvmlite-0.44.0-cp313-cp313-win_amd64.whl", hash = "sha256:2fb7c4f2fb86cbae6dca3db9ab203eeea0e22d73b99bc2341cdf9de93612e930", size = 30331193, upload-time = "2025-01-20T11:14:38.578Z" }, +] + +[[package]] +name = "lm-format-enforcer" +version = "0.11.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "interegular" }, + { name = "packaging" }, + { name = "pydantic" }, + { name = "pyyaml" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/84/d5/41cd417ba7dfdbbcfe46cebf81fb3dfd7c591b89897560ad05bb410a465d/lm_format_enforcer-0.11.3.tar.gz", hash = "sha256:e68081c108719cce284a9bcc889709b26ffb085a1945b5eba3a12cfa96d528da", size = 40258, upload-time = "2025-08-24T19:37:47.527Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a0/ef/11292bb0b85cf4c93447cab5a29f64576ed14d3ab4280e35ddd23486594a/lm_format_enforcer-0.11.3-py3-none-any.whl", hash = "sha256:cf586350875def1ae7a8fba84fcbbfc8371424b6c9d05c1fcba70aa233fbf06f", size = 45418, upload-time = "2025-08-24T19:37:46.325Z" }, +] + +[[package]] +name = "loguru" +version = "0.7.3" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "win32-setctime", marker = "sys_platform == 'win32'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3a/05/a1dae3dffd1116099471c643b8924f5aa6524411dc6c63fdae648c4f1aca/loguru-0.7.3.tar.gz", hash = "sha256:19480589e77d47b8d85b2c827ad95d49bf31b0dcde16593892eb51dd18706eb6", size = 63559, upload-time = "2024-12-06T11:20:56.608Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0c/29/0348de65b8cc732daa3e33e67806420b2ae89bdce2b04af740289c5c6c8c/loguru-0.7.3-py3-none-any.whl", hash = "sha256:31a33c10c8e1e10422bfd431aeb5d351c7cf7fa671e3c4df004162264b28220c", size = 61595, upload-time = "2024-12-06T11:20:54.538Z" }, +] + [[package]] name = "lxml" version = "5.4.0" @@ -3739,13 +4491,13 @@ name = "matplotlib" version = "3.10.7" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "contourpy", version = "1.3.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "contourpy", version = "1.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "contourpy", version = "1.3.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "contourpy", version = "1.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "cycler" }, { name = "fonttools" }, { name = "kiwisolver" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pillow" }, { name = "pyparsing" }, @@ -3845,6 +4597,31 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/1b/01/7da60c9f7d5dc92dfa5e8888239fd0fb2613ee19e44e6db5c2ed5595fab3/maturin-1.10.2-py3-none-win_arm64.whl", hash = "sha256:a4c29a770ea2c76082e0afc6d4efd8ee94405588bfae00d10828f72e206c739b", size = 7506680, upload-time = "2025-11-19T11:53:15.403Z" }, ] +[[package]] +name = "mcp" +version = "1.25.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "httpx" }, + { name = "httpx-sse" }, + { name = "jsonschema" }, + { name = "pydantic" }, + { name = "pydantic-settings" }, + { name = "pyjwt", extra = ["crypto"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "python-multipart" }, + { name = "pywin32", marker = "sys_platform == 'win32'" }, + { name = "sse-starlette" }, + { name = "starlette" }, + { name = "typing-extensions" }, + { name = "typing-inspection" }, + { name = "uvicorn", marker = "sys_platform != 'emscripten'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d5/2d/649d80a0ecf6a1f82632ca44bec21c0461a9d9fc8934d38cb5b319f2db5e/mcp-1.25.0.tar.gz", hash = "sha256:56310361ebf0364e2d438e5b45f7668cbb124e158bb358333cd06e49e83a6802", size = 605387, upload-time = "2025-12-19T10:19:56.985Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e2/fc/6dc7659c2ae5ddf280477011f4213a74f806862856b796ef08f028e664bf/mcp-1.25.0-py3-none-any.whl", hash = "sha256:b37c38144a666add0862614cc79ec276e97d72aa8ca26d622818d4e278b9721a", size = 233076, upload-time = "2025-12-19T10:19:55.416Z" }, +] + [[package]] name = "mdurl" version = "0.1.2" @@ -3863,13 +4640,37 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2c/19/04f9b178c2d8a15b076c8b5140708fa6ffc5601fb6f1e975537072df5b2a/mergedeep-1.3.4-py3-none-any.whl", hash = "sha256:70775750742b25c0d8f36c55aed03d24c3384d17c951b3175d898bd778ef0307", size = 6354, upload-time = "2021-02-05T18:55:29.583Z" }, ] +[[package]] +name = "mistral-common" +version = "1.8.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jsonschema" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "pillow" }, + { name = "pydantic" }, + { name = "pydantic-extra-types", extra = ["pycountry"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "requests" }, + { name = "tiktoken" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/0a/bb/6fc2e46d9920c80f0d053d58be5b0546c18010ff3a5f9b9d91299226e989/mistral_common-1.8.8.tar.gz", hash = "sha256:8ae28b3f88bce1b9396f5d1107e5ea87e4130486b9f6d811df6d5ac07bff2186", size = 6337014, upload-time = "2025-12-22T10:51:47.245Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/73/02/c1866598c8e94a4d0593b73e6dec0afea722227b9b3223bf6bb8ab269fa7/mistral_common-1.8.8-py3-none-any.whl", hash = "sha256:f63ce79b1867b3fc7c8b66fcaedab3b07966185567558038dc02321c17e4f39f", size = 6518005, upload-time = "2025-12-22T10:51:44.88Z" }, +] + +[package.optional-dependencies] +image = [ + { name = "opencv-python-headless", version = "4.12.0.88", source = { registry = "https://pypi.org/simple" } }, +] + [[package]] name = "mkdocs" version = "1.6.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "click" }, - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "ghp-import" }, { name = "jinja2" }, { name = "markdown" }, @@ -4010,13 +4811,94 @@ dependencies = [ { name = "griffe" }, { name = "mkdocs-autorefs" }, { name = "mkdocstrings" }, - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/24/75/d30af27a2906f00eb90143470272376d728521997800f5dce5b340ba35bc/mkdocstrings_python-2.0.1.tar.gz", hash = "sha256:843a562221e6a471fefdd4b45cc6c22d2607ccbad632879234fa9692e9cf7732", size = 199345, upload-time = "2025-12-03T14:26:11.755Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/81/06/c5f8deba7d2cbdfa7967a716ae801aa9ca5f734b8f54fd473ef77a088dbe/mkdocstrings_python-2.0.1-py3-none-any.whl", hash = "sha256:66ecff45c5f8b71bf174e11d49afc845c2dfc7fc0ab17a86b6b337e0f24d8d90", size = 105055, upload-time = "2025-12-03T14:26:10.184Z" }, ] +[[package]] +name = "mlx" +version = "0.30.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mlx-metal", marker = "sys_platform == 'darwin'" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/cd/8d/16a34feb957ac33525b9b787b5132053a44bc94d1bf40c18639f6e05cd2a/mlx-0.30.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:391c650f0578ce359c8cffddb204b42798b622f9ee2b57b865d87716c00db536", size = 592926, upload-time = "2025-12-18T01:55:28.757Z" }, + { url = "https://files.pythonhosted.org/packages/34/e6/0661455f5f4bd9de257874b28a96a33699d36a1e17ccde821341c0ac1c0e/mlx-0.30.1-cp310-cp310-macosx_15_0_arm64.whl", hash = "sha256:42fefcad72d7488c65649e152a1b28f00c2033d38121afa45ce65ae16ec6b988", size = 592926, upload-time = "2025-12-18T01:55:30.141Z" }, + { url = "https://files.pythonhosted.org/packages/d8/37/a322af7dba9101064b5e858d1208e0e66cd83be7d060d14fa03ace37d52e/mlx-0.30.1-cp310-cp310-macosx_26_0_arm64.whl", hash = "sha256:a9db94e7e080672cc0dda9a5f121aebe0d49f7a8cb46706ecfd8b8ce7d99d541", size = 566952, upload-time = "2025-12-18T00:15:50.075Z" }, + { url = "https://files.pythonhosted.org/packages/c9/46/f0005d07fe5687bbf4efc15b468d27f2923f486b07a625d35c7d3cbb4962/mlx-0.30.1-cp310-cp310-manylinux_2_35_aarch64.whl", hash = "sha256:44b2142896c8dd8ab057dd785faf92fa83f3697b4b6bb01ff7515df12b6de666", size = 658049, upload-time = "2025-12-18T01:55:31.748Z" }, + { url = "https://files.pythonhosted.org/packages/cb/95/cc47c4607cc78f55ce3081ade9161961795c15c049bf219f27a393f85767/mlx-0.30.1-cp310-cp310-manylinux_2_35_x86_64.whl", hash = "sha256:37ea97b3c4bd71b19d87c6ef2c9e681e11f37908d8381fc2b785d2509b0681df", size = 692336, upload-time = "2025-12-18T01:55:33.224Z" }, + { url = "https://files.pythonhosted.org/packages/07/14/74acbd677ececd17a44dafda1b472aebacef54f60ff9a41a801f711de9a7/mlx-0.30.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:acfd7d1b8e5b9fa1b7e9fab4cc5ba6a492c559fbb1c5aeab16c1d7a148ab4f1b", size = 593048, upload-time = "2025-12-18T01:55:34.9Z" }, + { url = "https://files.pythonhosted.org/packages/58/8c/5309848afb9c53d363f59b88ae5811de248e2817e91aeadf007e2ac8d22b/mlx-0.30.1-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:b62030471272d1835b8137164bd43d863cc93ff1d67ec4f1f87bb4c8613dd5a6", size = 593043, upload-time = "2025-12-18T01:55:36.839Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5a/0039815a930f0193e2cffb27c57dc6971004bce0086c2bbbdb10395c272c/mlx-0.30.1-cp311-cp311-macosx_26_0_arm64.whl", hash = "sha256:0489cd340f2d262cb3aaad4368e40e84b152e182e4cea37ba018e56c72e1d020", size = 567014, upload-time = "2025-12-18T00:15:51.731Z" }, + { url = "https://files.pythonhosted.org/packages/de/c7/6bdb5497c1f5ed3e33afa7785761ad87fd3436c071805d9a93c905943f04/mlx-0.30.1-cp311-cp311-manylinux_2_35_aarch64.whl", hash = "sha256:fbdcfc3ed556a7e701a8eb67da299e2a25f52615193833ca6374decca3be5bf4", size = 658930, upload-time = "2025-12-18T01:55:38.441Z" }, + { url = "https://files.pythonhosted.org/packages/91/02/2d86a1c116e951eb4d88fe313c321e23628ce7404712e1258cacf925a8b8/mlx-0.30.1-cp311-cp311-manylinux_2_35_x86_64.whl", hash = "sha256:68ec854e7b5f89454e67d6c2fa7bb416b8afb148003ccd775904ec6ec4744818", size = 692484, upload-time = "2025-12-18T01:55:40.254Z" }, + { url = "https://files.pythonhosted.org/packages/3a/4b/ad57b2f0ede3f0d009c0e3e1270c219bd18f9025388855ee149680cffa20/mlx-0.30.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:deaef3ecd2f99930867a29de748e3bffa9cc7e4dfa834f2501c37ed29aece1cc", size = 593397, upload-time = "2025-12-18T01:55:41.814Z" }, + { url = "https://files.pythonhosted.org/packages/ef/14/7fa03a0f66ac3cfb2fd6752178a1488f13c7233fff26eed0f832d961db35/mlx-0.30.1-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:86ccdcda0b5ea4768b87da25beae5b83ac7cc802506116b6845cea6f450e2377", size = 593397, upload-time = "2025-12-18T01:55:43Z" }, + { url = "https://files.pythonhosted.org/packages/9c/c8/9f1343dbe2381f9653df4e0a62dc8bf38f575a2553dc2aa6916de32d2a85/mlx-0.30.1-cp312-cp312-macosx_26_0_arm64.whl", hash = "sha256:a625cb434b2acc5674fe10683374641dab9671fb354ae7c2c67a1fb0405eeb37", size = 567576, upload-time = "2025-12-18T00:15:55.114Z" }, + { url = "https://files.pythonhosted.org/packages/15/ff/485ed9c99c18ef89ac987178c0a526cb4148ba38b14838d315311d9d76a8/mlx-0.30.1-cp312-cp312-manylinux_2_35_aarch64.whl", hash = "sha256:ccc1ff3aca8fb1073c7dcd1274cebe48ae75f852d14b16c7db8228fbbad594dd", size = 643654, upload-time = "2025-12-18T01:55:44.165Z" }, + { url = "https://files.pythonhosted.org/packages/8a/d3/54d3bf5e404c3b6424b49c505dc8b3c06c6bb498fe720195b1fafbd69b5e/mlx-0.30.1-cp312-cp312-manylinux_2_35_x86_64.whl", hash = "sha256:55ed7fc4b389d6e49dac6d34a97b41e61cbe3662ac29c3d29cf612e6b2ed9827", size = 687305, upload-time = "2025-12-18T01:55:45.526Z" }, + { url = "https://files.pythonhosted.org/packages/f9/fd/c6f56cd87d48763ed63655ace627c06db9819eae7d43d132f40d4965947a/mlx-0.30.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:743520758bc8261b2ed8f3b3dc96e4e9236769dd8f61fb17877c5e44037e2058", size = 593366, upload-time = "2025-12-18T01:55:46.786Z" }, + { url = "https://files.pythonhosted.org/packages/dc/53/96d8c48b21f91c4216b6d2ef6dfc10862e5fb0b811a2aaf02c96c78601de/mlx-0.30.1-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:fc9745bc1860ca60128e3a6d36157da06d936e2b4007a4dcba990b40202f598f", size = 593368, upload-time = "2025-12-18T01:55:48.363Z" }, + { url = "https://files.pythonhosted.org/packages/70/ce/476c3b7d3a4153bd0e1c5af1f1b6c09a804b652bbed34072404b322c22e0/mlx-0.30.1-cp313-cp313-macosx_26_0_arm64.whl", hash = "sha256:a1480399c67bb327a66c5527b73915132e3fcaae3bce9634e5c81ccad9f43229", size = 567561, upload-time = "2025-12-18T00:15:56.153Z" }, + { url = "https://files.pythonhosted.org/packages/33/41/7ad1e639fd7dd1cf01a62c1c5b051024a859888c27504996e9d8380e6754/mlx-0.30.1-cp313-cp313-manylinux_2_35_aarch64.whl", hash = "sha256:8e19850a4236a8e174f851f5789b8b62a8eb74f5a8fa49ad8ba286c5ddb5f9bf", size = 643122, upload-time = "2025-12-18T01:55:49.607Z" }, + { url = "https://files.pythonhosted.org/packages/d0/dc/72d3737c5b0662eb5e785d353dbc5e34d793d27b09b99e39993ee051bd19/mlx-0.30.1-cp313-cp313-manylinux_2_35_x86_64.whl", hash = "sha256:1c8ed5bcd9f1910fca209e95859ac737e60b3e1954181b820fa269158f81049a", size = 687254, upload-time = "2025-12-18T01:55:51.239Z" }, + { url = "https://files.pythonhosted.org/packages/9b/cc/523448996247bb05d9d68e23bccf3dafdda660befb9330f6bd5fa13361e8/mlx-0.30.1-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:d34cc2c25b0ee41c1349f14650db760e282685339858e305453f62405c12bc1b", size = 596006, upload-time = "2025-12-18T01:55:52.463Z" }, + { url = "https://files.pythonhosted.org/packages/23/0e/f9f2f9659c34c87be8f4167f6a1d6ed7e826f4889d20eecd4c0d8122f0e9/mlx-0.30.1-cp314-cp314-macosx_15_0_arm64.whl", hash = "sha256:4e47d301e9095b87f0bda8827bfd6ffe744223aba5cee8f28e25894d647f5823", size = 596008, upload-time = "2025-12-18T01:55:54.02Z" }, + { url = "https://files.pythonhosted.org/packages/56/a7/49e41fb141de95b6a376091a963c737839c9cda04e423c67f57460a50458/mlx-0.30.1-cp314-cp314-macosx_26_0_arm64.whl", hash = "sha256:cfba13e2a52255d663a1ad62f0f83eb3991e42147edf9a8d38cdd224e48ca49b", size = 570406, upload-time = "2025-12-18T00:15:57.177Z" }, + { url = "https://files.pythonhosted.org/packages/73/99/a43cb112167cf865c069f5e108ae42f5314663930ff3dd86c2d23d984191/mlx-0.30.1-cp314-cp314-manylinux_2_35_aarch64.whl", hash = "sha256:bebfec377208eb29cc88aa86c897c7446aa0984838669e138f273f9225d627ff", size = 646461, upload-time = "2025-12-18T01:55:55.285Z" }, + { url = "https://files.pythonhosted.org/packages/d4/ff/1e1968f107b4221a98dc26832586b1f646b27ddf3e55c95051c09d751f0a/mlx-0.30.1-cp314-cp314-manylinux_2_35_x86_64.whl", hash = "sha256:d18012d5cf0f013bc4a405cfd1e9d2d28e798f4d2dc4f15aa0fbffff73c02ba2", size = 687114, upload-time = "2025-12-18T01:55:56.506Z" }, +] + +[[package]] +name = "mlx-lm" +version = "0.29.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "jinja2", marker = "sys_platform != 'linux'" }, + { name = "mlx", marker = "sys_platform == 'darwin'" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux'" }, + { name = "protobuf", marker = "sys_platform != 'linux'" }, + { name = "pyyaml", marker = "sys_platform != 'linux'" }, + { name = "sentencepiece", marker = "sys_platform != 'linux'" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'linux'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/e3/62/f46e1355256a114808517947f8e83ad6be310c7288c551db0fa678f47923/mlx_lm-0.29.1.tar.gz", hash = "sha256:b99180d8f33d33a077b814e550bfb2d8a59ae003d668fd1f4b3fff62a381d34b", size = 232302, upload-time = "2025-12-16T16:58:27.959Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e5/53/913099c91d384e115ea078325efd9a0bc1ea3eb3458c694b4596cbd267f2/mlx_lm-0.29.1-py3-none-any.whl", hash = "sha256:440941b3054c2a2216e97615de584cc90fa1ea874782e20699b9895721fad8dc", size = 324884, upload-time = "2025-12-16T16:58:26.36Z" }, +] + +[[package]] +name = "mlx-metal" +version = "0.30.1" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/09/3f/0be35ddad7e13d8ecd33a9185895f9739bb00b96ef0cce36cf0405d4aec0/mlx_metal-0.30.1-py3-none-macosx_14_0_arm64.whl", hash = "sha256:e7e92c6bdbd7ac8083f528a4c6640552ae106a57bb3d99856ac10a32e93a4b5e", size = 36864966, upload-time = "2025-12-18T01:55:31.473Z" }, + { url = "https://files.pythonhosted.org/packages/1e/1f/c0bddd0d5bf3871411aabe32121e09e1b7cdbece8917a49d5a442310e3e5/mlx_metal-0.30.1-py3-none-macosx_15_0_arm64.whl", hash = "sha256:bb50f57418af7fc3c42a2da2c4bde0e7ab7ac0b997de1f6f642a6680ac65d626", size = 36859011, upload-time = "2025-12-18T01:55:34.541Z" }, + { url = "https://files.pythonhosted.org/packages/67/b3/73cc2f584ac612a476096d35a61eed75ee7ed8b4e320b0c36cf60a14d4eb/mlx_metal-0.30.1-py3-none-macosx_26_0_arm64.whl", hash = "sha256:e0b151a0053ac00b4226710bfb6dbf54b87283fb01e10fb3877f9ea969f680aa", size = 44981160, upload-time = "2025-12-18T00:15:47.518Z" }, +] + +[[package]] +name = "model-hosting-container-standards" +version = "0.1.13" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "fastapi" }, + { name = "httpx" }, + { name = "jmespath" }, + { name = "pydantic" }, + { name = "setuptools" }, + { name = "starlette" }, + { name = "supervisor" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/d7/b7/a6a31b4dfd30d14b1019dc358f09c9d88ca38e555ba7c976e7d3e6b593fe/model_hosting_container_standards-0.1.13.tar.gz", hash = "sha256:27a1333410dde2719286a300a2803e24fdde407baa91894eb845c0f268aa194d", size = 79116, upload-time = "2026-01-09T21:45:20.683Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/8c/37/6dc61971ba31450bbed460b5f40543f0915e352680534e3bcaf57116d8d7/model_hosting_container_standards-0.1.13-py3-none-any.whl", hash = "sha256:be307d4a988cc660df4e6bd8bdedb7917844bac940e332f9fd001cb385d7994c", size = 105738, upload-time = "2026-01-09T21:45:18.959Z" }, +] + [[package]] name = "model2vec" version = "0.7.0" @@ -4024,8 +4906,8 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jinja2" }, { name = "joblib" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "rich" }, { name = "safetensors" }, { name = "setuptools" }, @@ -4046,25 +4928,143 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/43/e3/7d92a15f894aa0c9c4b49b8ee9ac9850d6e63b03c9c32c0367a13ae62209/mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c", size = 536198, upload-time = "2023-03-07T16:47:09.197Z" }, ] +[[package]] +name = "msgpack" +version = "1.1.2" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/4d/f2/bfb55a6236ed8725a96b0aa3acbd0ec17588e6a2c3b62a93eb513ed8783f/msgpack-1.1.2.tar.gz", hash = "sha256:3b60763c1373dd60f398488069bcdc703cd08a711477b5d480eecc9f9626f47e", size = 173581, upload-time = "2025-10-08T09:15:56.596Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f5/a2/3b68a9e769db68668b25c6108444a35f9bd163bb848c0650d516761a59c0/msgpack-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0051fffef5a37ca2cd16978ae4f0aef92f164df86823871b5162812bebecd8e2", size = 81318, upload-time = "2025-10-08T09:14:38.722Z" }, + { url = "https://files.pythonhosted.org/packages/5b/e1/2b720cc341325c00be44e1ed59e7cfeae2678329fbf5aa68f5bda57fe728/msgpack-1.1.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a605409040f2da88676e9c9e5853b3449ba8011973616189ea5ee55ddbc5bc87", size = 83786, upload-time = "2025-10-08T09:14:40.082Z" }, + { url = "https://files.pythonhosted.org/packages/71/e5/c2241de64bfceac456b140737812a2ab310b10538a7b34a1d393b748e095/msgpack-1.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8b696e83c9f1532b4af884045ba7f3aa741a63b2bc22617293a2c6a7c645f251", size = 398240, upload-time = "2025-10-08T09:14:41.151Z" }, + { url = "https://files.pythonhosted.org/packages/b7/09/2a06956383c0fdebaef5aa9246e2356776f12ea6f2a44bd1368abf0e46c4/msgpack-1.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:365c0bbe981a27d8932da71af63ef86acc59ed5c01ad929e09a0b88c6294e28a", size = 406070, upload-time = "2025-10-08T09:14:42.821Z" }, + { url = "https://files.pythonhosted.org/packages/0e/74/2957703f0e1ef20637d6aead4fbb314330c26f39aa046b348c7edcf6ca6b/msgpack-1.1.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:41d1a5d875680166d3ac5c38573896453bbbea7092936d2e107214daf43b1d4f", size = 393403, upload-time = "2025-10-08T09:14:44.38Z" }, + { url = "https://files.pythonhosted.org/packages/a5/09/3bfc12aa90f77b37322fc33e7a8a7c29ba7c8edeadfa27664451801b9860/msgpack-1.1.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:354e81bcdebaab427c3df4281187edc765d5d76bfb3a7c125af9da7a27e8458f", size = 398947, upload-time = "2025-10-08T09:14:45.56Z" }, + { url = "https://files.pythonhosted.org/packages/4b/4f/05fcebd3b4977cb3d840f7ef6b77c51f8582086de5e642f3fefee35c86fc/msgpack-1.1.2-cp310-cp310-win32.whl", hash = "sha256:e64c8d2f5e5d5fda7b842f55dec6133260ea8f53c4257d64494c534f306bf7a9", size = 64769, upload-time = "2025-10-08T09:14:47.334Z" }, + { url = "https://files.pythonhosted.org/packages/d0/3e/b4547e3a34210956382eed1c85935fff7e0f9b98be3106b3745d7dec9c5e/msgpack-1.1.2-cp310-cp310-win_amd64.whl", hash = "sha256:db6192777d943bdaaafb6ba66d44bf65aa0e9c5616fa1d2da9bb08828c6b39aa", size = 71293, upload-time = "2025-10-08T09:14:48.665Z" }, + { url = "https://files.pythonhosted.org/packages/2c/97/560d11202bcd537abca693fd85d81cebe2107ba17301de42b01ac1677b69/msgpack-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2e86a607e558d22985d856948c12a3fa7b42efad264dca8a3ebbcfa2735d786c", size = 82271, upload-time = "2025-10-08T09:14:49.967Z" }, + { url = "https://files.pythonhosted.org/packages/83/04/28a41024ccbd67467380b6fb440ae916c1e4f25e2cd4c63abe6835ac566e/msgpack-1.1.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:283ae72fc89da59aa004ba147e8fc2f766647b1251500182fac0350d8af299c0", size = 84914, upload-time = "2025-10-08T09:14:50.958Z" }, + { url = "https://files.pythonhosted.org/packages/71/46/b817349db6886d79e57a966346cf0902a426375aadc1e8e7a86a75e22f19/msgpack-1.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:61c8aa3bd513d87c72ed0b37b53dd5c5a0f58f2ff9f26e1555d3bd7948fb7296", size = 416962, upload-time = "2025-10-08T09:14:51.997Z" }, + { url = "https://files.pythonhosted.org/packages/da/e0/6cc2e852837cd6086fe7d8406af4294e66827a60a4cf60b86575a4a65ca8/msgpack-1.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:454e29e186285d2ebe65be34629fa0e8605202c60fbc7c4c650ccd41870896ef", size = 426183, upload-time = "2025-10-08T09:14:53.477Z" }, + { url = "https://files.pythonhosted.org/packages/25/98/6a19f030b3d2ea906696cedd1eb251708e50a5891d0978b012cb6107234c/msgpack-1.1.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7bc8813f88417599564fafa59fd6f95be417179f76b40325b500b3c98409757c", size = 411454, upload-time = "2025-10-08T09:14:54.648Z" }, + { url = "https://files.pythonhosted.org/packages/b7/cd/9098fcb6adb32187a70b7ecaabf6339da50553351558f37600e53a4a2a23/msgpack-1.1.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bafca952dc13907bdfdedfc6a5f579bf4f292bdd506fadb38389afa3ac5b208e", size = 422341, upload-time = "2025-10-08T09:14:56.328Z" }, + { url = "https://files.pythonhosted.org/packages/e6/ae/270cecbcf36c1dc85ec086b33a51a4d7d08fc4f404bdbc15b582255d05ff/msgpack-1.1.2-cp311-cp311-win32.whl", hash = "sha256:602b6740e95ffc55bfb078172d279de3773d7b7db1f703b2f1323566b878b90e", size = 64747, upload-time = "2025-10-08T09:14:57.882Z" }, + { url = "https://files.pythonhosted.org/packages/2a/79/309d0e637f6f37e83c711f547308b91af02b72d2326ddd860b966080ef29/msgpack-1.1.2-cp311-cp311-win_amd64.whl", hash = "sha256:d198d275222dc54244bf3327eb8cbe00307d220241d9cec4d306d49a44e85f68", size = 71633, upload-time = "2025-10-08T09:14:59.177Z" }, + { url = "https://files.pythonhosted.org/packages/73/4d/7c4e2b3d9b1106cd0aa6cb56cc57c6267f59fa8bfab7d91df5adc802c847/msgpack-1.1.2-cp311-cp311-win_arm64.whl", hash = "sha256:86f8136dfa5c116365a8a651a7d7484b65b13339731dd6faebb9a0242151c406", size = 64755, upload-time = "2025-10-08T09:15:00.48Z" }, + { url = "https://files.pythonhosted.org/packages/ad/bd/8b0d01c756203fbab65d265859749860682ccd2a59594609aeec3a144efa/msgpack-1.1.2-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:70a0dff9d1f8da25179ffcf880e10cf1aad55fdb63cd59c9a49a1b82290062aa", size = 81939, upload-time = "2025-10-08T09:15:01.472Z" }, + { url = "https://files.pythonhosted.org/packages/34/68/ba4f155f793a74c1483d4bdef136e1023f7bcba557f0db4ef3db3c665cf1/msgpack-1.1.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:446abdd8b94b55c800ac34b102dffd2f6aa0ce643c55dfc017ad89347db3dbdb", size = 85064, upload-time = "2025-10-08T09:15:03.764Z" }, + { url = "https://files.pythonhosted.org/packages/f2/60/a064b0345fc36c4c3d2c743c82d9100c40388d77f0b48b2f04d6041dbec1/msgpack-1.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c63eea553c69ab05b6747901b97d620bb2a690633c77f23feb0c6a947a8a7b8f", size = 417131, upload-time = "2025-10-08T09:15:05.136Z" }, + { url = "https://files.pythonhosted.org/packages/65/92/a5100f7185a800a5d29f8d14041f61475b9de465ffcc0f3b9fba606e4505/msgpack-1.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:372839311ccf6bdaf39b00b61288e0557916c3729529b301c52c2d88842add42", size = 427556, upload-time = "2025-10-08T09:15:06.837Z" }, + { url = "https://files.pythonhosted.org/packages/f5/87/ffe21d1bf7d9991354ad93949286f643b2bb6ddbeab66373922b44c3b8cc/msgpack-1.1.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2929af52106ca73fcb28576218476ffbb531a036c2adbcf54a3664de124303e9", size = 404920, upload-time = "2025-10-08T09:15:08.179Z" }, + { url = "https://files.pythonhosted.org/packages/ff/41/8543ed2b8604f7c0d89ce066f42007faac1eaa7d79a81555f206a5cdb889/msgpack-1.1.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:be52a8fc79e45b0364210eef5234a7cf8d330836d0a64dfbb878efa903d84620", size = 415013, upload-time = "2025-10-08T09:15:09.83Z" }, + { url = "https://files.pythonhosted.org/packages/41/0d/2ddfaa8b7e1cee6c490d46cb0a39742b19e2481600a7a0e96537e9c22f43/msgpack-1.1.2-cp312-cp312-win32.whl", hash = "sha256:1fff3d825d7859ac888b0fbda39a42d59193543920eda9d9bea44d958a878029", size = 65096, upload-time = "2025-10-08T09:15:11.11Z" }, + { url = "https://files.pythonhosted.org/packages/8c/ec/d431eb7941fb55a31dd6ca3404d41fbb52d99172df2e7707754488390910/msgpack-1.1.2-cp312-cp312-win_amd64.whl", hash = "sha256:1de460f0403172cff81169a30b9a92b260cb809c4cb7e2fc79ae8d0510c78b6b", size = 72708, upload-time = "2025-10-08T09:15:12.554Z" }, + { url = "https://files.pythonhosted.org/packages/c5/31/5b1a1f70eb0e87d1678e9624908f86317787b536060641d6798e3cf70ace/msgpack-1.1.2-cp312-cp312-win_arm64.whl", hash = "sha256:be5980f3ee0e6bd44f3a9e9dea01054f175b50c3e6cdb692bc9424c0bbb8bf69", size = 64119, upload-time = "2025-10-08T09:15:13.589Z" }, + { url = "https://files.pythonhosted.org/packages/6b/31/b46518ecc604d7edf3a4f94cb3bf021fc62aa301f0cb849936968164ef23/msgpack-1.1.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:4efd7b5979ccb539c221a4c4e16aac1a533efc97f3b759bb5a5ac9f6d10383bf", size = 81212, upload-time = "2025-10-08T09:15:14.552Z" }, + { url = "https://files.pythonhosted.org/packages/92/dc/c385f38f2c2433333345a82926c6bfa5ecfff3ef787201614317b58dd8be/msgpack-1.1.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:42eefe2c3e2af97ed470eec850facbe1b5ad1d6eacdbadc42ec98e7dcf68b4b7", size = 84315, upload-time = "2025-10-08T09:15:15.543Z" }, + { url = "https://files.pythonhosted.org/packages/d3/68/93180dce57f684a61a88a45ed13047558ded2be46f03acb8dec6d7c513af/msgpack-1.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:1fdf7d83102bf09e7ce3357de96c59b627395352a4024f6e2458501f158bf999", size = 412721, upload-time = "2025-10-08T09:15:16.567Z" }, + { url = "https://files.pythonhosted.org/packages/5d/ba/459f18c16f2b3fc1a1ca871f72f07d70c07bf768ad0a507a698b8052ac58/msgpack-1.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fac4be746328f90caa3cd4bc67e6fe36ca2bf61d5c6eb6d895b6527e3f05071e", size = 424657, upload-time = "2025-10-08T09:15:17.825Z" }, + { url = "https://files.pythonhosted.org/packages/38/f8/4398c46863b093252fe67368b44edc6c13b17f4e6b0e4929dbf0bdb13f23/msgpack-1.1.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:fffee09044073e69f2bad787071aeec727183e7580443dfeb8556cbf1978d162", size = 402668, upload-time = "2025-10-08T09:15:19.003Z" }, + { url = "https://files.pythonhosted.org/packages/28/ce/698c1eff75626e4124b4d78e21cca0b4cc90043afb80a507626ea354ab52/msgpack-1.1.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5928604de9b032bc17f5099496417f113c45bc6bc21b5c6920caf34b3c428794", size = 419040, upload-time = "2025-10-08T09:15:20.183Z" }, + { url = "https://files.pythonhosted.org/packages/67/32/f3cd1667028424fa7001d82e10ee35386eea1408b93d399b09fb0aa7875f/msgpack-1.1.2-cp313-cp313-win32.whl", hash = "sha256:a7787d353595c7c7e145e2331abf8b7ff1e6673a6b974ded96e6d4ec09f00c8c", size = 65037, upload-time = "2025-10-08T09:15:21.416Z" }, + { url = "https://files.pythonhosted.org/packages/74/07/1ed8277f8653c40ebc65985180b007879f6a836c525b3885dcc6448ae6cb/msgpack-1.1.2-cp313-cp313-win_amd64.whl", hash = "sha256:a465f0dceb8e13a487e54c07d04ae3ba131c7c5b95e2612596eafde1dccf64a9", size = 72631, upload-time = "2025-10-08T09:15:22.431Z" }, + { url = "https://files.pythonhosted.org/packages/e5/db/0314e4e2db56ebcf450f277904ffd84a7988b9e5da8d0d61ab2d057df2b6/msgpack-1.1.2-cp313-cp313-win_arm64.whl", hash = "sha256:e69b39f8c0aa5ec24b57737ebee40be647035158f14ed4b40e6f150077e21a84", size = 64118, upload-time = "2025-10-08T09:15:23.402Z" }, + { url = "https://files.pythonhosted.org/packages/22/71/201105712d0a2ff07b7873ed3c220292fb2ea5120603c00c4b634bcdafb3/msgpack-1.1.2-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:e23ce8d5f7aa6ea6d2a2b326b4ba46c985dbb204523759984430db7114f8aa00", size = 81127, upload-time = "2025-10-08T09:15:24.408Z" }, + { url = "https://files.pythonhosted.org/packages/1b/9f/38ff9e57a2eade7bf9dfee5eae17f39fc0e998658050279cbb14d97d36d9/msgpack-1.1.2-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:6c15b7d74c939ebe620dd8e559384be806204d73b4f9356320632d783d1f7939", size = 84981, upload-time = "2025-10-08T09:15:25.812Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a9/3536e385167b88c2cc8f4424c49e28d49a6fc35206d4a8060f136e71f94c/msgpack-1.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99e2cb7b9031568a2a5c73aa077180f93dd2e95b4f8d3b8e14a73ae94a9e667e", size = 411885, upload-time = "2025-10-08T09:15:27.22Z" }, + { url = "https://files.pythonhosted.org/packages/2f/40/dc34d1a8d5f1e51fc64640b62b191684da52ca469da9cd74e84936ffa4a6/msgpack-1.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:180759d89a057eab503cf62eeec0aa61c4ea1200dee709f3a8e9397dbb3b6931", size = 419658, upload-time = "2025-10-08T09:15:28.4Z" }, + { url = "https://files.pythonhosted.org/packages/3b/ef/2b92e286366500a09a67e03496ee8b8ba00562797a52f3c117aa2b29514b/msgpack-1.1.2-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:04fb995247a6e83830b62f0b07bf36540c213f6eac8e851166d8d86d83cbd014", size = 403290, upload-time = "2025-10-08T09:15:29.764Z" }, + { url = "https://files.pythonhosted.org/packages/78/90/e0ea7990abea5764e4655b8177aa7c63cdfa89945b6e7641055800f6c16b/msgpack-1.1.2-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:8e22ab046fa7ede9e36eeb4cfad44d46450f37bb05d5ec482b02868f451c95e2", size = 415234, upload-time = "2025-10-08T09:15:31.022Z" }, + { url = "https://files.pythonhosted.org/packages/72/4e/9390aed5db983a2310818cd7d3ec0aecad45e1f7007e0cda79c79507bb0d/msgpack-1.1.2-cp314-cp314-win32.whl", hash = "sha256:80a0ff7d4abf5fecb995fcf235d4064b9a9a8a40a3ab80999e6ac1e30b702717", size = 66391, upload-time = "2025-10-08T09:15:32.265Z" }, + { url = "https://files.pythonhosted.org/packages/6e/f1/abd09c2ae91228c5f3998dbd7f41353def9eac64253de3c8105efa2082f7/msgpack-1.1.2-cp314-cp314-win_amd64.whl", hash = "sha256:9ade919fac6a3e7260b7f64cea89df6bec59104987cbea34d34a2fa15d74310b", size = 73787, upload-time = "2025-10-08T09:15:33.219Z" }, + { url = "https://files.pythonhosted.org/packages/6a/b0/9d9f667ab48b16ad4115c1935d94023b82b3198064cb84a123e97f7466c1/msgpack-1.1.2-cp314-cp314-win_arm64.whl", hash = "sha256:59415c6076b1e30e563eb732e23b994a61c159cec44deaf584e5cc1dd662f2af", size = 66453, upload-time = "2025-10-08T09:15:34.225Z" }, + { url = "https://files.pythonhosted.org/packages/16/67/93f80545eb1792b61a217fa7f06d5e5cb9e0055bed867f43e2b8e012e137/msgpack-1.1.2-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:897c478140877e5307760b0ea66e0932738879e7aa68144d9b78ea4c8302a84a", size = 85264, upload-time = "2025-10-08T09:15:35.61Z" }, + { url = "https://files.pythonhosted.org/packages/87/1c/33c8a24959cf193966ef11a6f6a2995a65eb066bd681fd085afd519a57ce/msgpack-1.1.2-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:a668204fa43e6d02f89dbe79a30b0d67238d9ec4c5bd8a940fc3a004a47b721b", size = 89076, upload-time = "2025-10-08T09:15:36.619Z" }, + { url = "https://files.pythonhosted.org/packages/fc/6b/62e85ff7193663fbea5c0254ef32f0c77134b4059f8da89b958beb7696f3/msgpack-1.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5559d03930d3aa0f3aacb4c42c776af1a2ace2611871c84a75afe436695e6245", size = 435242, upload-time = "2025-10-08T09:15:37.647Z" }, + { url = "https://files.pythonhosted.org/packages/c1/47/5c74ecb4cc277cf09f64e913947871682ffa82b3b93c8dad68083112f412/msgpack-1.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:70c5a7a9fea7f036b716191c29047374c10721c389c21e9ffafad04df8c52c90", size = 432509, upload-time = "2025-10-08T09:15:38.794Z" }, + { url = "https://files.pythonhosted.org/packages/24/a4/e98ccdb56dc4e98c929a3f150de1799831c0a800583cde9fa022fa90602d/msgpack-1.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:f2cb069d8b981abc72b41aea1c580ce92d57c673ec61af4c500153a626cb9e20", size = 415957, upload-time = "2025-10-08T09:15:40.238Z" }, + { url = "https://files.pythonhosted.org/packages/da/28/6951f7fb67bc0a4e184a6b38ab71a92d9ba58080b27a77d3e2fb0be5998f/msgpack-1.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:d62ce1f483f355f61adb5433ebfd8868c5f078d1a52d042b0a998682b4fa8c27", size = 422910, upload-time = "2025-10-08T09:15:41.505Z" }, + { url = "https://files.pythonhosted.org/packages/f0/03/42106dcded51f0a0b5284d3ce30a671e7bd3f7318d122b2ead66ad289fed/msgpack-1.1.2-cp314-cp314t-win32.whl", hash = "sha256:1d1418482b1ee984625d88aa9585db570180c286d942da463533b238b98b812b", size = 75197, upload-time = "2025-10-08T09:15:42.954Z" }, + { url = "https://files.pythonhosted.org/packages/15/86/d0071e94987f8db59d4eeb386ddc64d0bb9b10820a8d82bcd3e53eeb2da6/msgpack-1.1.2-cp314-cp314t-win_amd64.whl", hash = "sha256:5a46bf7e831d09470ad92dff02b8b1ac92175ca36b087f904a0519857c6be3ff", size = 85772, upload-time = "2025-10-08T09:15:43.954Z" }, + { url = "https://files.pythonhosted.org/packages/81/f2/08ace4142eb281c12701fc3b93a10795e4d4dc7f753911d836675050f886/msgpack-1.1.2-cp314-cp314t-win_arm64.whl", hash = "sha256:d99ef64f349d5ec3293688e91486c5fdb925ed03807f64d98d205d2713c60b46", size = 70868, upload-time = "2025-10-08T09:15:44.959Z" }, +] + +[[package]] +name = "msgspec" +version = "0.20.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/ea/9c/bfbd12955a49180cbd234c5d29ec6f74fe641698f0cd9df154a854fc8a15/msgspec-0.20.0.tar.gz", hash = "sha256:692349e588fde322875f8d3025ac01689fead5901e7fb18d6870a44519d62a29", size = 317862, upload-time = "2025-11-24T03:56:28.934Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e3/5e/151883ba2047cca9db8ed2f86186b054ad200bc231352df15b0c1dd75b1f/msgspec-0.20.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:23a6ec2a3b5038c233b04740a545856a068bc5cb8db184ff493a58e08c994fbf", size = 195191, upload-time = "2025-11-24T03:55:08.549Z" }, + { url = "https://files.pythonhosted.org/packages/50/88/a795647672f547c983eff0823b82aaa35db922c767e1b3693e2dcf96678d/msgspec-0.20.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cde2c41ed3eaaef6146365cb0d69580078a19f974c6cb8165cc5dcd5734f573e", size = 188513, upload-time = "2025-11-24T03:55:10.008Z" }, + { url = "https://files.pythonhosted.org/packages/4b/91/eb0abb0e0de142066cebfe546dc9140c5972ea824aa6ff507ad0b6a126ac/msgspec-0.20.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5da0daa782f95d364f0d95962faed01e218732aa1aa6cad56b25a5d2092e75a4", size = 216370, upload-time = "2025-11-24T03:55:11.566Z" }, + { url = "https://files.pythonhosted.org/packages/15/2a/48e41d9ef0a24b1c6e67cbd94a676799e0561bfbc163be1aaaff5ca853f5/msgspec-0.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:9369d5266144bef91be2940a3821e03e51a93c9080fde3ef72728c3f0a3a8bb7", size = 222653, upload-time = "2025-11-24T03:55:13.159Z" }, + { url = "https://files.pythonhosted.org/packages/90/c9/14b825df203d980f82a623450d5f39e7f7a09e6e256c52b498ea8f29d923/msgspec-0.20.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:90fb865b306ca92c03964a5f3d0cd9eb1adda14f7e5ac7943efd159719ea9f10", size = 222337, upload-time = "2025-11-24T03:55:14.777Z" }, + { url = "https://files.pythonhosted.org/packages/8b/d7/39a5c3ddd294f587d6fb8efccc8361b6aa5089974015054071e665c9d24b/msgspec-0.20.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:e8112cd48b67dfc0cfa49fc812b6ce7eb37499e1d95b9575061683f3428975d3", size = 225565, upload-time = "2025-11-24T03:55:16.4Z" }, + { url = "https://files.pythonhosted.org/packages/98/bd/5db3c14d675ee12842afb9b70c94c64f2c873f31198c46cbfcd7dffafab0/msgspec-0.20.0-cp310-cp310-win_amd64.whl", hash = "sha256:666b966d503df5dc27287675f525a56b6e66a2b8e8ccd2877b0c01328f19ae6c", size = 188412, upload-time = "2025-11-24T03:55:17.747Z" }, + { url = "https://files.pythonhosted.org/packages/76/c7/06cc218bc0c86f0c6c6f34f7eeea6cfb8b835070e8031e3b0ef00f6c7c69/msgspec-0.20.0-cp310-cp310-win_arm64.whl", hash = "sha256:099e3e85cd5b238f2669621be65f0728169b8c7cb7ab07f6137b02dc7feea781", size = 173951, upload-time = "2025-11-24T03:55:19.335Z" }, + { url = "https://files.pythonhosted.org/packages/03/59/fdcb3af72f750a8de2bcf39d62ada70b5eb17b06d7f63860e0a679cb656b/msgspec-0.20.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:09e0efbf1ac641fedb1d5496c59507c2f0dc62a052189ee62c763e0aae217520", size = 193345, upload-time = "2025-11-24T03:55:20.613Z" }, + { url = "https://files.pythonhosted.org/packages/5a/15/3c225610da9f02505d37d69a77f4a2e7daae2a125f99d638df211ba84e59/msgspec-0.20.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:23ee3787142e48f5ee746b2909ce1b76e2949fbe0f97f9f6e70879f06c218b54", size = 186867, upload-time = "2025-11-24T03:55:22.4Z" }, + { url = "https://files.pythonhosted.org/packages/81/36/13ab0c547e283bf172f45491edfdea0e2cecb26ae61e3a7b1ae6058b326d/msgspec-0.20.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:81f4ac6f0363407ac0465eff5c7d4d18f26870e00674f8fcb336d898a1e36854", size = 215351, upload-time = "2025-11-24T03:55:23.958Z" }, + { url = "https://files.pythonhosted.org/packages/6b/96/5c095b940de3aa6b43a71ec76275ac3537b21bd45c7499b5a17a429110fa/msgspec-0.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:bb4d873f24ae18cd1334f4e37a178ed46c9d186437733351267e0a269bdf7e53", size = 219896, upload-time = "2025-11-24T03:55:25.356Z" }, + { url = "https://files.pythonhosted.org/packages/98/7a/81a7b5f01af300761087b114dafa20fb97aed7184d33aab64d48874eb187/msgspec-0.20.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b92b8334427b8393b520c24ff53b70f326f79acf5f74adb94fd361bcff8a1d4e", size = 220389, upload-time = "2025-11-24T03:55:26.99Z" }, + { url = "https://files.pythonhosted.org/packages/70/c0/3d0cce27db9a9912421273d49eab79ce01ecd2fed1a2f1b74af9b445f33c/msgspec-0.20.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:562c44b047c05cc0384e006fae7a5e715740215c799429e0d7e3e5adf324285a", size = 223348, upload-time = "2025-11-24T03:55:28.311Z" }, + { url = "https://files.pythonhosted.org/packages/89/5e/406b7d578926b68790e390d83a1165a9bfc2d95612a1a9c1c4d5c72ea815/msgspec-0.20.0-cp311-cp311-win_amd64.whl", hash = "sha256:d1dcc93a3ce3d3195985bfff18a48274d0b5ffbc96fa1c5b89da6f0d9af81b29", size = 188713, upload-time = "2025-11-24T03:55:29.553Z" }, + { url = "https://files.pythonhosted.org/packages/47/87/14fe2316624ceedf76a9e94d714d194cbcb699720b210ff189f89ca4efd7/msgspec-0.20.0-cp311-cp311-win_arm64.whl", hash = "sha256:aa387aa330d2e4bd69995f66ea8fdc87099ddeedf6fdb232993c6a67711e7520", size = 174229, upload-time = "2025-11-24T03:55:31.107Z" }, + { url = "https://files.pythonhosted.org/packages/d9/6f/1e25eee957e58e3afb2a44b94fa95e06cebc4c236193ed0de3012fff1e19/msgspec-0.20.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:2aba22e2e302e9231e85edc24f27ba1f524d43c223ef5765bd8624c7df9ec0a5", size = 196391, upload-time = "2025-11-24T03:55:32.677Z" }, + { url = "https://files.pythonhosted.org/packages/7f/ee/af51d090ada641d4b264992a486435ba3ef5b5634bc27e6eb002f71cef7d/msgspec-0.20.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:716284f898ab2547fedd72a93bb940375de9fbfe77538f05779632dc34afdfde", size = 188644, upload-time = "2025-11-24T03:55:33.934Z" }, + { url = "https://files.pythonhosted.org/packages/49/d6/9709ee093b7742362c2934bfb1bbe791a1e09bed3ea5d8a18ce552fbfd73/msgspec-0.20.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:558ed73315efa51b1538fa8f1d3b22c8c5ff6d9a2a62eff87d25829b94fc5054", size = 218852, upload-time = "2025-11-24T03:55:35.575Z" }, + { url = "https://files.pythonhosted.org/packages/5c/a2/488517a43ccf5a4b6b6eca6dd4ede0bd82b043d1539dd6bb908a19f8efd3/msgspec-0.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:509ac1362a1d53aa66798c9b9fd76872d7faa30fcf89b2fba3bcbfd559d56eb0", size = 224937, upload-time = "2025-11-24T03:55:36.859Z" }, + { url = "https://files.pythonhosted.org/packages/d5/e8/49b832808aa23b85d4f090d1d2e48a4e3834871415031ed7c5fe48723156/msgspec-0.20.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1353c2c93423602e7dea1aa4c92f3391fdfc25ff40e0bacf81d34dbc68adb870", size = 222858, upload-time = "2025-11-24T03:55:38.187Z" }, + { url = "https://files.pythonhosted.org/packages/9f/56/1dc2fa53685dca9c3f243a6cbecd34e856858354e455b77f47ebd76cf5bf/msgspec-0.20.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:cb33b5eb5adb3c33d749684471c6a165468395d7aa02d8867c15103b81e1da3e", size = 227248, upload-time = "2025-11-24T03:55:39.496Z" }, + { url = "https://files.pythonhosted.org/packages/5a/51/aba940212c23b32eedce752896205912c2668472ed5b205fc33da28a6509/msgspec-0.20.0-cp312-cp312-win_amd64.whl", hash = "sha256:fb1d934e435dd3a2b8cf4bbf47a8757100b4a1cfdc2afdf227541199885cdacb", size = 190024, upload-time = "2025-11-24T03:55:40.829Z" }, + { url = "https://files.pythonhosted.org/packages/41/ad/3b9f259d94f183daa9764fef33fdc7010f7ecffc29af977044fa47440a83/msgspec-0.20.0-cp312-cp312-win_arm64.whl", hash = "sha256:00648b1e19cf01b2be45444ba9dc961bd4c056ffb15706651e64e5d6ec6197b7", size = 175390, upload-time = "2025-11-24T03:55:42.05Z" }, + { url = "https://files.pythonhosted.org/packages/8a/d1/b902d38b6e5ba3bdddbec469bba388d647f960aeed7b5b3623a8debe8a76/msgspec-0.20.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9c1ff8db03be7598b50dd4b4a478d6fe93faae3bd54f4f17aa004d0e46c14c46", size = 196463, upload-time = "2025-11-24T03:55:43.405Z" }, + { url = "https://files.pythonhosted.org/packages/57/b6/eff0305961a1d9447ec2b02f8c73c8946f22564d302a504185b730c9a761/msgspec-0.20.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f6532369ece217fd37c5ebcfd7e981f2615628c21121b7b2df9d3adcf2fd69b8", size = 188650, upload-time = "2025-11-24T03:55:44.761Z" }, + { url = "https://files.pythonhosted.org/packages/99/93/f2ec1ae1de51d3fdee998a1ede6b2c089453a2ee82b5c1b361ed9095064a/msgspec-0.20.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f9a1697da2f85a751ac3cc6a97fceb8e937fc670947183fb2268edaf4016d1ee", size = 218834, upload-time = "2025-11-24T03:55:46.441Z" }, + { url = "https://files.pythonhosted.org/packages/28/83/36557b04cfdc317ed8a525c4993b23e43a8fbcddaddd78619112ca07138c/msgspec-0.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7fac7e9c92eddcd24c19d9e5f6249760941485dff97802461ae7c995a2450111", size = 224917, upload-time = "2025-11-24T03:55:48.06Z" }, + { url = "https://files.pythonhosted.org/packages/8f/56/362037a1ed5be0b88aced59272442c4b40065c659700f4b195a7f4d0ac88/msgspec-0.20.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f953a66f2a3eb8d5ea64768445e2bb301d97609db052628c3e1bcb7d87192a9f", size = 222821, upload-time = "2025-11-24T03:55:49.388Z" }, + { url = "https://files.pythonhosted.org/packages/92/75/fa2370ec341cedf663731ab7042e177b3742645c5dd4f64dc96bd9f18a6b/msgspec-0.20.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:247af0313ae64a066d3aea7ba98840f6681ccbf5c90ba9c7d17f3e39dbba679c", size = 227227, upload-time = "2025-11-24T03:55:51.125Z" }, + { url = "https://files.pythonhosted.org/packages/f1/25/5e8080fe0117f799b1b68008dc29a65862077296b92550632de015128579/msgspec-0.20.0-cp313-cp313-win_amd64.whl", hash = "sha256:67d5e4dfad52832017018d30a462604c80561aa62a9d548fc2bd4e430b66a352", size = 189966, upload-time = "2025-11-24T03:55:52.458Z" }, + { url = "https://files.pythonhosted.org/packages/79/b6/63363422153937d40e1cb349c5081338401f8529a5a4e216865decd981bf/msgspec-0.20.0-cp313-cp313-win_arm64.whl", hash = "sha256:91a52578226708b63a9a13de287b1ec3ed1123e4a088b198143860c087770458", size = 175378, upload-time = "2025-11-24T03:55:53.721Z" }, + { url = "https://files.pythonhosted.org/packages/bb/18/62dc13ab0260c7d741dda8dc7f481495b93ac9168cd887dda5929880eef8/msgspec-0.20.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:eead16538db1b3f7ec6e3ed1f6f7c5dec67e90f76e76b610e1ffb5671815633a", size = 196407, upload-time = "2025-11-24T03:55:55.001Z" }, + { url = "https://files.pythonhosted.org/packages/dd/1d/b9949e4ad6953e9f9a142c7997b2f7390c81e03e93570c7c33caf65d27e1/msgspec-0.20.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:703c3bb47bf47801627fb1438f106adbfa2998fe586696d1324586a375fca238", size = 188889, upload-time = "2025-11-24T03:55:56.311Z" }, + { url = "https://files.pythonhosted.org/packages/1e/19/f8bb2dc0f1bfe46cc7d2b6b61c5e9b5a46c62298e8f4d03bbe499c926180/msgspec-0.20.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6cdb227dc585fb109305cee0fd304c2896f02af93ecf50a9c84ee54ee67dbb42", size = 219691, upload-time = "2025-11-24T03:55:57.908Z" }, + { url = "https://files.pythonhosted.org/packages/b8/8e/6b17e43f6eb9369d9858ee32c97959fcd515628a1df376af96c11606cf70/msgspec-0.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:27d35044dd8818ac1bd0fedb2feb4fbdff4e3508dd7c5d14316a12a2d96a0de0", size = 224918, upload-time = "2025-11-24T03:55:59.322Z" }, + { url = "https://files.pythonhosted.org/packages/1c/db/0e833a177db1a4484797adba7f429d4242585980b90882cc38709e1b62df/msgspec-0.20.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b4296393a29ee42dd25947981c65506fd4ad39beaf816f614146fa0c5a6c91ae", size = 223436, upload-time = "2025-11-24T03:56:00.716Z" }, + { url = "https://files.pythonhosted.org/packages/c3/30/d2ee787f4c918fd2b123441d49a7707ae9015e0e8e1ab51aa7967a97b90e/msgspec-0.20.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:205fbdadd0d8d861d71c8f3399fe1a82a2caf4467bc8ff9a626df34c12176980", size = 227190, upload-time = "2025-11-24T03:56:02.371Z" }, + { url = "https://files.pythonhosted.org/packages/ff/37/9c4b58ff11d890d788e700b827db2366f4d11b3313bf136780da7017278b/msgspec-0.20.0-cp314-cp314-win_amd64.whl", hash = "sha256:7dfebc94fe7d3feec6bc6c9df4f7e9eccc1160bb5b811fbf3e3a56899e398a6b", size = 193950, upload-time = "2025-11-24T03:56:03.668Z" }, + { url = "https://files.pythonhosted.org/packages/e9/4e/cab707bf2fa57408e2934e5197fc3560079db34a1e3cd2675ff2e47e07de/msgspec-0.20.0-cp314-cp314-win_arm64.whl", hash = "sha256:2ad6ae36e4a602b24b4bf4eaf8ab5a441fec03e1f1b5931beca8ebda68f53fc0", size = 179018, upload-time = "2025-11-24T03:56:05.038Z" }, + { url = "https://files.pythonhosted.org/packages/4c/06/3da3fc9aaa55618a8f43eb9052453cfe01f82930bca3af8cea63a89f3a11/msgspec-0.20.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:f84703e0e6ef025663dd1de828ca028774797b8155e070e795c548f76dde65d5", size = 200389, upload-time = "2025-11-24T03:56:06.375Z" }, + { url = "https://files.pythonhosted.org/packages/83/3b/cc4270a5ceab40dfe1d1745856951b0a24fd16ac8539a66ed3004a60c91e/msgspec-0.20.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:7c83fc24dd09cf1275934ff300e3951b3adc5573f0657a643515cc16c7dee131", size = 193198, upload-time = "2025-11-24T03:56:07.742Z" }, + { url = "https://files.pythonhosted.org/packages/cd/ae/4c7905ac53830c8e3c06fdd60e3cdcfedc0bbc993872d1549b84ea21a1bd/msgspec-0.20.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5f13ccb1c335a124e80c4562573b9b90f01ea9521a1a87f7576c2e281d547f56", size = 225973, upload-time = "2025-11-24T03:56:09.18Z" }, + { url = "https://files.pythonhosted.org/packages/d9/da/032abac1de4d0678d99eaeadb1323bd9d247f4711c012404ba77ed6f15ca/msgspec-0.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:17c2b5ca19f19306fc83c96d85e606d2cc107e0caeea85066b5389f664e04846", size = 229509, upload-time = "2025-11-24T03:56:10.898Z" }, + { url = "https://files.pythonhosted.org/packages/69/52/fdc7bdb7057a166f309e0b44929e584319e625aaba4771b60912a9321ccd/msgspec-0.20.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:d931709355edabf66c2dd1a756b2d658593e79882bc81aae5964969d5a291b63", size = 230434, upload-time = "2025-11-24T03:56:12.48Z" }, + { url = "https://files.pythonhosted.org/packages/cb/fe/1dfd5f512b26b53043884e4f34710c73e294e7cc54278c3fe28380e42c37/msgspec-0.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:565f915d2e540e8a0c93a01ff67f50aebe1f7e22798c6a25873f9fda8d1325f8", size = 231758, upload-time = "2025-11-24T03:56:13.765Z" }, + { url = "https://files.pythonhosted.org/packages/97/f6/9ba7121b8e0c4e0beee49575d1dbc804e2e72467692f0428cf39ceba1ea5/msgspec-0.20.0-cp314-cp314t-win_amd64.whl", hash = "sha256:726f3e6c3c323f283f6021ebb6c8ccf58d7cd7baa67b93d73bfbe9a15c34ab8d", size = 206540, upload-time = "2025-11-24T03:56:15.029Z" }, + { url = "https://files.pythonhosted.org/packages/c8/3e/c5187de84bb2c2ca334ab163fcacf19a23ebb1d876c837f81a1b324a15bf/msgspec-0.20.0-cp314-cp314t-win_arm64.whl", hash = "sha256:93f23528edc51d9f686808a361728e903d6f2be55c901d6f5c92e44c6d546bfc", size = 183011, upload-time = "2025-11-24T03:56:16.442Z" }, +] + [[package]] name = "mteb" version = "2.6.8" source = { editable = "." } dependencies = [ { name = "datasets" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "polars" }, { name = "pydantic" }, { name = "pytrec-eval-terrier" }, { name = "requests" }, { name = "rich" }, { name = "scikit-learn" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "sentence-transformers" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, { name = "tqdm" }, { name = "typing-extensions" }, ] @@ -4091,8 +5091,8 @@ colpali-engine = [ { name = "colpali-engine", marker = "python_full_version < '3.14'" }, ] colqwen3 = [ - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" } }, ] eager-embed = [ @@ -4111,20 +5111,21 @@ gritlm = [ { name = "gritlm" }, ] image = [ - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, extra = ["torch-vision", "vision"], marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, ] jina = [ { name = "einops" }, ] jina-v4 = [ { name = "peft", version = "0.18.0", source = { registry = "https://pypi.org/simple" } }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" } }, ] leaderboard = [ @@ -4153,8 +5154,8 @@ openai = [ { name = "tiktoken" }, ] peft = [ - { name = "peft", version = "0.17.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "peft", version = "0.18.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "peft", version = "0.17.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "peft", version = "0.18.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, ] pylate = [ { name = "pylate", marker = "python_full_version < '3.13'" }, @@ -4168,6 +5169,9 @@ timm = [ vertexai = [ { name = "vertexai" }, ] +vllm = [ + { name = "vllm" }, +] voyage-v = [ { name = "tenacity" }, { name = "voyageai" }, @@ -4179,8 +5183,9 @@ xet = [ { name = "huggingface-hub" }, ] xformers = [ - { name = "xformers", version = "0.0.32.post2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "xformers", version = "0.0.33.post2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "xformers", version = "0.0.32.post2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "xformers", version = "0.0.33.post1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "xformers", version = "0.0.33.post2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] youtu = [ { name = "tencentcloud-sdk-python-common" }, @@ -4207,8 +5212,8 @@ dev = [ { name = "pytest-rerunfailures" }, { name = "pytest-xdist" }, { name = "ruff" }, - { name = "scipy-stubs", version = "1.15.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy-stubs", version = "1.16.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy-stubs", version = "1.15.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy-stubs", version = "1.16.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "tabulate" }, { name = "types-cachetools" }, { name = "types-colorama" }, @@ -4260,8 +5265,8 @@ typing = [ { name = "mypy" }, { name = "pandas-stubs" }, { name = "pillow" }, - { name = "scipy-stubs", version = "1.15.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy-stubs", version = "1.16.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy-stubs", version = "1.15.3.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy-stubs", version = "1.16.3.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "types-cachetools" }, { name = "types-colorama" }, { name = "types-defusedxml" }, @@ -4329,6 +5334,8 @@ requires-dist = [ { name = "tiktoken", marker = "extra == 'openai'", specifier = ">=0.8.0" }, { name = "timm", marker = "extra == 'timm'", specifier = ">=1.0.15,<1.1.0" }, { name = "torch", specifier = ">1.0.0" }, + { name = "torch", marker = "python_full_version < '3.14'" }, + { name = "torch", marker = "python_full_version >= '3.14'", specifier = ">=2.9.0" }, { name = "torchvision", marker = "extra == 'colqwen3'", specifier = ">=0.22.1" }, { name = "torchvision", marker = "extra == 'image'", specifier = ">0.2.1" }, { name = "torchvision", marker = "extra == 'jina-v4'", specifier = ">=0.22.1" }, @@ -4339,12 +5346,13 @@ requires-dist = [ { name = "transformers", extras = ["torch-vision", "vision"], marker = "extra == 'image'" }, { name = "typing-extensions", specifier = ">=4.5.0" }, { name = "vertexai", marker = "extra == 'vertexai'", specifier = "==1.71.1" }, + { name = "vllm", marker = "extra == 'vllm'", specifier = ">=0.11.1" }, { name = "volcengine-python-sdk", extras = ["ark"], marker = "extra == 'ark'", specifier = "==3.0.2" }, { name = "voyageai", marker = "extra == 'voyage-v'", specifier = ">0.3.0,<2.0.0" }, { name = "voyageai", marker = "extra == 'voyageai'", specifier = ">0.3.0,<2.0.0" }, { name = "xformers", marker = "extra == 'xformers'", specifier = ">=0.0.29" }, ] -provides-extras = ["image", "codecarbon", "leaderboard", "peft", "flagembedding", "jina", "jina-v4", "flash-attention", "openai", "model2vec", "pylate", "bm25s", "gritlm", "xformers", "blip2", "voyageai", "voyage-v", "cohere", "vertexai", "llm2vec", "timm", "open-clip-torch", "nomic", "ark", "colpali-engine", "colqwen3", "sauerkrautlm-colpali", "xet", "youtu", "llama-embed-nemotron", "faiss-cpu", "eager-embed"] +provides-extras = ["image", "codecarbon", "leaderboard", "peft", "flagembedding", "jina", "jina-v4", "flash-attention", "openai", "model2vec", "pylate", "bm25s", "gritlm", "xformers", "blip2", "voyageai", "voyage-v", "cohere", "vertexai", "llm2vec", "timm", "open-clip-torch", "nomic", "ark", "colpali-engine", "colqwen3", "sauerkrautlm-colpali", "xet", "youtu", "llama-embed-nemotron", "faiss-cpu", "eager-embed", "vllm"] [package.metadata.requires-dev] dev = [ @@ -4446,7 +5454,7 @@ name = "multidict" version = "6.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/80/1e/5492c365f222f907de1039b91f922b93fa4f764c713ee858d235495d8f50/multidict-6.7.0.tar.gz", hash = "sha256:c6e99d9a65ca282e578dfea819cfa9c0a62b2499d8677392e09feaf305e9e6f5", size = 101834, upload-time = "2025-10-06T14:52:30.657Z" } wheels = [ @@ -4671,10 +5679,10 @@ name = "mypy" version = "1.19.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "librt", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "librt", marker = "platform_python_implementation != 'PyPy' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "mypy-extensions" }, { name = "pathspec" }, - { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f5/db/4efed9504bc01309ab9c2da7e352cc223569f05478012b5d9ece38fd44d2/mypy-1.19.1.tar.gz", hash = "sha256:19d88bb05303fe63f71dd2c6270daca27cb9401c4ca8255fe50d1d920e0eb9ba", size = 3582404, upload-time = "2025-12-15T05:03:48.42Z" } @@ -4735,30 +5743,32 @@ name = "networkx" version = "3.4.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] sdist = { url = "https://files.pythonhosted.org/packages/fd/1d/06475e1cd5264c0b870ea2cc6fdb3e37177c1e565c43f56ff17a10e3937f/networkx-3.4.2.tar.gz", hash = "sha256:307c3669428c5362aab27c8a1260aa8f47c4e91d3891f48be0141738d8d053e1", size = 2151368, upload-time = "2024-10-21T12:39:38.695Z" } wheels = [ @@ -4770,102 +5780,110 @@ name = "networkx" version = "3.6.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] sdist = { url = "https://files.pythonhosted.org/packages/6a/51/63fe664f3908c97be9d2e4f1158eb633317598cfa6e1fc14af5383f17512/networkx-3.6.1.tar.gz", hash = "sha256:26b7c357accc0c8cde558ad486283728b65b6a95d85ee1cd66bafab4c8168509", size = 2517025, upload-time = "2025-12-08T17:02:39.908Z" } wheels = [ @@ -4905,35 +5923,77 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314, upload-time = "2024-06-04T18:44:08.352Z" }, ] +[[package]] +name = "numba" +version = "0.61.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "llvmlite" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, +] +sdist = { url = "https://files.pythonhosted.org/packages/1c/a0/e21f57604304aa03ebb8e098429222722ad99176a4f979d34af1d1ee80da/numba-0.61.2.tar.gz", hash = "sha256:8750ee147940a6637b80ecf7f95062185ad8726c8c28a2295b8ec1160a196f7d", size = 2820615, upload-time = "2025-04-09T02:58:07.659Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/ca/f470be59552ccbf9531d2d383b67ae0b9b524d435fb4a0d229fef135116e/numba-0.61.2-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:cf9f9fc00d6eca0c23fc840817ce9f439b9f03c8f03d6246c0e7f0cb15b7162a", size = 2775663, upload-time = "2025-04-09T02:57:34.143Z" }, + { url = "https://files.pythonhosted.org/packages/f5/13/3bdf52609c80d460a3b4acfb9fdb3817e392875c0d6270cf3fd9546f138b/numba-0.61.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ea0247617edcb5dd61f6106a56255baab031acc4257bddaeddb3a1003b4ca3fd", size = 2778344, upload-time = "2025-04-09T02:57:36.609Z" }, + { url = "https://files.pythonhosted.org/packages/e2/7d/bfb2805bcfbd479f04f835241ecf28519f6e3609912e3a985aed45e21370/numba-0.61.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:ae8c7a522c26215d5f62ebec436e3d341f7f590079245a2f1008dfd498cc1642", size = 3824054, upload-time = "2025-04-09T02:57:38.162Z" }, + { url = "https://files.pythonhosted.org/packages/e3/27/797b2004745c92955470c73c82f0e300cf033c791f45bdecb4b33b12bdea/numba-0.61.2-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:bd1e74609855aa43661edffca37346e4e8462f6903889917e9f41db40907daa2", size = 3518531, upload-time = "2025-04-09T02:57:39.709Z" }, + { url = "https://files.pythonhosted.org/packages/b1/c6/c2fb11e50482cb310afae87a997707f6c7d8a48967b9696271347441f650/numba-0.61.2-cp310-cp310-win_amd64.whl", hash = "sha256:ae45830b129c6137294093b269ef0a22998ccc27bf7cf096ab8dcf7bca8946f9", size = 2831612, upload-time = "2025-04-09T02:57:41.559Z" }, + { url = "https://files.pythonhosted.org/packages/3f/97/c99d1056aed767503c228f7099dc11c402906b42a4757fec2819329abb98/numba-0.61.2-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:efd3db391df53aaa5cfbee189b6c910a5b471488749fd6606c3f33fc984c2ae2", size = 2775825, upload-time = "2025-04-09T02:57:43.442Z" }, + { url = "https://files.pythonhosted.org/packages/95/9e/63c549f37136e892f006260c3e2613d09d5120672378191f2dc387ba65a2/numba-0.61.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:49c980e4171948ffebf6b9a2520ea81feed113c1f4890747ba7f59e74be84b1b", size = 2778695, upload-time = "2025-04-09T02:57:44.968Z" }, + { url = "https://files.pythonhosted.org/packages/97/c8/8740616c8436c86c1b9a62e72cb891177d2c34c2d24ddcde4c390371bf4c/numba-0.61.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:3945615cd73c2c7eba2a85ccc9c1730c21cd3958bfcf5a44302abae0fb07bb60", size = 3829227, upload-time = "2025-04-09T02:57:46.63Z" }, + { url = "https://files.pythonhosted.org/packages/fc/06/66e99ae06507c31d15ff3ecd1f108f2f59e18b6e08662cd5f8a5853fbd18/numba-0.61.2-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbfdf4eca202cebade0b7d43896978e146f39398909a42941c9303f82f403a18", size = 3523422, upload-time = "2025-04-09T02:57:48.222Z" }, + { url = "https://files.pythonhosted.org/packages/0f/a4/2b309a6a9f6d4d8cfba583401c7c2f9ff887adb5d54d8e2e130274c0973f/numba-0.61.2-cp311-cp311-win_amd64.whl", hash = "sha256:76bcec9f46259cedf888041b9886e257ae101c6268261b19fda8cfbc52bec9d1", size = 2831505, upload-time = "2025-04-09T02:57:50.108Z" }, + { url = "https://files.pythonhosted.org/packages/b4/a0/c6b7b9c615cfa3b98c4c63f4316e3f6b3bbe2387740277006551784218cd/numba-0.61.2-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:34fba9406078bac7ab052efbf0d13939426c753ad72946baaa5bf9ae0ebb8dd2", size = 2776626, upload-time = "2025-04-09T02:57:51.857Z" }, + { url = "https://files.pythonhosted.org/packages/92/4a/fe4e3c2ecad72d88f5f8cd04e7f7cff49e718398a2fac02d2947480a00ca/numba-0.61.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4ddce10009bc097b080fc96876d14c051cc0c7679e99de3e0af59014dab7dfe8", size = 2779287, upload-time = "2025-04-09T02:57:53.658Z" }, + { url = "https://files.pythonhosted.org/packages/9a/2d/e518df036feab381c23a624dac47f8445ac55686ec7f11083655eb707da3/numba-0.61.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:5b1bb509d01f23d70325d3a5a0e237cbc9544dd50e50588bc581ba860c213546", size = 3885928, upload-time = "2025-04-09T02:57:55.206Z" }, + { url = "https://files.pythonhosted.org/packages/10/0f/23cced68ead67b75d77cfcca3df4991d1855c897ee0ff3fe25a56ed82108/numba-0.61.2-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:48a53a3de8f8793526cbe330f2a39fe9a6638efcbf11bd63f3d2f9757ae345cd", size = 3577115, upload-time = "2025-04-09T02:57:56.818Z" }, + { url = "https://files.pythonhosted.org/packages/68/1d/ddb3e704c5a8fb90142bf9dc195c27db02a08a99f037395503bfbc1d14b3/numba-0.61.2-cp312-cp312-win_amd64.whl", hash = "sha256:97cf4f12c728cf77c9c1d7c23707e4d8fb4632b46275f8f3397de33e5877af18", size = 2831929, upload-time = "2025-04-09T02:57:58.45Z" }, + { url = "https://files.pythonhosted.org/packages/0b/f3/0fe4c1b1f2569e8a18ad90c159298d862f96c3964392a20d74fc628aee44/numba-0.61.2-cp313-cp313-macosx_10_14_x86_64.whl", hash = "sha256:3a10a8fc9afac40b1eac55717cece1b8b1ac0b946f5065c89e00bde646b5b154", size = 2771785, upload-time = "2025-04-09T02:57:59.96Z" }, + { url = "https://files.pythonhosted.org/packages/e9/71/91b277d712e46bd5059f8a5866862ed1116091a7cb03bd2704ba8ebe015f/numba-0.61.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7d3bcada3c9afba3bed413fba45845f2fb9cd0d2b27dd58a1be90257e293d140", size = 2773289, upload-time = "2025-04-09T02:58:01.435Z" }, + { url = "https://files.pythonhosted.org/packages/0d/e0/5ea04e7ad2c39288c0f0f9e8d47638ad70f28e275d092733b5817cf243c9/numba-0.61.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:bdbca73ad81fa196bd53dc12e3aaf1564ae036e0c125f237c7644fe64a4928ab", size = 3893918, upload-time = "2025-04-09T02:58:02.933Z" }, + { url = "https://files.pythonhosted.org/packages/17/58/064f4dcb7d7e9412f16ecf80ed753f92297e39f399c905389688cf950b81/numba-0.61.2-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:5f154aaea625fb32cfbe3b80c5456d514d416fcdf79733dd69c0df3a11348e9e", size = 3584056, upload-time = "2025-04-09T02:58:04.538Z" }, + { url = "https://files.pythonhosted.org/packages/af/a4/6d3a0f2d3989e62a18749e1e9913d5fa4910bbb3e3311a035baea6caf26d/numba-0.61.2-cp313-cp313-win_amd64.whl", hash = "sha256:59321215e2e0ac5fa928a8020ab00b8e57cda8a97384963ac0dfa4d4e6aa54e7", size = 2831846, upload-time = "2025-04-09T02:58:06.125Z" }, +] + [[package]] name = "numpy" version = "2.2.6" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] sdist = { url = "https://files.pythonhosted.org/packages/76/21/7d2a95e4bba9dc13d043ee156a356c0a8f0c6309dff6b21b4d71a073b8a8/numpy-2.2.6.tar.gz", hash = "sha256:e29554e2bef54a90aa5cc07da6ce955accb83f21ab5de01a62c8478897b264fd", size = 20276440, upload-time = "2025-05-17T22:38:04.611Z" } wheels = [ @@ -4998,102 +6058,102 @@ name = "numpy" version = "2.3.5" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] sdist = { url = "https://files.pythonhosted.org/packages/76/65/21b3bc86aac7b8f2862db1e808f1ea22b028e30a225a34a5ede9bf8678f2/numpy-2.3.5.tar.gz", hash = "sha256:784db1dcdab56bf0517743e746dfb0f885fc68d948aba86eeec2cba234bdf1c0", size = 20584950, upload-time = "2025-11-16T22:52:42.067Z" } wheels = [ @@ -5174,10 +6234,130 @@ wheels = [ [[package]] name = "numpy-typing-compat" -version = "20251206.2.3" +version = "20251206.2.2" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux'", + "python_full_version >= '3.14' and sys_platform != 'linux'", + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and sys_platform != 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform != 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform != 'linux'", +] dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/b6/4b/aa30a178817f5ba009389bcbc47df0c06788aa439c49721a45cc485d37e8/numpy_typing_compat-20251206.2.2.tar.gz", hash = "sha256:93c9442985ef73dc5a18d29d6bc0f7d47a9afe95372d0a9fc68ca4802ea7ad86", size = 5008, upload-time = "2025-12-06T20:02:03.232Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/75/f7/52050556401fd9381a0f783e18b1c59026d18b1501d559ec7cd746e5c99a/numpy_typing_compat-20251206.2.2-py3-none-any.whl", hash = "sha256:9d5bf8bca75a27ee1254fea5a2a783b5c862dd9f3e726d12bd4b6143932effd2", size = 6300, upload-time = "2025-12-06T20:01:55.354Z" }, +] + +[[package]] +name = "numpy-typing-compat" +version = "20251206.2.3" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/77/83/dd90774d6685664cbe5525645a50c4e6c7454207aee552918790e879137f/numpy_typing_compat-20251206.2.3.tar.gz", hash = "sha256:18e00e0f4f2040fe98574890248848c7c6831a975562794da186cf4f3c90b935", size = 5009, upload-time = "2025-12-06T20:02:04.177Z" } wheels = [ @@ -5229,7 +6409,7 @@ name = "nvidia-cudnn-cu12" version = "9.10.2.21" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "nvidia-cublas-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/fa/41/e79269ce215c857c935fd86bcfe91a451a584dfc27f1e068f568b9ad1ab7/nvidia_cudnn_cu12-9.10.2.21-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:c9132cc3f8958447b4910a1720036d9eff5928cc3179b0a51fb6d167c6cc87d8", size = 705026878, upload-time = "2025-06-06T21:52:51.348Z" }, @@ -5237,12 +6417,31 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/3d/90/0bd6e586701b3a890fd38aa71c387dab4883d619d6e5ad912ccbd05bfd67/nvidia_cudnn_cu12-9.10.2.21-py3-none-win_amd64.whl", hash = "sha256:c6288de7d63e6cf62988f0923f96dc339cea362decb1bf5b3141883392a7d65e", size = 692992268, upload-time = "2025-06-06T21:55:18.114Z" }, ] +[[package]] +name = "nvidia-cudnn-frontend" +version = "1.17.0" +source = { registry = "https://pypi.org/simple" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/94/b224e65becfb5ab02c5b331aeb73c98f6d95cde5326d7698a2fc0d20e84a/nvidia_cudnn_frontend-1.17.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:4835ee3fc350782c89cdd290088ade69464faaa5dd66ccb0b215ad481ab3b41b", size = 1911670, upload-time = "2025-12-20T00:26:36.302Z" }, + { url = "https://files.pythonhosted.org/packages/d5/05/54afda6fc47838bd68a029067d8019e6b495dca0570d7e970cbb2c3e0b32/nvidia_cudnn_frontend-1.17.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1da7e972dbba939ad21111f1208815b8c8024cbf72aa6c1eb223b14b2049d4b6", size = 2033618, upload-time = "2025-12-20T00:24:42.991Z" }, + { url = "https://files.pythonhosted.org/packages/83/97/77ad90fac9372b0420885f16a2afaca95f78b082fa9d6a082d51a7c96bd3/nvidia_cudnn_frontend-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:21c5b2ce097f72c6510cbf974ce8ea9a31b34989dd9209d7187584a6100e57e5", size = 1440589, upload-time = "2025-12-20T00:29:17.641Z" }, + { url = "https://files.pythonhosted.org/packages/4e/4a/a903c57ef5aaa32aa074007ba4d50ed7cbc80a8092ddb84fe9d879a69bbb/nvidia_cudnn_frontend-1.17.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:961004000a2c21dd4a03f816534629105cf49125a643dbb49abbc97021e66d20", size = 1911775, upload-time = "2025-12-20T00:27:11.297Z" }, + { url = "https://files.pythonhosted.org/packages/15/20/80c4f5d62ebc58b8db8d25a2ee11f3246bb8947addea37c229540bcc05ac/nvidia_cudnn_frontend-1.17.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6ea44a8f2c0cfd20868b239ea13a2e0f32895dab868f6ff2bee01caf3778d273", size = 2035158, upload-time = "2025-12-20T00:25:00.9Z" }, + { url = "https://files.pythonhosted.org/packages/5f/18/c24375c8d579c53a99a2d7428397288a94c7ea411d1823e3b8dc3cef50dc/nvidia_cudnn_frontend-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:8dd6cc197a58d63da4d146a1febc1f99d425374d159f9b00628b140c65acb486", size = 1441316, upload-time = "2025-12-20T00:29:34.951Z" }, + { url = "https://files.pythonhosted.org/packages/42/d9/f58ed6292c9396f7422812a0a2d9f80cc5a623ea6c758bcb3d34d4795bb8/nvidia_cudnn_frontend-1.17.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:de0c473f32d705abcf14f351615f7ffbeed7320e3499cf2195ae5689652a2592", size = 1917620, upload-time = "2025-12-20T00:27:46.179Z" }, + { url = "https://files.pythonhosted.org/packages/db/eb/c641135632bd2afc21339aadee96af4c5db1460dfa07ca74836de75a590f/nvidia_cudnn_frontend-1.17.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c913c87fca691a91385287f2587575531933acfebc85c33dbcecb191886c7a53", size = 2038994, upload-time = "2025-12-20T00:25:18.9Z" }, + { url = "https://files.pythonhosted.org/packages/82/49/a92da03eb43bde90be770a43666c5ab26b4f8b15f6e46c4b0b0e84f37994/nvidia_cudnn_frontend-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:a0d4cfd03961592108abd1ba246e43c8bb7540aed984df860256d0bff181de98", size = 1441271, upload-time = "2025-12-20T00:29:52.056Z" }, + { url = "https://files.pythonhosted.org/packages/99/96/4d55a559dff3175599fe15d83c853f051526b91994b083ec36b12caae776/nvidia_cudnn_frontend-1.17.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3800a1fe3d41a9206281475b1c8c438b02cb7e3c7e262d13f0a101edec223cb6", size = 1917065, upload-time = "2025-12-20T00:28:21.402Z" }, + { url = "https://files.pythonhosted.org/packages/20/f6/5af63c254d7260dd1e974b2300eae9b157998b9d958f79c98ddaada0a0bf/nvidia_cudnn_frontend-1.17.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5adaf4a930b3be5ed019e1a25cfec7cc2bf444592a54a7639c28149b9227c2a4", size = 2039180, upload-time = "2025-12-20T00:25:36.695Z" }, + { url = "https://files.pythonhosted.org/packages/64/ee/6de6aec1e42c859134312e6d5348d6f036b2f1b825e6eae92f9a429eccc4/nvidia_cudnn_frontend-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:5c6a120fb54b157585ce6587153fc7086081af961f284f2553e01ba7c7a80c1a", size = 1441177, upload-time = "2025-12-20T00:30:09.927Z" }, +] + [[package]] name = "nvidia-cufft-cu12" version = "11.3.3.83" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-nvjitlink-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "nvidia-nvjitlink-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/60/bc/7771846d3a0272026c416fbb7e5f4c1f146d6d80704534d0b187dd6f4800/nvidia_cufft_cu12-11.3.3.83-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:848ef7224d6305cdb2a4df928759dca7b1201874787083b6e7550dd6765ce69a", size = 193109211, upload-time = "2025-03-07T01:44:56.873Z" }, @@ -5274,9 +6473,9 @@ name = "nvidia-cusolver-cu12" version = "11.7.3.90" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-cublas-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusparse-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nvjitlink-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "nvidia-cublas-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparse-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvjitlink-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/c8/32/f7cd6ce8a7690544d084ea21c26e910a97e077c9b7f07bf5de623ee19981/nvidia_cusolver_cu12-11.7.3.90-py3-none-manylinux_2_27_aarch64.whl", hash = "sha256:db9ed69dbef9715071232caa9b69c52ac7de3a95773c2db65bdba85916e4e5c0", size = 267229841, upload-time = "2025-03-07T01:46:54.356Z" }, @@ -5289,7 +6488,7 @@ name = "nvidia-cusparse-cu12" version = "12.5.8.93" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "nvidia-nvjitlink-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "nvidia-nvjitlink-cu12", marker = "(platform_machine != 'aarch64' and sys_platform == 'linux') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/bc/f7/cd777c4109681367721b00a106f491e0d0d15cfa1fd59672ce580ce42a97/nvidia_cusparse_cu12-12.5.8.93-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9b6c161cb130be1a07a27ea6923df8141f3c295852f4b260c65f18f3e0a091dc", size = 288117129, upload-time = "2025-03-07T01:47:40.407Z" }, @@ -5307,6 +6506,26 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/2f/d8/a6b0d0d0c2435e9310f3e2bb0d9c9dd4c33daef86aa5f30b3681defd37ea/nvidia_cusparselt_cu12-0.7.1-py3-none-win_amd64.whl", hash = "sha256:f67fbb5831940ec829c9117b7f33807db9f9678dc2a617fbe781cac17b4e1075", size = 271020911, upload-time = "2025-02-26T00:14:47.204Z" }, ] +[[package]] +name = "nvidia-cutlass-dsl" +version = "4.3.5" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cuda-python" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "typing-extensions" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/52/3a/89f70082c24d3b88316df9b16df861e1f2cc86389a7b36a670bc7c541977/nvidia_cutlass_dsl-4.3.5-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:b4fcc50dbf9f9c6d1f4d6e1748e366c6835c95bea7b54f7111bfa6e66230f74b", size = 58736963, upload-time = "2026-01-09T01:37:55.298Z" }, + { url = "https://files.pythonhosted.org/packages/e7/92/3f39b64341e2b16dedc7434e7b63a8f457a6fdbd023346d2f00276943495/nvidia_cutlass_dsl-4.3.5-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:776f54fa72333bc8fca274e59b70552adbcd85aaef603c7d58a79ef284890046", size = 58601295, upload-time = "2026-01-09T01:39:02.461Z" }, + { url = "https://files.pythonhosted.org/packages/e8/93/9114f28351d55061d30c68dbec3ba49659ac65607966029f52dab66950e9/nvidia_cutlass_dsl-4.3.5-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:6de9a4a7150ad1832fb8c862c92df4836f347690e4c085e9044160c846010b59", size = 58736943, upload-time = "2026-01-09T01:40:25.777Z" }, + { url = "https://files.pythonhosted.org/packages/54/b5/d2f08919a9aa9052d45b2c8adfc310a724e9474e39c612358b1b24282c54/nvidia_cutlass_dsl-4.3.5-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:7a792f02ce548f311a3df313a7cdb4ac4ec1cccb6c7ff9cd68d5470b25a6daf6", size = 58602358, upload-time = "2026-01-09T01:39:28.521Z" }, + { url = "https://files.pythonhosted.org/packages/78/6c/f45c930f662e0ec7856baa5d4e6f4d1e2ca6b029678f9e05d2df54c865be/nvidia_cutlass_dsl-4.3.5-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:6a79e94d157b16ab34069dd73fb708ff0ef31f486d699b6d5a015217f754cb0b", size = 58739895, upload-time = "2026-01-09T01:38:22.076Z" }, + { url = "https://files.pythonhosted.org/packages/76/cb/998e79b6f028268bf2653250deb4a2edb618db81244e549ced71112c6f85/nvidia_cutlass_dsl-4.3.5-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:4687eef20c405023daa99dd4653a292fd875d6c9486f8d9a069ff6fcdb00834f", size = 58602784, upload-time = "2026-01-09T01:40:52.873Z" }, + { url = "https://files.pythonhosted.org/packages/97/09/78a2f9141006f6f1e371a3dfb7a921205bcad6fb27810731169939d3e63d/nvidia_cutlass_dsl-4.3.5-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:9343a5c1335169d791b05aac6fb81e33d7f17c4f8250613a091e6ee8314ed6aa", size = 58738707, upload-time = "2026-01-09T01:39:56.445Z" }, + { url = "https://files.pythonhosted.org/packages/0f/16/41b88ded92648d99f3c83880c07a54475feded9b32b4425e30d4b34f6c63/nvidia_cutlass_dsl-4.3.5-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:11d19b7e56ae1bedaf736ea3965af3be1e7af6c2482989c414b606cdd406cf32", size = 58601867, upload-time = "2026-01-09T01:37:29.895Z" }, +] + [[package]] name = "nvidia-ml-py" version = "13.590.44" @@ -5321,50 +6540,10 @@ name = "nvidia-nccl-cu12" version = "2.27.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version < '3.11' and sys_platform == 'linux'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/4b/7b/8354b784cf73b0ba51e566b4baba3ddd44fe8288a3d39ef1e06cd5417226/nvidia_nccl_cu12-2.27.3-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:9ddf1a245abc36c550870f26d537a9b6087fb2e2e3d6e0ef03374c6fd19d984f", size = 322397768, upload-time = "2025-06-03T21:57:30.234Z" }, @@ -5376,17 +6555,55 @@ name = "nvidia-nccl-cu12" version = "2.27.5" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/bb/1c/857979db0ef194ca5e21478a0612bcdbbe59458d7694361882279947b349/nvidia_nccl_cu12-2.27.5-py3-none-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:31432ad4d1fb1004eb0c56203dc9bc2178a1ba69d1d9e02d64a6938ab5e40e7a", size = 322400625, upload-time = "2025-06-26T04:11:04.496Z" }, @@ -5444,12 +6661,14 @@ dependencies = [ { name = "huggingface-hub" }, { name = "regex" }, { name = "safetensors" }, - { name = "timm", version = "0.4.12", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-blip2' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "timm", version = "1.0.22", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra != 'extra-4-mteb-blip2'" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "timm", version = "0.4.12", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-blip2' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "timm", version = "1.0.22", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or extra != 'extra-4-mteb-blip2'" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/23/2d/df12ee8417c918fde4c8c6af470ae2c2d2dc75971dc1e3cc7f108a3cd92a/open_clip_torch-2.31.0.tar.gz", hash = "sha256:a3998b5ac13a1d11b003e6147f2dea834c7a48b3fd7d902fc17a0fff7638e6ee", size = 1486178, upload-time = "2025-02-23T16:25:22.722Z" } @@ -5476,13 +6695,58 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/59/fd/ae2da789cd923dd033c99b8d544071a827c92046b150db01cfa5cea5b3fd/openai-2.9.0-py3-none-any.whl", hash = "sha256:0d168a490fbb45630ad508a6f3022013c155a68fd708069b6a1a01a5e8f0ffad", size = 1030836, upload-time = "2025-12-04T18:15:07.063Z" }, ] +[[package]] +name = "openai-harmony" +version = "0.0.8" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/3e/92/2d038d096f29179c7c9571b431f9e739f87a487121901725e23fe338dd9d/openai_harmony-0.0.8.tar.gz", hash = "sha256:6e43f98e6c242fa2de6f8ea12eab24af63fa2ed3e89c06341fb9d92632c5cbdf", size = 284777, upload-time = "2025-11-05T19:07:06.727Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/45/c6/2502f416d46be3ec08bb66d696cccffb57781a499e3ff2e4d7c174af4e8f/openai_harmony-0.0.8-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:029ec25ca74abe48fdb58eb9fdd2a8c1618581fc33ce8e5653f8a1ffbfbd9326", size = 2627806, upload-time = "2025-11-05T19:06:57.063Z" }, + { url = "https://files.pythonhosted.org/packages/d3/d2/ce6953ca87db9cae3e775024184da7d1c5cb88cead19a2d75b42f00a959c/openai_harmony-0.0.8-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4f709815924ec325b9a890e6ab2bbb0ceec8e319a4e257328eb752cf36b2efc", size = 2948463, upload-time = "2025-11-05T19:06:48.17Z" }, + { url = "https://files.pythonhosted.org/packages/fa/4c/b553c9651662d6ce102ca7f3629d268b23df1abe5841e24bed81e8a8e949/openai_harmony-0.0.8-cp38-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5cfcfd963b50a41fc656c84d3440ca6eecdccd6c552158ce790b8f2e33dfb5a9", size = 2704083, upload-time = "2025-11-05T19:06:50.205Z" }, + { url = "https://files.pythonhosted.org/packages/9b/af/4eec8f9ab9c27bcdb444460c72cf43011d176fc44c79d6e113094ca1e152/openai_harmony-0.0.8-cp38-abi3-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0a3a16972aa1cee38ea958470cd04ac9a2d5ac38fdcf77ab686611246220c158", size = 2959765, upload-time = "2025-11-05T19:06:53.62Z" }, + { url = "https://files.pythonhosted.org/packages/11/3c/33f3374e4624e0e776f6b13b73c45a7ead7f9c4529f8369ed5bfcaa30cac/openai_harmony-0.0.8-cp38-abi3-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b4d5cfa168e74d08f8ba6d58a7e49bc7daef4d58951ec69b66b0d56f4927a68d", size = 3427031, upload-time = "2025-11-05T19:06:51.829Z" }, + { url = "https://files.pythonhosted.org/packages/25/3f/1a192b93bb47c6b44cd98ba8cc1d3d2a9308f1bb700c3017e6352da11bda/openai_harmony-0.0.8-cp38-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c007d277218a50db8839e599ed78e0fffe5130f614c3f6d93ae257f282071a29", size = 2953260, upload-time = "2025-11-05T19:06:55.406Z" }, + { url = "https://files.pythonhosted.org/packages/5b/f8/93b582cad3531797c3db7c2db5400fd841538ccddfd9f5e3df61be99a630/openai_harmony-0.0.8-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:8565d4f5a0638da1bffde29832ed63c9e695c558611053add3b2dc0b56c92dbc", size = 3127044, upload-time = "2025-11-05T19:06:59.553Z" }, + { url = "https://files.pythonhosted.org/packages/1d/10/4327dbf87f75ae813405fd9a9b4a5cde63d506ffed0a096a440a4cabd89c/openai_harmony-0.0.8-cp38-abi3-musllinux_1_2_armv7l.whl", hash = "sha256:cbaa3bda75ef0d8836e1f8cc84af62f971b1d756d740efc95c38c3e04c0bfde2", size = 2932931, upload-time = "2025-11-05T19:07:01.437Z" }, + { url = "https://files.pythonhosted.org/packages/8a/c8/1774eec4f6f360ef57618fb8f52e3d3af245b2491bd0297513aa09eec04b/openai_harmony-0.0.8-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:772922a9bd24e133950fad71eb1550836f415a88e8c77870e12d0c3bd688ddc2", size = 2996140, upload-time = "2025-11-05T19:07:03.438Z" }, + { url = "https://files.pythonhosted.org/packages/60/c3/3d1e01e2dba517a91760e4a03e4f20ffc75039a6fe584d0e6f9b5c78fd15/openai_harmony-0.0.8-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:007b0476a1f331f8130783f901f1da6f5a7057af1a4891f1b6a31dec364189b5", size = 3205080, upload-time = "2025-11-05T19:07:05.078Z" }, + { url = "https://files.pythonhosted.org/packages/14/63/119de431572d7c70a7bf1037034a9be6ed0a7502a7498ba7302bca5b3242/openai_harmony-0.0.8-cp38-abi3-win32.whl", hash = "sha256:a9b5f893326b28d9e935ade14b4f655f5a840942473bc89b201c25f7a15af9cf", size = 2082457, upload-time = "2025-11-05T19:07:09.631Z" }, + { url = "https://files.pythonhosted.org/packages/40/1f/c83cf5a206c263ee70448a5ae4264682555f4d0b5bed0d2cc6ca1108103d/openai_harmony-0.0.8-cp38-abi3-win_amd64.whl", hash = "sha256:39d44f0d8f466bd56698e7ead708bead3141e27b9b87e3ab7d5a6d0e4a869ee5", size = 2438369, upload-time = "2025-11-05T19:07:08.1Z" }, +] + [[package]] name = "opencv-python-headless" version = "4.5.5.64" source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux')", +] dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b4/0e/eb390a76bff15ebc453c539bcc6bfdaff5b9ca9e566441dae45eb508a138/opencv-python-headless-4.5.5.64.tar.gz", hash = "sha256:c3c2dda44d601757a508b07d628537c49f31223ad4edd0f747a70d4c852a7b98", size = 89932966, upload-time = "2022-03-09T05:50:35.346Z" } wheels = [ @@ -5494,14 +6758,43 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/00/72/c8a11b6139142e5aa94ce883520e2636591f570ed1270735bfbbccc0a8f6/opencv_python_headless-4.5.5.64-cp37-abi3-macosx_11_0_arm64.whl", hash = "sha256:ca4f013fa958f60fb2327fe87e6127c1ac0ab536890b1d4b00847f417b7af1ba", size = 29907271, upload-time = "2022-03-09T05:47:56.804Z" }, ] +[[package]] +name = "opencv-python-headless" +version = "4.12.0.88" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux'", + "python_full_version >= '3.14' and sys_platform != 'linux'", + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and sys_platform != 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform != 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform != 'linux'", + "python_full_version < '3.11' and sys_platform == 'linux'", + "python_full_version < '3.11' and sys_platform != 'linux'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, +] +sdist = { url = "https://files.pythonhosted.org/packages/a4/63/6861102ec149c3cd298f4d1ea7ce9d6adbc7529221606ff1dab991a19adb/opencv-python-headless-4.12.0.88.tar.gz", hash = "sha256:cfdc017ddf2e59b6c2f53bc12d74b6b0be7ded4ec59083ea70763921af2b6c09", size = 95379675, upload-time = "2025-07-07T09:21:06.815Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f7/7d/414e243c5c8216a5277afd104a319cc1291c5e23f5eeef512db5629ee7f4/opencv_python_headless-4.12.0.88-cp37-abi3-macosx_13_0_arm64.whl", hash = "sha256:1e58d664809b3350c1123484dd441e1667cd7bed3086db1b9ea1b6f6cb20b50e", size = 37877864, upload-time = "2025-07-07T09:14:41.693Z" }, + { url = "https://files.pythonhosted.org/packages/05/14/7e162714beed1cd5e7b5eb66fcbcba2f065c51b1d9da2463024c84d2f7c0/opencv_python_headless-4.12.0.88-cp37-abi3-macosx_13_0_x86_64.whl", hash = "sha256:365bb2e486b50feffc2d07a405b953a8f3e8eaa63865bc650034e5c71e7a5154", size = 57326608, upload-time = "2025-07-07T09:14:51.885Z" }, + { url = "https://files.pythonhosted.org/packages/69/4e/116720df7f1f7f3b59abc608ca30fbec9d2b3ae810afe4e4d26483d9dfa0/opencv_python_headless-4.12.0.88-cp37-abi3-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:aeb4b13ecb8b4a0beb2668ea07928160ea7c2cd2d9b5ef571bbee6bafe9cc8d0", size = 33145800, upload-time = "2025-07-07T09:15:00.367Z" }, + { url = "https://files.pythonhosted.org/packages/89/53/e19c21e0c4eb1275c3e2c97b081103b6dfb3938172264d283a519bf728b9/opencv_python_headless-4.12.0.88-cp37-abi3-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:236c8df54a90f4d02076e6f9c1cc763d794542e886c576a6fee46ec8ff75a7a9", size = 54023419, upload-time = "2025-07-07T09:15:10.164Z" }, + { url = "https://files.pythonhosted.org/packages/bf/9c/a76fd5414de6ec9f21f763a600058a0c3e290053cea87e0275692b1375c0/opencv_python_headless-4.12.0.88-cp37-abi3-win32.whl", hash = "sha256:fde2cf5c51e4def5f2132d78e0c08f9c14783cd67356922182c6845b9af87dbd", size = 30225230, upload-time = "2025-07-07T09:15:17.045Z" }, + { url = "https://files.pythonhosted.org/packages/f2/35/0858e9e71b36948eafbc5e835874b63e515179dc3b742cbe3d76bc683439/opencv_python_headless-4.12.0.88-cp37-abi3-win_amd64.whl", hash = "sha256:86b413bdd6c6bf497832e346cd5371995de148e579b9774f8eba686dee3f5528", size = 38923559, upload-time = "2025-07-07T09:15:25.229Z" }, +] + [[package]] name = "opendatasets" version = "0.1.22" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "click" }, - { name = "kaggle", version = "1.7.4.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "kaggle", version = "1.8.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "kaggle", version = "1.7.4.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "kaggle", version = "1.8.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "tqdm" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1a/09/d833ab8037b6482166373fadd166067615b2f1c55df3f97c1f3657ee19ca/opendatasets-0.1.22.tar.gz", hash = "sha256:52b2e0c1cc80d9f44842e3373532d92683f7c0f5c3e72b3f1f3e2750d30da4db", size = 10037, upload-time = "2022-04-04T06:07:13.008Z" } @@ -5514,33 +6807,35 @@ name = "optype" version = "0.9.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/88/3c/9d59b0167458b839273ad0c4fc5f62f787058d8f5aed7f71294963a99471/optype-0.9.3.tar.gz", hash = "sha256:5f09d74127d316053b26971ce441a4df01f3a01943601d3712dd6f34cdfbaf48", size = 96143, upload-time = "2025-03-31T17:00:08.392Z" } wheels = [ @@ -5552,105 +6847,113 @@ name = "optype" version = "0.15.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "typing-extensions", marker = "(python_full_version >= '3.11' and python_full_version < '3.13') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "typing-extensions", marker = "(python_full_version >= '3.11' and python_full_version < '3.13') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d7/93/6b9e43138ce36fbad134bd1a50460a7bbda61105b5a964e4cf773fe4d845/optype-0.15.0.tar.gz", hash = "sha256:457d6ca9e7da19967ec16d42bdf94e240b33b5d70a56fbbf5b427e5ea39cf41e", size = 99978, upload-time = "2025-12-08T12:32:41.422Z" } wheels = [ @@ -5659,8 +6962,10 @@ wheels = [ [package.optional-dependencies] numpy = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy-typing-compat", marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy-typing-compat", version = "20251206.2.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy-typing-compat", version = "20251206.2.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] [[package]] @@ -5744,6 +7049,46 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/8f/dd/f4fff4a6fe601b4f8f3ba3aa6da8ac33d17d124491a3b804c662a70e1636/orjson-3.11.5-cp314-cp314-win_arm64.whl", hash = "sha256:38b22f476c351f9a1c43e5b07d8b5a02eb24a6ab8e75f700f7d479d4568346a5", size = 126713, upload-time = "2025-12-06T15:55:19.738Z" }, ] +[[package]] +name = "outlines-core" +version = "0.2.11" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/1a/d3/e04e9145f8f806723dec9b9e5227ad695a3efcd3ced7794cf7c22b15df5e/outlines_core-0.2.11.tar.gz", hash = "sha256:dfce56f717ff5083e54cbcfdb66cad243365437fccbb5509adaa7e31e030f1d8", size = 197263, upload-time = "2025-05-19T10:12:51.719Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/cf/8f/83c83e2afd142067c7f3cf2e152809195eee72d6a9b6c8745f13b827273d/outlines_core-0.2.11-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:89d79d8454b321f60047541a896d410ca9db631d241960266c4fe839cf5cd1b1", size = 1961650, upload-time = "2025-05-19T10:11:53.12Z" }, + { url = "https://files.pythonhosted.org/packages/f5/e9/c6b99b4364b7026b71badc06b9809a2fc4154d6b0c475bc03ab4471f81e5/outlines_core-0.2.11-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:44d581893f8644da02db7be11887229a40d26077cbdd22072ad1ed1db0ad0b2d", size = 2133920, upload-time = "2025-05-19T10:11:55.15Z" }, + { url = "https://files.pythonhosted.org/packages/f7/b8/cfa2bd8e1260eb1870c42a1a34389e9673a12335d09004ea6f1c82266a5e/outlines_core-0.2.11-cp310-cp310-macosx_15_0_arm64.whl", hash = "sha256:e88b7f717915d91136d915adb65c2603d2aa6457ec3fc336884bdb0b28d3188a", size = 1960688, upload-time = "2025-05-19T10:11:56.773Z" }, + { url = "https://files.pythonhosted.org/packages/b9/02/4cffd04e360e315b060692bf1a80f84bac1671ef90f12daf765db6d68791/outlines_core-0.2.11-cp310-cp310-macosx_15_0_x86_64.whl", hash = "sha256:8c7ecdba2162e9b30b837251387c26b1a23f80f58d01d02e7600e4b1962c5333", size = 2130263, upload-time = "2025-05-19T10:11:58.1Z" }, + { url = "https://files.pythonhosted.org/packages/4e/85/69a450a486824026eca181a8d573aae3ecfdb25f0c2af852065dde17a372/outlines_core-0.2.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd5fcefd221c10c95ce74838869450c6fdbbe2f581f0ba27e57a95232bd88c3a", size = 2289453, upload-time = "2025-05-19T10:11:59.919Z" }, + { url = "https://files.pythonhosted.org/packages/d1/3c/d7cb3eac6870a68b9034854fbfa07e67abfa1fa0d92198b9fee83fe6d044/outlines_core-0.2.11-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a3c7774b112106f3afe931c65637fb3e0725d43707ceff1d34d6899cf0fa8200", size = 2115289, upload-time = "2025-05-19T10:12:01.527Z" }, + { url = "https://files.pythonhosted.org/packages/cc/5f/4cef22e2cf1ec286bd78c0052a0fa7ecf8519144477e7d4e276cbd70c625/outlines_core-0.2.11-cp310-cp310-win32.whl", hash = "sha256:1cfbb4cdcf34be5c6b08d279928b2b1050ed4c5e96e6e8405e3e624305c6799e", size = 1768059, upload-time = "2025-05-19T10:12:03.058Z" }, + { url = "https://files.pythonhosted.org/packages/4a/3a/ce6aceb6545bb1e13cf05c1f34468c5c14c8c8be92cdabcf777b4bb067ef/outlines_core-0.2.11-cp310-cp310-win_amd64.whl", hash = "sha256:670c1c1fca26fb5c7f00dbb11d1f81cca4204863c3dfdeee82017a6846397bf9", size = 2062413, upload-time = "2025-05-19T10:12:05.097Z" }, + { url = "https://files.pythonhosted.org/packages/4d/ca/d5e92e197b40f62deb46dcc55567a51c8bf37943df7bc6658d93f30740f1/outlines_core-0.2.11-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:e96b8d0b56afcd3b86f4efca466c578f3725da1148ef62423249c92993841762", size = 1961746, upload-time = "2025-05-19T10:12:06.723Z" }, + { url = "https://files.pythonhosted.org/packages/02/b2/f3d6e7e37ebe1de3c345b53d8dc01e9b5c5f05b20e494fe94bf8972db4b0/outlines_core-0.2.11-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:d108ee8cd5e2fe71c2b0720b949d004901fec8bdb64bcd0c01b8abe38ab7ae1c", size = 2133815, upload-time = "2025-05-19T10:12:07.934Z" }, + { url = "https://files.pythonhosted.org/packages/07/21/62a680da6941b53d765160d22bdcf35849c22b7a987f4e9e8b7db7885c9f/outlines_core-0.2.11-cp311-cp311-macosx_15_0_arm64.whl", hash = "sha256:ebf42ab5b7ae38235d3c3333b5cacd6e91449b87b8a48a85094ea28ad9de9878", size = 1960539, upload-time = "2025-05-19T10:12:09.23Z" }, + { url = "https://files.pythonhosted.org/packages/5f/57/20cfb402aee1a7be0e08d861349570255ad2d17ba7fe7f8fd5706326588c/outlines_core-0.2.11-cp311-cp311-macosx_15_0_x86_64.whl", hash = "sha256:fd4305ff8418d14059d95dc3276ca96ba1b5aa499908e1af8bb3c7207aa7ac68", size = 2129894, upload-time = "2025-05-19T10:12:10.534Z" }, + { url = "https://files.pythonhosted.org/packages/4c/db/32c6e1170f139420e948fdd18a09a6175244bc0760dcf4dc2470e18411b9/outlines_core-0.2.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:132605b8dd1e3d1369da6a851992dd357f6376068292f6bd47caa7a28b794d19", size = 2289078, upload-time = "2025-05-19T10:12:12.118Z" }, + { url = "https://files.pythonhosted.org/packages/25/c3/b6e6f4e08fa84d2424f82705a6dc47fee33cb91989010fa678736957dcf6/outlines_core-0.2.11-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:b31d5fc83b78aad282dd667b8d6e684614481fe08a7609ce0ce45dee64cd2991", size = 2115075, upload-time = "2025-05-19T10:12:13.761Z" }, + { url = "https://files.pythonhosted.org/packages/d4/9b/b84c4933e4f35b34e9b23fadd63a365ad8563cc7561d8528b33de4ee8102/outlines_core-0.2.11-cp311-cp311-win32.whl", hash = "sha256:3e316a79f3ecfa12c17746edebcbd66538ee22a43986982f6b96166fb94ee6b1", size = 1768254, upload-time = "2025-05-19T10:12:15.02Z" }, + { url = "https://files.pythonhosted.org/packages/99/5b/380c933c65ca9744c163fe4a3702ad7f3e9ca02e09ac84a09b6837cff9b6/outlines_core-0.2.11-cp311-cp311-win_amd64.whl", hash = "sha256:c260a042b5854ff69291649cfd112066e6bab0dad0bb9cec8a6c3705ef3a59cd", size = 2062167, upload-time = "2025-05-19T10:12:16.443Z" }, + { url = "https://files.pythonhosted.org/packages/5f/2c/c7636823244c70e2960060bf9bd978248dffb55c5e7c91c46d18354b2a24/outlines_core-0.2.11-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:4a9db4872bae083631d720994f4cee603bce0536b33d5a988814576863b657cf", size = 1957668, upload-time = "2025-05-19T10:12:18.29Z" }, + { url = "https://files.pythonhosted.org/packages/c7/09/5c62047da139d722317a444a4d01cd5f11943a8c2eaecce784341dd0844a/outlines_core-0.2.11-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:8359a45c59f6a8f2eb717245806501a59044c75f6ea8bd08faaa131cc8cdec45", size = 2130493, upload-time = "2025-05-19T10:12:19.537Z" }, + { url = "https://files.pythonhosted.org/packages/89/7a/d6a2810f90e37d550168e0c0a9a915086ea721444727e3ca2c630898d1ef/outlines_core-0.2.11-cp312-cp312-macosx_15_0_arm64.whl", hash = "sha256:5d26a46591377340e0b870b8a96ea8341058341a62ee0bded9098e0c88dd24f4", size = 1956804, upload-time = "2025-05-19T10:12:20.755Z" }, + { url = "https://files.pythonhosted.org/packages/ca/ea/339e6c273b5581128c3b7ca27d428d8993c3085912af1a467aa32ef0e9d1/outlines_core-0.2.11-cp312-cp312-macosx_15_0_x86_64.whl", hash = "sha256:ae460a34675fb11d92a5c605a480fbae4cd6c1b2d11b3698da64a7fcaba64dcf", size = 2127085, upload-time = "2025-05-19T10:12:22.02Z" }, + { url = "https://files.pythonhosted.org/packages/92/c7/a65d1fddf49830ebc41422294eacde35286d9f68994a8aa905cb14f5aade/outlines_core-0.2.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86df9740368866295077346440d911df4972da2b3f1f54b8125e6f329e8a8891", size = 2287677, upload-time = "2025-05-19T10:12:24.24Z" }, + { url = "https://files.pythonhosted.org/packages/23/79/8795aed8be9b77dd69d78e7cfbfcf28c179e6b08da6e56bbbf48a09fe55f/outlines_core-0.2.11-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:96ce4dd78f106799be4a0a5795cefd1352806162973756a4b6fce4bb6eddd7e4", size = 2113000, upload-time = "2025-05-19T10:12:25.446Z" }, + { url = "https://files.pythonhosted.org/packages/59/e3/cbe9294b06d92ee1892dbb6f2125d833d68e8629d45d080d6daba54eec2d/outlines_core-0.2.11-cp312-cp312-win32.whl", hash = "sha256:358db161cce3650ba822e118dcf0a1efa571c7deb4864ab9d64ca2c9cca7425d", size = 1765703, upload-time = "2025-05-19T10:12:26.693Z" }, + { url = "https://files.pythonhosted.org/packages/1d/c9/ed3cf362515fac16e313368b9b2f2497051f4ded88679205830b6f889f54/outlines_core-0.2.11-cp312-cp312-win_amd64.whl", hash = "sha256:231f9d20d2630c70665345821780d7808b29539620a75c99f65113b518c51032", size = 2060945, upload-time = "2025-05-19T10:12:28.294Z" }, + { url = "https://files.pythonhosted.org/packages/11/58/df6f57546f7792c990a4380ceaf99243a0b26b24c199e34e0a9277c89976/outlines_core-0.2.11-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:0907ff25d79edbf8650268028de85a1b41b38696f147059e007da4626a1031f1", size = 1957172, upload-time = "2025-05-19T10:12:29.737Z" }, + { url = "https://files.pythonhosted.org/packages/9b/cf/b07e33c44544e7865ec481554788807dfa6ad10fd86191ad21f2200f145e/outlines_core-0.2.11-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:f4146da5957f97550eebd19e80635e48035886fd10f03e9735cc111caaf74e93", size = 2130284, upload-time = "2025-05-19T10:12:31.408Z" }, + { url = "https://files.pythonhosted.org/packages/83/70/8f981706e2620914c48fd1edb42f9409d76b84c72149d48e89d14820fab6/outlines_core-0.2.11-cp313-cp313-macosx_15_0_arm64.whl", hash = "sha256:8776a6db8843187c90e4c54bf94510cda68ca7a11c9b48d90587179fd3224bc2", size = 1956727, upload-time = "2025-05-19T10:12:32.996Z" }, + { url = "https://files.pythonhosted.org/packages/89/de/fba234a9c3984408f017ee0b1ca2e9d6191f8086afa649d3e4b04ed055e2/outlines_core-0.2.11-cp313-cp313-macosx_15_0_x86_64.whl", hash = "sha256:d44f38a89028bed50494420b47d08ebefa78f34b129e2ea6383c801e5ba62c26", size = 2126905, upload-time = "2025-05-19T10:12:34.261Z" }, + { url = "https://files.pythonhosted.org/packages/87/96/7dcdc5198844145ab35528f9f93a58c3d47b87e54d0f79357c631d7b7a9a/outlines_core-0.2.11-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:daef6eaaf8c3403455ab5cbf265cb5c6838df571eb7c4b23cddac19cfc701726", size = 2287320, upload-time = "2025-05-19T10:12:35.515Z" }, + { url = "https://files.pythonhosted.org/packages/4d/68/b420b6a3beaadbf8e9f2a82132120027efd6424634013fbeca8c2fed7467/outlines_core-0.2.11-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:76b2512417c68863f8f227a080e87f755682dfd895e23b021121318be11da579", size = 2112861, upload-time = "2025-05-19T10:12:36.742Z" }, + { url = "https://files.pythonhosted.org/packages/78/d6/7c2a016f7a5eab2f3df2b3a258f270872c78fe0dd7d9fbee87429f1b6b1f/outlines_core-0.2.11-cp313-cp313-win32.whl", hash = "sha256:707eeb3d190485f55a27ad9a6ad70df86688fa2bf405894a118283be7f59bd55", size = 1765574, upload-time = "2025-05-19T10:12:37.98Z" }, + { url = "https://files.pythonhosted.org/packages/a5/39/4c07f1d1f8e6ed85db9fe73a021113795a05aae8a84f36f0bdebb08bfde8/outlines_core-0.2.11-cp313-cp313-win_amd64.whl", hash = "sha256:ad46698564c9b13cbfbc744067de12be73bd740d7b2de20ec6b979ad7511f7c9", size = 2060567, upload-time = "2025-05-19T10:12:39.228Z" }, +] + [[package]] name = "packaging" version = "25.0" @@ -5767,8 +7112,8 @@ name = "pandas" version = "2.3.3" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "python-dateutil" }, { name = "pytz" }, { name = "tzdata" }, @@ -5829,8 +7174,8 @@ name = "pandas-stubs" version = "2.3.3.251219" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "types-pytz" }, ] sdist = { url = "https://files.pythonhosted.org/packages/95/ee/5407e9e63d22a47774f9246ca80b24f82c36f26efd39f9e3c5b584b915aa/pandas_stubs-2.3.3.251219.tar.gz", hash = "sha256:dc2883e6daff49d380d1b5a2e864983ab9be8cd9a661fa861e3dea37559a5af4", size = 106899, upload-time = "2025-12-19T15:49:53.766Z" } @@ -5847,6 +7192,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/16/32/f8e3c85d1d5250232a5d3477a2a28cc291968ff175caeadaf3cc19ce0e4a/parso-0.8.5-py2.py3-none-any.whl", hash = "sha256:646204b5ee239c396d040b90f9e272e9a8017c630092bf59980beb62fd033887", size = 106668, upload-time = "2025-08-23T15:15:25.663Z" }, ] +[[package]] +name = "partial-json-parser" +version = "0.2.1.1.post7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/6a/6d/eed37d7ebc1e0bcd27b831c0cf1fe94881934316187c4b30d23f29ea0bd4/partial_json_parser-0.2.1.1.post7.tar.gz", hash = "sha256:86590e1ba6bcb6739a2dfc17d2323f028cb5884f4c6ce23db376999132c9a922", size = 10296, upload-time = "2025-11-17T07:27:41.202Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/32/658973117bf0fd82a24abbfb94fe73a5e86216e49342985e10acce54775a/partial_json_parser-0.2.1.1.post7-py3-none-any.whl", hash = "sha256:145119e5eabcf80cbb13844a6b50a85c68bf99d376f8ed771e2a3c3b03e653ae", size = 10877, upload-time = "2025-11-17T07:27:40.457Z" }, +] + [[package]] name = "pathspec" version = "0.12.1" @@ -5871,17 +7225,17 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "accelerate", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "huggingface-hub", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm')" }, - { name = "packaging", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "psutil", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "pyyaml", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "safetensors", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "tqdm", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "accelerate", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "huggingface-hub", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "packaging", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "psutil", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "pyyaml", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "safetensors", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "tqdm", marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/70/b8/2e79377efaa1e5f0d70a497db7914ffd355846e760ffa2f7883ab0f600fb/peft-0.17.1.tar.gz", hash = "sha256:e6002b42517976c290b3b8bbb9829a33dd5d470676b2dec7cb4df8501b77eb9f", size = 568192, upload-time = "2025-08-21T09:25:22.703Z" } wheels = [ @@ -5893,127 +7247,138 @@ name = "peft" version = "0.18.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "accelerate", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "huggingface-hub", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "packaging", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "psutil", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "pyyaml", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "safetensors", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "tqdm", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, - { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "accelerate", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "huggingface-hub", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "packaging", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "psutil", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "pyyaml", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "safetensors", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "tqdm", marker = "python_full_version >= '3.14' or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, + { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4b/0c/f2938db546ac7fc961ab5917cd50fcf5d0d70b406de93e3faccaa504e152/peft-0.18.0.tar.gz", hash = "sha256:c81c80b2056ab40c23d58ef25f74daab417ac653970718589a11a8af28218588", size = 634141, upload-time = "2025-11-13T11:13:06.603Z" } wheels = [ @@ -6284,6 +7649,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b8/db/14bafcb4af2139e046d03fd00dea7873e48eafe18b7d2797e73d6681f210/prometheus_client-0.23.1-py3-none-any.whl", hash = "sha256:dd1913e6e76b59cfe44e7a4b83e01afc9873c1bdfd2ed8739f1e76aeca115f99", size = 61145, upload-time = "2025-09-18T20:47:23.875Z" }, ] +[[package]] +name = "prometheus-fastapi-instrumentator" +version = "7.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "prometheus-client" }, + { name = "starlette" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/69/6d/24d53033cf93826aa7857699a4450c1c67e5b9c710e925b1ed2b320c04df/prometheus_fastapi_instrumentator-7.1.0.tar.gz", hash = "sha256:be7cd61eeea4e5912aeccb4261c6631b3f227d8924542d79eaf5af3f439cbe5e", size = 20220, upload-time = "2025-03-19T19:35:05.351Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/27/72/0824c18f3bc75810f55dacc2dd933f6ec829771180245ae3cc976195dec0/prometheus_fastapi_instrumentator-7.1.0-py3-none-any.whl", hash = "sha256:978130f3c0bb7b8ebcc90d35516a6fe13e02d2eb358c8f83887cdef7020c31e9", size = 19296, upload-time = "2025-03-19T19:35:04.323Z" }, +] + [[package]] name = "prompt-toolkit" version = "3.0.52" @@ -6567,6 +7945,179 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/47/8d/d529b5d697919ba8c11ad626e835d4039be708a35b0d22de83a269a6682c/pyasn1_modules-0.4.2-py3-none-any.whl", hash = "sha256:29253a9207ce32b64c3ac6600edc75368f98473906e8fd1043bd6b5b1de2c14a", size = 181259, upload-time = "2025-03-28T02:41:19.028Z" }, ] +[[package]] +name = "pybase64" +version = "1.4.3" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/aa/b8/4ed5c7ad5ec15b08d35cc79ace6145d5c1ae426e46435f4987379439dfea/pybase64-1.4.3.tar.gz", hash = "sha256:c2ed274c9e0ba9c8f9c4083cfe265e66dd679126cd9c2027965d807352f3f053", size = 137272, upload-time = "2025-12-06T13:27:04.013Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/47/16d7af6fae7803f4c691856bc0d8d433ccf30e106432e2ef7707ee19a38a/pybase64-1.4.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f63aa7f29139b8a05ce5f97cdb7fad63d29071e5bdc8a638a343311fe996112a", size = 38241, upload-time = "2025-12-06T13:22:27.396Z" }, + { url = "https://files.pythonhosted.org/packages/4d/3e/268beb8d2240ab55396af4d1b45d2494935982212549b92a5f5b57079bd3/pybase64-1.4.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f5943ec1ae87a8b4fe310905bb57205ea4330c75e2c628433a7d9dd52295b588", size = 31672, upload-time = "2025-12-06T13:22:28.854Z" }, + { url = "https://files.pythonhosted.org/packages/80/14/4365fa33222edcc46b6db4973f9e22bda82adfb6ab2a01afff591f1e41c8/pybase64-1.4.3-cp310-cp310-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:5f2b8aef86f35cd5894c13681faf433a1fffc5b2e76544dcb5416a514a1a8347", size = 65978, upload-time = "2025-12-06T13:22:30.191Z" }, + { url = "https://files.pythonhosted.org/packages/1c/22/e89739d8bc9b96c68ead44b4eec42fe555683d9997e4ba65216d384920fc/pybase64-1.4.3-cp310-cp310-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a6ec7e53dd09b0a8116ccf5c3265c7c7fce13c980747525be76902aef36a514a", size = 68903, upload-time = "2025-12-06T13:22:31.29Z" }, + { url = "https://files.pythonhosted.org/packages/77/e1/7e59a19f8999cdefe9eb0d56bfd701dd38263b0f6fb4a4d29fce165a1b36/pybase64-1.4.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7528604cd69c538e1dbaafded46e9e4915a2adcd6f2a60fcef6390d87ca922ea", size = 57516, upload-time = "2025-12-06T13:22:32.395Z" }, + { url = "https://files.pythonhosted.org/packages/42/ad/f47dc7e6fe32022b176868b88b671a32dab389718c8ca905cab79280aaaf/pybase64-1.4.3-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:4ec645f32b50593879031e09158f8681a1db9f5df0f72af86b3969a1c5d1fa2b", size = 54533, upload-time = "2025-12-06T13:22:33.457Z" }, + { url = "https://files.pythonhosted.org/packages/7c/9a/7ab312b5a324833953b00e47b23eb4f83d45bd5c5c854b4b4e51b2a0cf5b/pybase64-1.4.3-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:634a000c5b3485ccc18bb9b244e0124f74b6fbc7f43eade815170237a7b34c64", size = 57187, upload-time = "2025-12-06T13:22:34.566Z" }, + { url = "https://files.pythonhosted.org/packages/2c/84/80acab1fcbaaae103e6b862ef5019192c8f2cd8758433595a202179a0d1d/pybase64-1.4.3-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:309ea32ad07639a485580af1be0ad447a434deb1924e76adced63ac2319cfe15", size = 57730, upload-time = "2025-12-06T13:22:35.581Z" }, + { url = "https://files.pythonhosted.org/packages/1f/24/84256d472400ea3163d7d69c44bb7e2e1027f0f1d4d20c47629a7dc4578e/pybase64-1.4.3-cp310-cp310-manylinux_2_31_riscv64.whl", hash = "sha256:d10d517566b748d3f25f6ac7162af779360c1c6426ad5f962927ee205990d27c", size = 53036, upload-time = "2025-12-06T13:22:36.621Z" }, + { url = "https://files.pythonhosted.org/packages/a3/0f/33aecbed312ee0431798a73fa25e00dedbffdd91389ee23121fed397c550/pybase64-1.4.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a74cc0f4d835400857cc5c6d27ec854f7949491e07a04e6d66e2137812831f4c", size = 56321, upload-time = "2025-12-06T13:22:37.7Z" }, + { url = "https://files.pythonhosted.org/packages/dc/1c/a341b050746658cbec8cab3c733aeb3ef52ce8f11e60d0d47adbdf729ebf/pybase64-1.4.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:1b591d774ac09d5eb73c156a03277cb271438fbd8042bae4109ff3a827cd218c", size = 50114, upload-time = "2025-12-06T13:22:38.752Z" }, + { url = "https://files.pythonhosted.org/packages/ba/d3/f7e6680ae6dc4ddff39112ad66e0fa6b2ec346e73881bafc08498c560bc0/pybase64-1.4.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:5eb588d35a04302ef6157d17db62354a787ac6f8b1585dd0b90c33d63a97a550", size = 66570, upload-time = "2025-12-06T13:22:40.221Z" }, + { url = "https://files.pythonhosted.org/packages/4c/71/774748eecc7fe23869b7e5df028e3c4c2efa16b506b83ea3fa035ea95dc2/pybase64-1.4.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:df8b122d5be2c96962231cc4831d9c2e1eae6736fb12850cec4356d8b06fe6f8", size = 55700, upload-time = "2025-12-06T13:22:41.289Z" }, + { url = "https://files.pythonhosted.org/packages/b3/91/dd15075bb2fe0086193e1cd4bad80a43652c38d8a572f9218d46ba721802/pybase64-1.4.3-cp310-cp310-musllinux_1_2_riscv64.whl", hash = "sha256:31b7a85c661fc591bbcce82fb8adaebe2941e6a83b08444b0957b77380452a4b", size = 52491, upload-time = "2025-12-06T13:22:42.628Z" }, + { url = "https://files.pythonhosted.org/packages/7b/27/f357d63ea3774c937fc47160e040419ed528827aa3d4306d5ec9826259c0/pybase64-1.4.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:e6d7beaae65979fef250e25e66cf81c68a8f81910bcda1a2f43297ab486a7e4e", size = 53957, upload-time = "2025-12-06T13:22:44.615Z" }, + { url = "https://files.pythonhosted.org/packages/b3/c3/243693771701a54e67ff5ccbf4c038344f429613f5643169a7befc51f007/pybase64-1.4.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:4a6276bc3a3962d172a2b5aba544d89881c4037ea954517b86b00892c703d007", size = 68422, upload-time = "2025-12-06T13:22:45.641Z" }, + { url = "https://files.pythonhosted.org/packages/75/95/f987081bf6bc1d1eda3012dae1b06ad427732ef9933a632cb8b58f9917f8/pybase64-1.4.3-cp310-cp310-win32.whl", hash = "sha256:4bdd07ef017515204ee6eaab17e1ad05f83c0ccb5af8ae24a0fe6d9cb5bb0b7a", size = 33622, upload-time = "2025-12-06T13:22:47.348Z" }, + { url = "https://files.pythonhosted.org/packages/79/28/c169a769fe90128f16d394aad87b2096dd4bf2f035ae0927108a46b617df/pybase64-1.4.3-cp310-cp310-win_amd64.whl", hash = "sha256:5db0b6bbda15110db2740c61970a8fda3bf9c93c3166a3f57f87c7865ed1125c", size = 35799, upload-time = "2025-12-06T13:22:48.731Z" }, + { url = "https://files.pythonhosted.org/packages/ab/f2/bdbe6af0bd4f3fe5bc70e77ead7f7d523bb9d3ca3ad50ac42b9adbb9ca14/pybase64-1.4.3-cp310-cp310-win_arm64.whl", hash = "sha256:f96367dfc82598569aa02b1103ebd419298293e59e1151abda2b41728703284b", size = 31158, upload-time = "2025-12-06T13:22:50.021Z" }, + { url = "https://files.pythonhosted.org/packages/2b/63/21e981e9d3f1f123e0b0ee2130112b1956cad9752309f574862c7ae77c08/pybase64-1.4.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:70b0d4a4d54e216ce42c2655315378b8903933ecfa32fced453989a92b4317b2", size = 38237, upload-time = "2025-12-06T13:22:52.159Z" }, + { url = "https://files.pythonhosted.org/packages/92/fb/3f448e139516404d2a3963915cc10dc9dde7d3a67de4edba2f827adfef17/pybase64-1.4.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:8127f110cdee7a70e576c5c9c1d4e17e92e76c191869085efbc50419f4ae3c72", size = 31673, upload-time = "2025-12-06T13:22:53.241Z" }, + { url = "https://files.pythonhosted.org/packages/3c/fb/bb06a5b9885e7d853ac1e801c4d8abfdb4c8506deee33e53d55aa6690e67/pybase64-1.4.3-cp311-cp311-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:f9ef0388878bc15a084bd9bf73ec1b2b4ee513d11009b1506375e10a7aae5032", size = 68331, upload-time = "2025-12-06T13:22:54.197Z" }, + { url = "https://files.pythonhosted.org/packages/64/15/8d60b9ec5e658185fc2ee3333e01a6e30d717cf677b24f47cbb3a859d13c/pybase64-1.4.3-cp311-cp311-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95a57cccf106352a72ed8bc8198f6820b16cc7d55aa3867a16dea7011ae7c218", size = 71370, upload-time = "2025-12-06T13:22:55.517Z" }, + { url = "https://files.pythonhosted.org/packages/ac/29/a3e5c1667cc8c38d025a4636855de0fc117fc62e2afeb033a3c6f12c6a22/pybase64-1.4.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:7cd1c47dfceb9c7bd3de210fb4e65904053ed2d7c9dce6d107f041ff6fbd7e21", size = 59834, upload-time = "2025-12-06T13:22:56.682Z" }, + { url = "https://files.pythonhosted.org/packages/a9/00/8ffcf9810bd23f3984698be161cf7edba656fd639b818039a7be1d6405d4/pybase64-1.4.3-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:9fe9922698f3e2f72874b26890d53a051c431d942701bb3a37aae94da0b12107", size = 56652, upload-time = "2025-12-06T13:22:57.724Z" }, + { url = "https://files.pythonhosted.org/packages/81/62/379e347797cdea4ab686375945bc77ad8d039c688c0d4d0cfb09d247beb9/pybase64-1.4.3-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:af5f4bd29c86b59bb4375e0491d16ec8a67548fa99c54763aaedaf0b4b5a6632", size = 59382, upload-time = "2025-12-06T13:22:58.758Z" }, + { url = "https://files.pythonhosted.org/packages/c6/f2/9338ffe2f487086f26a2c8ca175acb3baa86fce0a756ff5670a0822bb877/pybase64-1.4.3-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:c302f6ca7465262908131411226e02100f488f531bb5e64cb901aa3f439bccd9", size = 59990, upload-time = "2025-12-06T13:23:01.007Z" }, + { url = "https://files.pythonhosted.org/packages/f9/a4/85a6142b65b4df8625b337727aa81dc199642de3d09677804141df6ee312/pybase64-1.4.3-cp311-cp311-manylinux_2_31_riscv64.whl", hash = "sha256:2f3f439fa4d7fde164ebbbb41968db7d66b064450ab6017c6c95cef0afa2b349", size = 54923, upload-time = "2025-12-06T13:23:02.369Z" }, + { url = "https://files.pythonhosted.org/packages/ac/00/e40215d25624012bf5b7416ca37f168cb75f6dd15acdb91ea1f2ea4dc4e7/pybase64-1.4.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:7a23c6866551043f8b681a5e1e0d59469148b2920a3b4fc42b1275f25ea4217a", size = 58664, upload-time = "2025-12-06T13:23:03.378Z" }, + { url = "https://files.pythonhosted.org/packages/b0/73/d7e19a63e795c13837f2356268d95dc79d1180e756f57ced742a1e52fdeb/pybase64-1.4.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:56e6526f8565642abc5f84338cc131ce298a8ccab696b19bdf76fa6d7dc592ef", size = 52338, upload-time = "2025-12-06T13:23:04.458Z" }, + { url = "https://files.pythonhosted.org/packages/f2/32/3c746d7a310b69bdd9df77ffc85c41b80bce00a774717596f869b0d4a20e/pybase64-1.4.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6a792a8b9d866ffa413c9687d9b611553203753987a3a582d68cbc51cf23da45", size = 68993, upload-time = "2025-12-06T13:23:05.526Z" }, + { url = "https://files.pythonhosted.org/packages/5d/b3/63cec68f9d6f6e4c0b438d14e5f1ef536a5fe63ce14b70733ac5e31d7ab8/pybase64-1.4.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:62ad29a5026bb22cfcd1ca484ec34b0a5ced56ddba38ceecd9359b2818c9c4f9", size = 58055, upload-time = "2025-12-06T13:23:06.931Z" }, + { url = "https://files.pythonhosted.org/packages/d5/cb/7acf7c3c06f9692093c07f109668725dc37fb9a3df0fa912b50add645195/pybase64-1.4.3-cp311-cp311-musllinux_1_2_riscv64.whl", hash = "sha256:11b9d1d2d32ec358c02214363b8fc3651f6be7dd84d880ecd597a6206a80e121", size = 54430, upload-time = "2025-12-06T13:23:07.936Z" }, + { url = "https://files.pythonhosted.org/packages/33/39/4eb33ff35d173bfff4002e184ce8907f5d0a42d958d61cd9058ef3570179/pybase64-1.4.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0aebaa7f238caa0a0d373616016e2040c6c879ebce3ba7ab3c59029920f13640", size = 56272, upload-time = "2025-12-06T13:23:09.253Z" }, + { url = "https://files.pythonhosted.org/packages/19/97/a76d65c375a254e65b730c6f56bf528feca91305da32eceab8bcc08591e6/pybase64-1.4.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e504682b20c63c2b0c000e5f98a80ea867f8d97642e042a5a39818e44ba4d599", size = 70904, upload-time = "2025-12-06T13:23:10.336Z" }, + { url = "https://files.pythonhosted.org/packages/5e/2c/8338b6d3da3c265002839e92af0a80d6db88385c313c73f103dfb800c857/pybase64-1.4.3-cp311-cp311-win32.whl", hash = "sha256:e9a8b81984e3c6fb1db9e1614341b0a2d98c0033d693d90c726677db1ffa3a4c", size = 33639, upload-time = "2025-12-06T13:23:11.9Z" }, + { url = "https://files.pythonhosted.org/packages/39/dc/32efdf2f5927e5449cc341c266a1bbc5fecd5319a8807d9c5405f76e6d02/pybase64-1.4.3-cp311-cp311-win_amd64.whl", hash = "sha256:a90a8fa16a901fabf20de824d7acce07586e6127dc2333f1de05f73b1f848319", size = 35797, upload-time = "2025-12-06T13:23:13.174Z" }, + { url = "https://files.pythonhosted.org/packages/da/59/eda4f9cb0cbce5a45f0cd06131e710674f8123a4d570772c5b9694f88559/pybase64-1.4.3-cp311-cp311-win_arm64.whl", hash = "sha256:61d87de5bc94d143622e94390ec3e11b9c1d4644fe9be3a81068ab0f91056f59", size = 31160, upload-time = "2025-12-06T13:23:15.696Z" }, + { url = "https://files.pythonhosted.org/packages/86/a7/efcaa564f091a2af7f18a83c1c4875b1437db56ba39540451dc85d56f653/pybase64-1.4.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:18d85e5ab8b986bb32d8446aca6258ed80d1bafe3603c437690b352c648f5967", size = 38167, upload-time = "2025-12-06T13:23:16.821Z" }, + { url = "https://files.pythonhosted.org/packages/db/c7/c7ad35adff2d272bf2930132db2b3eea8c44bb1b1f64eb9b2b8e57cde7b4/pybase64-1.4.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3f5791a3491d116d0deaf4d83268f48792998519698f8751efb191eac84320e9", size = 31673, upload-time = "2025-12-06T13:23:17.835Z" }, + { url = "https://files.pythonhosted.org/packages/43/1b/9a8cab0042b464e9a876d5c65fe5127445a2436da36fda64899b119b1a1b/pybase64-1.4.3-cp312-cp312-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:f0b3f200c3e06316f6bebabd458b4e4bcd4c2ca26af7c0c766614d91968dee27", size = 68210, upload-time = "2025-12-06T13:23:18.813Z" }, + { url = "https://files.pythonhosted.org/packages/62/f7/965b79ff391ad208b50e412b5d3205ccce372a2d27b7218ae86d5295b105/pybase64-1.4.3-cp312-cp312-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:bb632edfd132b3eaf90c39c89aa314beec4e946e210099b57d40311f704e11d4", size = 71599, upload-time = "2025-12-06T13:23:20.195Z" }, + { url = "https://files.pythonhosted.org/packages/03/4b/a3b5175130b3810bbb8ccfa1edaadbd3afddb9992d877c8a1e2f274b476e/pybase64-1.4.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:356ef1d74648ce997f5a777cf8f1aefecc1c0b4fe6201e0ef3ec8a08170e1b54", size = 59922, upload-time = "2025-12-06T13:23:21.487Z" }, + { url = "https://files.pythonhosted.org/packages/da/5d/c38d1572027fc601b62d7a407721688b04b4d065d60ca489912d6893e6cf/pybase64-1.4.3-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:c48361f90db32bacaa5518419d4eb9066ba558013aaf0c7781620279ecddaeb9", size = 56712, upload-time = "2025-12-06T13:23:22.77Z" }, + { url = "https://files.pythonhosted.org/packages/e7/d4/4e04472fef485caa8f561d904d4d69210a8f8fc1608ea15ebd9012b92655/pybase64-1.4.3-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:702bcaa16ae02139d881aeaef5b1c8ffb4a3fae062fe601d1e3835e10310a517", size = 59300, upload-time = "2025-12-06T13:23:24.543Z" }, + { url = "https://files.pythonhosted.org/packages/86/e7/16e29721b86734b881d09b7e23dfd7c8408ad01a4f4c7525f3b1088e25ec/pybase64-1.4.3-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:53d0ffe1847b16b647c6413d34d1de08942b7724273dd57e67dcbdb10c574045", size = 60278, upload-time = "2025-12-06T13:23:25.608Z" }, + { url = "https://files.pythonhosted.org/packages/b1/02/18515f211d7c046be32070709a8efeeef8a0203de4fd7521e6b56404731b/pybase64-1.4.3-cp312-cp312-manylinux_2_31_riscv64.whl", hash = "sha256:9a1792e8b830a92736dae58f0c386062eb038dfe8004fb03ba33b6083d89cd43", size = 54817, upload-time = "2025-12-06T13:23:26.633Z" }, + { url = "https://files.pythonhosted.org/packages/e7/be/14e29d8e1a481dbff151324c96dd7b5d2688194bb65dc8a00ca0e1ad1e86/pybase64-1.4.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1d468b1b1ac5ad84875a46eaa458663c3721e8be5f155ade356406848d3701f6", size = 58611, upload-time = "2025-12-06T13:23:27.684Z" }, + { url = "https://files.pythonhosted.org/packages/b4/8a/a2588dfe24e1bbd742a554553778ab0d65fdf3d1c9a06d10b77047d142aa/pybase64-1.4.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:e97b7bdbd62e71898cd542a6a9e320d9da754ff3ebd02cb802d69087ee94d468", size = 52404, upload-time = "2025-12-06T13:23:28.714Z" }, + { url = "https://files.pythonhosted.org/packages/27/fc/afcda7445bebe0cbc38cafdd7813234cdd4fc5573ff067f1abf317bb0cec/pybase64-1.4.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b33aeaa780caaa08ffda87fc584d5eab61e3d3bbb5d86ead02161dc0c20d04bc", size = 68817, upload-time = "2025-12-06T13:23:30.079Z" }, + { url = "https://files.pythonhosted.org/packages/d3/3a/87c3201e555ed71f73e961a787241a2438c2bbb2ca8809c29ddf938a3157/pybase64-1.4.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:1c0efcf78f11cf866bed49caa7b97552bc4855a892f9cc2372abcd3ed0056f0d", size = 57854, upload-time = "2025-12-06T13:23:31.17Z" }, + { url = "https://files.pythonhosted.org/packages/fd/7d/931c2539b31a7b375e7d595b88401eeb5bd6c5ce1059c9123f9b608aaa14/pybase64-1.4.3-cp312-cp312-musllinux_1_2_riscv64.whl", hash = "sha256:66e3791f2ed725a46593f8bd2761ff37d01e2cdad065b1dceb89066f476e50c6", size = 54333, upload-time = "2025-12-06T13:23:32.422Z" }, + { url = "https://files.pythonhosted.org/packages/de/5e/537601e02cc01f27e9d75f440f1a6095b8df44fc28b1eef2cd739aea8cec/pybase64-1.4.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:72bb0b6bddadab26e1b069bb78e83092711a111a80a0d6b9edcb08199ad7299b", size = 56492, upload-time = "2025-12-06T13:23:33.515Z" }, + { url = "https://files.pythonhosted.org/packages/96/97/2a2e57acf8f5c9258d22aba52e71f8050e167b29ed2ee1113677c1b600c1/pybase64-1.4.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:5b3365dbcbcdb0a294f0f50af0c0a16b27a232eddeeb0bceeefd844ef30d2a23", size = 70974, upload-time = "2025-12-06T13:23:36.27Z" }, + { url = "https://files.pythonhosted.org/packages/75/2e/a9e28941c6dab6f06e6d3f6783d3373044be9b0f9a9d3492c3d8d2260ac0/pybase64-1.4.3-cp312-cp312-win32.whl", hash = "sha256:7bca1ed3a5df53305c629ca94276966272eda33c0d71f862d2d3d043f1e1b91a", size = 33686, upload-time = "2025-12-06T13:23:37.848Z" }, + { url = "https://files.pythonhosted.org/packages/83/e3/507ab649d8c3512c258819c51d25c45d6e29d9ca33992593059e7b646a33/pybase64-1.4.3-cp312-cp312-win_amd64.whl", hash = "sha256:9f2da8f56d9b891b18b4daf463a0640eae45a80af548ce435be86aa6eff3603b", size = 35833, upload-time = "2025-12-06T13:23:38.877Z" }, + { url = "https://files.pythonhosted.org/packages/bc/8a/6eba66cd549a2fc74bb4425fd61b839ba0ab3022d3c401b8a8dc2cc00c7a/pybase64-1.4.3-cp312-cp312-win_arm64.whl", hash = "sha256:0631d8a2d035de03aa9bded029b9513e1fee8ed80b7ddef6b8e9389ffc445da0", size = 31185, upload-time = "2025-12-06T13:23:39.908Z" }, + { url = "https://files.pythonhosted.org/packages/3a/50/b7170cb2c631944388fe2519507fe3835a4054a6a12a43f43781dae82be1/pybase64-1.4.3-cp313-cp313-android_21_arm64_v8a.whl", hash = "sha256:ea4b785b0607d11950b66ce7c328f452614aefc9c6d3c9c28bae795dc7f072e1", size = 33901, upload-time = "2025-12-06T13:23:40.951Z" }, + { url = "https://files.pythonhosted.org/packages/48/8b/69f50578e49c25e0a26e3ee72c39884ff56363344b79fc3967f5af420ed6/pybase64-1.4.3-cp313-cp313-android_21_x86_64.whl", hash = "sha256:6a10b6330188c3026a8b9c10e6b9b3f2e445779cf16a4c453d51a072241c65a2", size = 40807, upload-time = "2025-12-06T13:23:42.006Z" }, + { url = "https://files.pythonhosted.org/packages/5c/8d/20b68f11adfc4c22230e034b65c71392e3e338b413bf713c8945bd2ccfb3/pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphoneos.whl", hash = "sha256:27fdff227a0c0e182e0ba37a99109645188978b920dfb20d8b9c17eeee370d0d", size = 30932, upload-time = "2025-12-06T13:23:43.348Z" }, + { url = "https://files.pythonhosted.org/packages/f7/79/b1b550ac6bff51a4880bf6e089008b2e1ca16f2c98db5e039a08ac3ad157/pybase64-1.4.3-cp313-cp313-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:2a8204f1fdfec5aa4184249b51296c0de95445869920c88123978304aad42df1", size = 31394, upload-time = "2025-12-06T13:23:44.317Z" }, + { url = "https://files.pythonhosted.org/packages/82/70/b5d7c5932bf64ee1ec5da859fbac981930b6a55d432a603986c7f509c838/pybase64-1.4.3-cp313-cp313-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:874fc2a3777de6baf6aa921a7aa73b3be98295794bea31bd80568a963be30767", size = 38078, upload-time = "2025-12-06T13:23:45.348Z" }, + { url = "https://files.pythonhosted.org/packages/56/fe/e66fe373bce717c6858427670736d54297938dad61c5907517ab4106bd90/pybase64-1.4.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:2dc64a94a9d936b8e3449c66afabbaa521d3cc1a563d6bbaaa6ffa4535222e4b", size = 38158, upload-time = "2025-12-06T13:23:46.872Z" }, + { url = "https://files.pythonhosted.org/packages/80/a9/b806ed1dcc7aed2ea3dd4952286319e6f3a8b48615c8118f453948e01999/pybase64-1.4.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e48f86de1c145116ccf369a6e11720ce696c2ec02d285f440dfb57ceaa0a6cb4", size = 31672, upload-time = "2025-12-06T13:23:47.88Z" }, + { url = "https://files.pythonhosted.org/packages/1c/c9/24b3b905cf75e23a9a4deaf203b35ffcb9f473ac0e6d8257f91a05dfce62/pybase64-1.4.3-cp313-cp313-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:1d45c8fe8fe82b65c36b227bb4a2cf623d9ada16bed602ce2d3e18c35285b72a", size = 68244, upload-time = "2025-12-06T13:23:49.026Z" }, + { url = "https://files.pythonhosted.org/packages/f8/cd/d15b0c3e25e5859fab0416dc5b96d34d6bd2603c1c96a07bb2202b68ab92/pybase64-1.4.3-cp313-cp313-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:ad70c26ba091d8f5167e9d4e1e86a0483a5414805cdb598a813db635bd3be8b8", size = 71620, upload-time = "2025-12-06T13:23:50.081Z" }, + { url = "https://files.pythonhosted.org/packages/0d/31/4ca953cc3dcde2b3711d6bfd70a6f4ad2ca95a483c9698076ba605f1520f/pybase64-1.4.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:e98310b7c43145221e7194ac9fa7fffc84763c87bfc5e2f59f9f92363475bdc1", size = 59930, upload-time = "2025-12-06T13:23:51.68Z" }, + { url = "https://files.pythonhosted.org/packages/60/55/e7f7bdcd0fd66e61dda08db158ffda5c89a306bbdaaf5a062fbe4e48f4a1/pybase64-1.4.3-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:398685a76034e91485a28aeebcb49e64cd663212fd697b2497ac6dfc1df5e671", size = 56425, upload-time = "2025-12-06T13:23:52.732Z" }, + { url = "https://files.pythonhosted.org/packages/cb/65/b592c7f921e51ca1aca3af5b0d201a98666d0a36b930ebb67e7c2ed27395/pybase64-1.4.3-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:7e46400a6461187ccb52ed75b0045d937529e801a53a9cd770b350509f9e4d50", size = 59327, upload-time = "2025-12-06T13:23:53.856Z" }, + { url = "https://files.pythonhosted.org/packages/23/95/1613d2fb82dbb1548595ad4179f04e9a8451bfa18635efce18b631eabe3f/pybase64-1.4.3-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:1b62b9f2f291d94f5e0b76ab499790b7dcc78a009d4ceea0b0428770267484b6", size = 60294, upload-time = "2025-12-06T13:23:54.937Z" }, + { url = "https://files.pythonhosted.org/packages/9d/73/40431f37f7d1b3eab4673e7946ff1e8f5d6bd425ec257e834dae8a6fc7b0/pybase64-1.4.3-cp313-cp313-manylinux_2_31_riscv64.whl", hash = "sha256:f30ceb5fa4327809dede614be586efcbc55404406d71e1f902a6fdcf322b93b2", size = 54858, upload-time = "2025-12-06T13:23:56.031Z" }, + { url = "https://files.pythonhosted.org/packages/a7/84/f6368bcaf9f743732e002a9858646fd7a54f428490d427dd6847c5cfe89e/pybase64-1.4.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0d5f18ed53dfa1d4cf8b39ee542fdda8e66d365940e11f1710989b3cf4a2ed66", size = 58629, upload-time = "2025-12-06T13:23:57.12Z" }, + { url = "https://files.pythonhosted.org/packages/43/75/359532f9adb49c6b546cafc65c46ed75e2ccc220d514ba81c686fbd83965/pybase64-1.4.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:119d31aa4b58b85a8ebd12b63c07681a138c08dfc2fe5383459d42238665d3eb", size = 52448, upload-time = "2025-12-06T13:23:58.298Z" }, + { url = "https://files.pythonhosted.org/packages/92/6c/ade2ba244c3f33ed920a7ed572ad772eb0b5f14480b72d629d0c9e739a40/pybase64-1.4.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:3cf0218b0e2f7988cf7d738a73b6a1d14f3be6ce249d7c0f606e768366df2cce", size = 68841, upload-time = "2025-12-06T13:23:59.886Z" }, + { url = "https://files.pythonhosted.org/packages/a0/51/b345139cd236be382f2d4d4453c21ee6299e14d2f759b668e23080f8663f/pybase64-1.4.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:12f4ee5e988bc5c0c1106b0d8fc37fb0508f12dab76bac1b098cb500d148da9d", size = 57910, upload-time = "2025-12-06T13:24:00.994Z" }, + { url = "https://files.pythonhosted.org/packages/1a/b8/9f84bdc4f1c4f0052489396403c04be2f9266a66b70c776001eaf0d78c1f/pybase64-1.4.3-cp313-cp313-musllinux_1_2_riscv64.whl", hash = "sha256:937826bc7b6b95b594a45180e81dd4d99bd4dd4814a443170e399163f7ff3fb6", size = 54335, upload-time = "2025-12-06T13:24:02.046Z" }, + { url = "https://files.pythonhosted.org/packages/d0/c7/be63b617d284de46578a366da77ede39c8f8e815ed0d82c7c2acca560fab/pybase64-1.4.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:88995d1460971ef80b13e3e007afbe4b27c62db0508bc7250a2ab0a0b4b91362", size = 56486, upload-time = "2025-12-06T13:24:03.141Z" }, + { url = "https://files.pythonhosted.org/packages/5e/96/f252c8f9abd6ded3ef1ccd3cdbb8393a33798007f761b23df8de1a2480e6/pybase64-1.4.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:72326fe163385ed3e1e806dd579d47fde5d8a59e51297a60fc4e6cbc1b4fc4ed", size = 70978, upload-time = "2025-12-06T13:24:04.221Z" }, + { url = "https://files.pythonhosted.org/packages/af/51/0f5714af7aeef96e30f968e4371d75ad60558aaed3579d7c6c8f1c43c18a/pybase64-1.4.3-cp313-cp313-win32.whl", hash = "sha256:b1623730c7892cf5ed0d6355e375416be6ef8d53ab9b284f50890443175c0ac3", size = 33684, upload-time = "2025-12-06T13:24:05.29Z" }, + { url = "https://files.pythonhosted.org/packages/b6/ad/0cea830a654eb08563fb8214150ef57546ece1cc421c09035f0e6b0b5ea9/pybase64-1.4.3-cp313-cp313-win_amd64.whl", hash = "sha256:8369887590f1646a5182ca2fb29252509da7ae31d4923dbb55d3e09da8cc4749", size = 35832, upload-time = "2025-12-06T13:24:06.35Z" }, + { url = "https://files.pythonhosted.org/packages/b4/0d/eec2a8214989c751bc7b4cad1860eb2c6abf466e76b77508c0f488c96a37/pybase64-1.4.3-cp313-cp313-win_arm64.whl", hash = "sha256:860b86bca71e5f0237e2ab8b2d9c4c56681f3513b1bf3e2117290c1963488390", size = 31175, upload-time = "2025-12-06T13:24:07.419Z" }, + { url = "https://files.pythonhosted.org/packages/db/c9/e23463c1a2913686803ef76b1a5ae7e6fac868249a66e48253d17ad7232c/pybase64-1.4.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:eb51db4a9c93215135dccd1895dca078e8785c357fabd983c9f9a769f08989a9", size = 38497, upload-time = "2025-12-06T13:24:08.873Z" }, + { url = "https://files.pythonhosted.org/packages/71/83/343f446b4b7a7579bf6937d2d013d82f1a63057cf05558e391ab6039d7db/pybase64-1.4.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a03ef3f529d85fd46b89971dfb00c634d53598d20ad8908fb7482955c710329d", size = 32076, upload-time = "2025-12-06T13:24:09.975Z" }, + { url = "https://files.pythonhosted.org/packages/46/fc/cb64964c3b29b432f54d1bce5e7691d693e33bbf780555151969ffd95178/pybase64-1.4.3-cp313-cp313t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:2e745f2ce760c6cf04d8a72198ef892015ddb89f6ceba489e383518ecbdb13ab", size = 72317, upload-time = "2025-12-06T13:24:11.129Z" }, + { url = "https://files.pythonhosted.org/packages/0a/b7/fab2240da6f4e1ad46f71fa56ec577613cf5df9dce2d5b4cfaa4edd0e365/pybase64-1.4.3-cp313-cp313t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:6fac217cd9de8581a854b0ac734c50fd1fa4b8d912396c1fc2fce7c230efe3a7", size = 75534, upload-time = "2025-12-06T13:24:12.433Z" }, + { url = "https://files.pythonhosted.org/packages/91/3b/3e2f2b6e68e3d83ddb9fa799f3548fb7449765daec9bbd005a9fbe296d7f/pybase64-1.4.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:da1ee8fa04b283873de2d6e8fa5653e827f55b86bdf1a929c5367aaeb8d26f8a", size = 65399, upload-time = "2025-12-06T13:24:13.928Z" }, + { url = "https://files.pythonhosted.org/packages/6b/08/476ac5914c3b32e0274a2524fc74f01cbf4f4af4513d054e41574eb018f6/pybase64-1.4.3-cp313-cp313t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:b0bf8e884ee822ca7b1448eeb97fa131628fe0ff42f60cae9962789bd562727f", size = 60487, upload-time = "2025-12-06T13:24:15.177Z" }, + { url = "https://files.pythonhosted.org/packages/f1/b8/618a92915330cc9cba7880299b546a1d9dab1a21fd6c0292ee44a4fe608c/pybase64-1.4.3-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:1bf749300382a6fd1f4f255b183146ef58f8e9cb2f44a077b3a9200dfb473a77", size = 63959, upload-time = "2025-12-06T13:24:16.854Z" }, + { url = "https://files.pythonhosted.org/packages/a5/52/af9d8d051652c3051862c442ec3861259c5cdb3fc69774bc701470bd2a59/pybase64-1.4.3-cp313-cp313t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:153a0e42329b92337664cfc356f2065248e6c9a1bd651bbcd6dcaf15145d3f06", size = 64874, upload-time = "2025-12-06T13:24:18.328Z" }, + { url = "https://files.pythonhosted.org/packages/e4/51/5381a7adf1f381bd184d33203692d3c57cf8ae9f250f380c3fecbdbe554b/pybase64-1.4.3-cp313-cp313t-manylinux_2_31_riscv64.whl", hash = "sha256:86ee56ac7f2184ca10217ed1c655c1a060273e233e692e9086da29d1ae1768db", size = 58572, upload-time = "2025-12-06T13:24:19.417Z" }, + { url = "https://files.pythonhosted.org/packages/e0/f0/578ee4ffce5818017de4fdf544e066c225bc435e73eb4793cde28a689d0b/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:0e71a4db76726bf830b47477e7d830a75c01b2e9b01842e787a0836b0ba741e3", size = 63636, upload-time = "2025-12-06T13:24:20.497Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ad/8ae94814bf20159ea06310b742433e53d5820aa564c9fdf65bf2d79f8799/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:2ba7799ec88540acd9861b10551d24656ca3c2888ecf4dba2ee0a71544a8923f", size = 56193, upload-time = "2025-12-06T13:24:21.559Z" }, + { url = "https://files.pythonhosted.org/packages/d1/31/6438cfcc3d3f0fa84d229fa125c243d5094e72628e525dfefadf3bcc6761/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:2860299e4c74315f5951f0cf3e72ba0f201c3356c8a68f95a3ab4e620baf44e9", size = 72655, upload-time = "2025-12-06T13:24:22.673Z" }, + { url = "https://files.pythonhosted.org/packages/a3/0d/2bbc9e9c3fc12ba8a6e261482f03a544aca524f92eae0b4908c0a10ba481/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:bb06015db9151f0c66c10aae8e3603adab6b6cd7d1f7335a858161d92fc29618", size = 62471, upload-time = "2025-12-06T13:24:23.8Z" }, + { url = "https://files.pythonhosted.org/packages/2c/0b/34d491e7f49c1dbdb322ea8da6adecda7c7cd70b6644557c6e4ca5c6f7c7/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_riscv64.whl", hash = "sha256:242512a070817272865d37c8909059f43003b81da31f616bb0c391ceadffe067", size = 58119, upload-time = "2025-12-06T13:24:24.994Z" }, + { url = "https://files.pythonhosted.org/packages/ce/17/c21d0cde2a6c766923ae388fc1f78291e1564b0d38c814b5ea8a0e5e081c/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_s390x.whl", hash = "sha256:5d8277554a12d3e3eed6180ebda62786bf9fc8d7bb1ee00244258f4a87ca8d20", size = 60791, upload-time = "2025-12-06T13:24:26.046Z" }, + { url = "https://files.pythonhosted.org/packages/92/b2/eaa67038916a48de12b16f4c384bcc1b84b7ec731b23613cb05f27673294/pybase64-1.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:f40b7ddd698fc1e13a4b64fbe405e4e0e1279e8197e37050e24154655f5f7c4e", size = 74701, upload-time = "2025-12-06T13:24:27.466Z" }, + { url = "https://files.pythonhosted.org/packages/42/10/abb7757c330bb869ebb95dab0c57edf5961ffbd6c095c8209cbbf75d117d/pybase64-1.4.3-cp313-cp313t-win32.whl", hash = "sha256:46d75c9387f354c5172582a9eaae153b53a53afeb9c19fcf764ea7038be3bd8b", size = 33965, upload-time = "2025-12-06T13:24:28.548Z" }, + { url = "https://files.pythonhosted.org/packages/63/a0/2d4e5a59188e9e6aed0903d580541aaea72dcbbab7bf50fb8b83b490b6c3/pybase64-1.4.3-cp313-cp313t-win_amd64.whl", hash = "sha256:d7344625591d281bec54e85cbfdab9e970f6219cac1570f2aa140b8c942ccb81", size = 36207, upload-time = "2025-12-06T13:24:29.646Z" }, + { url = "https://files.pythonhosted.org/packages/1f/05/95b902e8f567b4d4b41df768ccc438af618f8d111e54deaf57d2df46bd76/pybase64-1.4.3-cp313-cp313t-win_arm64.whl", hash = "sha256:28a3c60c55138e0028313f2eccd321fec3c4a0be75e57a8d3eb883730b1b0880", size = 31505, upload-time = "2025-12-06T13:24:30.687Z" }, + { url = "https://files.pythonhosted.org/packages/e4/80/4bd3dff423e5a91f667ca41982dc0b79495b90ec0c0f5d59aca513e50f8c/pybase64-1.4.3-cp314-cp314-android_24_arm64_v8a.whl", hash = "sha256:015bb586a1ea1467f69d57427abe587469392215f59db14f1f5c39b52fdafaf5", size = 33835, upload-time = "2025-12-06T13:24:31.767Z" }, + { url = "https://files.pythonhosted.org/packages/45/60/a94d94cc1e3057f602e0b483c9ebdaef40911d84a232647a2fe593ab77bb/pybase64-1.4.3-cp314-cp314-android_24_x86_64.whl", hash = "sha256:d101e3a516f837c3dcc0e5a0b7db09582ebf99ed670865223123fb2e5839c6c0", size = 40673, upload-time = "2025-12-06T13:24:32.82Z" }, + { url = "https://files.pythonhosted.org/packages/e3/71/cf62b261d431857e8e054537a5c3c24caafa331de30daede7b2c6c558501/pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphoneos.whl", hash = "sha256:8f183ac925a48046abe047360fe3a1b28327afb35309892132fe1915d62fb282", size = 30939, upload-time = "2025-12-06T13:24:34.001Z" }, + { url = "https://files.pythonhosted.org/packages/24/3e/d12f92a3c1f7c6ab5d53c155bff9f1084ba997a37a39a4f781ccba9455f3/pybase64-1.4.3-cp314-cp314-ios_13_0_arm64_iphonesimulator.whl", hash = "sha256:30bf3558e24dcce4da5248dcf6d73792adfcf4f504246967e9db155be4c439ad", size = 31401, upload-time = "2025-12-06T13:24:35.11Z" }, + { url = "https://files.pythonhosted.org/packages/9b/3d/9c27440031fea0d05146f8b70a460feb95d8b4e3d9ca8f45c972efb4c3d3/pybase64-1.4.3-cp314-cp314-ios_13_0_x86_64_iphonesimulator.whl", hash = "sha256:a674b419de318d2ce54387dd62646731efa32b4b590907800f0bd40675c1771d", size = 38075, upload-time = "2025-12-06T13:24:36.53Z" }, + { url = "https://files.pythonhosted.org/packages/4b/d4/6c0e0cf0efd53c254173fbcd84a3d8fcbf5e0f66622473da425becec32a5/pybase64-1.4.3-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:720104fd7303d07bac302be0ff8f7f9f126f2f45c1edb4f48fdb0ff267e69fe1", size = 38257, upload-time = "2025-12-06T13:24:38.049Z" }, + { url = "https://files.pythonhosted.org/packages/50/eb/27cb0b610d5cd70f5ad0d66c14ad21c04b8db930f7139818e8fbdc14df4d/pybase64-1.4.3-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:83f1067f73fa5afbc3efc0565cecc6ed53260eccddef2ebe43a8ce2b99ea0e0a", size = 31685, upload-time = "2025-12-06T13:24:40.327Z" }, + { url = "https://files.pythonhosted.org/packages/db/26/b136a4b65e5c94ff06217f7726478df3f31ab1c777c2c02cf698e748183f/pybase64-1.4.3-cp314-cp314-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:b51204d349a4b208287a8aa5b5422be3baa88abf6cc8ff97ccbda34919bbc857", size = 68460, upload-time = "2025-12-06T13:24:41.735Z" }, + { url = "https://files.pythonhosted.org/packages/68/6d/84ce50e7ee1ae79984d689e05a9937b2460d4efa1e5b202b46762fb9036c/pybase64-1.4.3-cp314-cp314-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:30f2fd53efecbdde4bdca73a872a68dcb0d1bf8a4560c70a3e7746df973e1ef3", size = 71688, upload-time = "2025-12-06T13:24:42.908Z" }, + { url = "https://files.pythonhosted.org/packages/e3/57/6743e420416c3ff1b004041c85eb0ebd9c50e9cf05624664bfa1dc8b5625/pybase64-1.4.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:0932b0c5cfa617091fd74f17d24549ce5de3628791998c94ba57be808078eeaf", size = 60040, upload-time = "2025-12-06T13:24:44.37Z" }, + { url = "https://files.pythonhosted.org/packages/3b/68/733324e28068a89119af2921ce548e1c607cc5c17d354690fc51c302e326/pybase64-1.4.3-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:acb61f5ab72bec808eb0d4ce8b87ec9f38d7d750cb89b1371c35eb8052a29f11", size = 56478, upload-time = "2025-12-06T13:24:45.815Z" }, + { url = "https://files.pythonhosted.org/packages/b5/9e/f3f4aa8cfe3357a3cdb0535b78eb032b671519d3ecc08c58c4c6b72b5a91/pybase64-1.4.3-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:2bc2d5bc15168f5c04c53bdfe5a1e543b2155f456ed1e16d7edce9ce73842021", size = 59463, upload-time = "2025-12-06T13:24:46.938Z" }, + { url = "https://files.pythonhosted.org/packages/aa/d1/53286038e1f0df1cf58abcf4a4a91b0f74ab44539c2547b6c31001ddd054/pybase64-1.4.3-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:8a7bc3cd23880bdca59758bcdd6f4ef0674f2393782763910a7466fab35ccb98", size = 60360, upload-time = "2025-12-06T13:24:48.039Z" }, + { url = "https://files.pythonhosted.org/packages/00/9a/5cc6ce95db2383d27ff4d790b8f8b46704d360d701ab77c4f655bcfaa6a7/pybase64-1.4.3-cp314-cp314-manylinux_2_31_riscv64.whl", hash = "sha256:ad15acf618880d99792d71e3905b0e2508e6e331b76a1b34212fa0f11e01ad28", size = 54999, upload-time = "2025-12-06T13:24:49.547Z" }, + { url = "https://files.pythonhosted.org/packages/64/e7/c3c1d09c3d7ae79e3aa1358c6d912d6b85f29281e47aa94fc0122a415a2f/pybase64-1.4.3-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:448158d417139cb4851200e5fee62677ae51f56a865d50cda9e0d61bda91b116", size = 58736, upload-time = "2025-12-06T13:24:50.641Z" }, + { url = "https://files.pythonhosted.org/packages/db/d5/0baa08e3d8119b15b588c39f0d39fd10472f0372e3c54ca44649cbefa256/pybase64-1.4.3-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:9058c49b5a2f3e691b9db21d37eb349e62540f9f5fc4beabf8cbe3c732bead86", size = 52298, upload-time = "2025-12-06T13:24:51.791Z" }, + { url = "https://files.pythonhosted.org/packages/00/87/fc6f11474a1de7e27cd2acbb8d0d7508bda3efa73dfe91c63f968728b2a3/pybase64-1.4.3-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:ce561724f6522907a66303aca27dce252d363fcd85884972d348f4403ba3011a", size = 69049, upload-time = "2025-12-06T13:24:53.253Z" }, + { url = "https://files.pythonhosted.org/packages/69/9d/7fb5566f669ac18b40aa5fc1c438e24df52b843c1bdc5da47d46d4c1c630/pybase64-1.4.3-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:63316560a94ac449fe86cb8b9e0a13714c659417e92e26a5cbf085cd0a0c838d", size = 57952, upload-time = "2025-12-06T13:24:54.342Z" }, + { url = "https://files.pythonhosted.org/packages/de/cc/ceb949232dbbd3ec4ee0190d1df4361296beceee9840390a63df8bc31784/pybase64-1.4.3-cp314-cp314-musllinux_1_2_riscv64.whl", hash = "sha256:7ecd796f2ac0be7b73e7e4e232b8c16422014de3295d43e71d2b19fd4a4f5368", size = 54484, upload-time = "2025-12-06T13:24:55.774Z" }, + { url = "https://files.pythonhosted.org/packages/a7/69/659f3c8e6a5d7b753b9c42a4bd9c42892a0f10044e9c7351a4148d413a33/pybase64-1.4.3-cp314-cp314-musllinux_1_2_s390x.whl", hash = "sha256:d01e102a12fb2e1ed3dc11611c2818448626637857ec3994a9cf4809dfd23477", size = 56542, upload-time = "2025-12-06T13:24:57Z" }, + { url = "https://files.pythonhosted.org/packages/85/2c/29c9e6c9c82b72025f9676f9e82eb1fd2339ad038cbcbf8b9e2ac02798fc/pybase64-1.4.3-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:ebff797a93c2345f22183f454fd8607a34d75eca5a3a4a969c1c75b304cee39d", size = 71045, upload-time = "2025-12-06T13:24:58.179Z" }, + { url = "https://files.pythonhosted.org/packages/b9/84/5a3dce8d7a0040a5c0c14f0fe1311cd8db872913fa04438071b26b0dac04/pybase64-1.4.3-cp314-cp314-win32.whl", hash = "sha256:28b2a1bb0828c0595dc1ea3336305cd97ff85b01c00d81cfce4f92a95fb88f56", size = 34200, upload-time = "2025-12-06T13:24:59.956Z" }, + { url = "https://files.pythonhosted.org/packages/57/bc/ce7427c12384adee115b347b287f8f3cf65860b824d74fe2c43e37e81c1f/pybase64-1.4.3-cp314-cp314-win_amd64.whl", hash = "sha256:33338d3888700ff68c3dedfcd49f99bfc3b887570206130926791e26b316b029", size = 36323, upload-time = "2025-12-06T13:25:01.708Z" }, + { url = "https://files.pythonhosted.org/packages/9a/1b/2b8ffbe9a96eef7e3f6a5a7be75995eebfb6faaedc85b6da6b233e50c778/pybase64-1.4.3-cp314-cp314-win_arm64.whl", hash = "sha256:62725669feb5acb186458da2f9353e88ae28ef66bb9c4c8d1568b12a790dfa94", size = 31584, upload-time = "2025-12-06T13:25:02.801Z" }, + { url = "https://files.pythonhosted.org/packages/ac/d8/6824c2e6fb45b8fa4e7d92e3c6805432d5edc7b855e3e8e1eedaaf6efb7c/pybase64-1.4.3-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:153fe29be038948d9372c3e77ae7d1cab44e4ba7d9aaf6f064dbeea36e45b092", size = 38601, upload-time = "2025-12-06T13:25:04.222Z" }, + { url = "https://files.pythonhosted.org/packages/ea/e5/10d2b3a4ad3a4850be2704a2f70cd9c0cf55725c8885679872d3bc846c67/pybase64-1.4.3-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:f7fe3decaa7c4a9e162327ec7bd81ce183d2b16f23c6d53b606649c6e0203e9e", size = 32078, upload-time = "2025-12-06T13:25:05.362Z" }, + { url = "https://files.pythonhosted.org/packages/43/04/8b15c34d3c2282f1c1b0850f1113a249401b618a382646a895170bc9b5e7/pybase64-1.4.3-cp314-cp314t-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:a5ae04ea114c86eb1da1f6e18d75f19e3b5ae39cb1d8d3cd87c29751a6a22780", size = 72474, upload-time = "2025-12-06T13:25:06.434Z" }, + { url = "https://files.pythonhosted.org/packages/42/00/f34b4d11278f8fdc68bc38f694a91492aa318f7c6f1bd7396197ac0f8b12/pybase64-1.4.3-cp314-cp314t-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1755b3dce3a2a5c7d17ff6d4115e8bee4a1d5aeae74469db02e47c8f477147da", size = 75706, upload-time = "2025-12-06T13:25:07.636Z" }, + { url = "https://files.pythonhosted.org/packages/bb/5d/71747d4ad7fe16df4c4c852bdbdeb1f2cf35677b48d7c34d3011a7a6ad3a/pybase64-1.4.3-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:fb852f900e27ffc4ec1896817535a0fa19610ef8875a096b59f21d0aa42ff172", size = 65589, upload-time = "2025-12-06T13:25:08.809Z" }, + { url = "https://files.pythonhosted.org/packages/49/b1/d1e82bd58805bb5a3a662864800bab83a83a36ba56e7e3b1706c708002a5/pybase64-1.4.3-cp314-cp314t-manylinux2014_armv7l.manylinux_2_17_armv7l.whl", hash = "sha256:9cf21ea8c70c61eddab3421fbfce061fac4f2fb21f7031383005a1efdb13d0b9", size = 60670, upload-time = "2025-12-06T13:25:10.04Z" }, + { url = "https://files.pythonhosted.org/packages/15/67/16c609b7a13d1d9fc87eca12ba2dce5e67f949eeaab61a41bddff843cbb0/pybase64-1.4.3-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl", hash = "sha256:afff11b331fdc27692fc75e85ae083340a35105cea1a3c4552139e2f0e0d174f", size = 64194, upload-time = "2025-12-06T13:25:11.48Z" }, + { url = "https://files.pythonhosted.org/packages/3c/11/37bc724e42960f0106c2d33dc957dcec8f760c91a908cc6c0df7718bc1a8/pybase64-1.4.3-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.whl", hash = "sha256:d9a5143df542c1ce5c1f423874b948c4d689b3f05ec571f8792286197a39ba02", size = 64984, upload-time = "2025-12-06T13:25:12.645Z" }, + { url = "https://files.pythonhosted.org/packages/6e/66/b2b962a6a480dd5dae3029becf03ea1a650d326e39bf1c44ea3db78bb010/pybase64-1.4.3-cp314-cp314t-manylinux_2_31_riscv64.whl", hash = "sha256:d62e9861019ad63624b4a7914dff155af1cc5d6d79df3be14edcaedb5fdad6f9", size = 58750, upload-time = "2025-12-06T13:25:13.848Z" }, + { url = "https://files.pythonhosted.org/packages/2b/15/9b6d711035e29b18b2e1c03d47f41396d803d06ef15b6c97f45b75f73f04/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:84cfd4d92668ef5766cc42a9c9474b88960ac2b860767e6e7be255c6fddbd34a", size = 63816, upload-time = "2025-12-06T13:25:15.356Z" }, + { url = "https://files.pythonhosted.org/packages/b4/21/e2901381ed0df62e2308380f30d9c4d87d6b74e33a84faed3478d33a7197/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:60fc025437f9a7c2cc45e0c19ed68ed08ba672be2c5575fd9d98bdd8f01dd61f", size = 56348, upload-time = "2025-12-06T13:25:16.559Z" }, + { url = "https://files.pythonhosted.org/packages/c4/16/3d788388a178a0407aa814b976fe61bfa4af6760d9aac566e59da6e4a8b4/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:edc8446196f04b71d3af76c0bd1fe0a45066ac5bffecca88adb9626ee28c266f", size = 72842, upload-time = "2025-12-06T13:25:18.055Z" }, + { url = "https://files.pythonhosted.org/packages/a6/63/c15b1f8bd47ea48a5a2d52a4ec61f037062932ea6434ab916107b58e861e/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:e99f6fa6509c037794da57f906ade271f52276c956d00f748e5b118462021d48", size = 62651, upload-time = "2025-12-06T13:25:19.191Z" }, + { url = "https://files.pythonhosted.org/packages/bd/b8/f544a2e37c778d59208966d4ef19742a0be37c12fc8149ff34483c176616/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_riscv64.whl", hash = "sha256:d94020ef09f624d841aa9a3a6029df8cf65d60d7a6d5c8687579fa68bd679b65", size = 58295, upload-time = "2025-12-06T13:25:20.822Z" }, + { url = "https://files.pythonhosted.org/packages/03/99/1fae8a3b7ac181e36f6e7864a62d42d5b1f4fa7edf408c6711e28fba6b4d/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_s390x.whl", hash = "sha256:f64ce70d89942a23602dee910dec9b48e5edf94351e1b378186b74fcc00d7f66", size = 60960, upload-time = "2025-12-06T13:25:22.099Z" }, + { url = "https://files.pythonhosted.org/packages/9d/9e/cd4c727742345ad8384569a4466f1a1428f4e5cc94d9c2ab2f53d30be3fe/pybase64-1.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:8ea99f56e45c469818b9781903be86ba4153769f007ba0655fa3b46dc332803d", size = 74863, upload-time = "2025-12-06T13:25:23.442Z" }, + { url = "https://files.pythonhosted.org/packages/28/86/a236ecfc5b494e1e922da149689f690abc84248c7c1358f5605b8c9fdd60/pybase64-1.4.3-cp314-cp314t-win32.whl", hash = "sha256:343b1901103cc72362fd1f842524e3bb24978e31aea7ff11e033af7f373f66ab", size = 34513, upload-time = "2025-12-06T13:25:24.592Z" }, + { url = "https://files.pythonhosted.org/packages/56/ce/ca8675f8d1352e245eb012bfc75429ee9cf1f21c3256b98d9a329d44bf0f/pybase64-1.4.3-cp314-cp314t-win_amd64.whl", hash = "sha256:57aff6f7f9dea6705afac9d706432049642de5b01080d3718acc23af87c5af76", size = 36702, upload-time = "2025-12-06T13:25:25.72Z" }, + { url = "https://files.pythonhosted.org/packages/3b/30/4a675864877397179b09b720ee5fcb1cf772cf7bebc831989aff0a5f79c1/pybase64-1.4.3-cp314-cp314t-win_arm64.whl", hash = "sha256:e906aa08d4331e799400829e0f5e4177e76a3281e8a4bc82ba114c6b30e405c9", size = 31904, upload-time = "2025-12-06T13:25:26.826Z" }, + { url = "https://files.pythonhosted.org/packages/b2/7c/545fd4935a0e1ddd7147f557bf8157c73eecec9cffd523382fa7af2557de/pybase64-1.4.3-graalpy311-graalpy242_311_native-macosx_10_9_x86_64.whl", hash = "sha256:d27c1dfdb0c59a5e758e7a98bd78eaca5983c22f4a811a36f4f980d245df4611", size = 38393, upload-time = "2025-12-06T13:26:19.535Z" }, + { url = "https://files.pythonhosted.org/packages/c3/ca/ae7a96be9ddc96030d4e9dffc43635d4e136b12058b387fd47eb8301b60f/pybase64-1.4.3-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl", hash = "sha256:0f1a0c51d6f159511e3431b73c25db31095ee36c394e26a4349e067c62f434e5", size = 32109, upload-time = "2025-12-06T13:26:20.72Z" }, + { url = "https://files.pythonhosted.org/packages/bf/44/d4b7adc7bf4fd5b52d8d099121760c450a52c390223806b873f0b6a2d551/pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:a492518f3078a4e3faaef310697d21df9c6bc71908cebc8c2f6fbfa16d7d6b1f", size = 43227, upload-time = "2025-12-06T13:26:21.845Z" }, + { url = "https://files.pythonhosted.org/packages/08/86/2ba2d8734ef7939debeb52cf9952e457ba7aa226cae5c0e6dd631f9b851f/pybase64-1.4.3-graalpy311-graalpy242_311_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cae1a0f47784fd16df90d8acc32011c8d5fcdd9ab392c9ec49543e5f6a9c43a4", size = 35804, upload-time = "2025-12-06T13:26:23.149Z" }, + { url = "https://files.pythonhosted.org/packages/4f/5b/19c725dc3aaa6281f2ce3ea4c1628d154a40dd99657d1381995f8096768b/pybase64-1.4.3-graalpy311-graalpy242_311_native-win_amd64.whl", hash = "sha256:03cea70676ffbd39a1ab7930a2d24c625b416cacc9d401599b1d29415a43ab6a", size = 35880, upload-time = "2025-12-06T13:26:24.663Z" }, + { url = "https://files.pythonhosted.org/packages/17/45/92322aec1b6979e789b5710f73c59f2172bc37c8ce835305434796824b7b/pybase64-1.4.3-graalpy312-graalpy250_312_native-macosx_10_13_x86_64.whl", hash = "sha256:2baaa092f3475f3a9c87ac5198023918ea8b6c125f4c930752ab2cbe3cd1d520", size = 38746, upload-time = "2025-12-06T13:26:25.869Z" }, + { url = "https://files.pythonhosted.org/packages/11/94/f1a07402870388fdfc2ecec0c718111189732f7d0f2d7fe1386e19e8fad0/pybase64-1.4.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl", hash = "sha256:cde13c0764b1af07a631729f26df019070dad759981d6975527b7e8ecb465b6c", size = 32573, upload-time = "2025-12-06T13:26:27.792Z" }, + { url = "https://files.pythonhosted.org/packages/fa/8f/43c3bb11ca9bacf81cb0b7a71500bb65b2eda6d5fe07433c09b543de97f3/pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:5c29a582b0ea3936d02bd6fe9bf674ab6059e6e45ab71c78404ab2c913224414", size = 43461, upload-time = "2025-12-06T13:26:28.906Z" }, + { url = "https://files.pythonhosted.org/packages/2d/4c/2a5258329200be57497d3972b5308558c6de42e3749c6cc2aa1cbe34b25a/pybase64-1.4.3-graalpy312-graalpy250_312_native-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:b6b664758c804fa919b4f1257aa8cf68e95db76fc331de5f70bfc3a34655afe1", size = 36058, upload-time = "2025-12-06T13:26:30.092Z" }, + { url = "https://files.pythonhosted.org/packages/ea/6d/41faa414cde66ec023b0ca8402a8f11cb61731c3dc27c082909cbbd1f929/pybase64-1.4.3-graalpy312-graalpy250_312_native-win_amd64.whl", hash = "sha256:f7537fa22ae56a0bf51e4b0ffc075926ad91c618e1416330939f7ef366b58e3b", size = 36231, upload-time = "2025-12-06T13:26:31.656Z" }, + { url = "https://files.pythonhosted.org/packages/2a/cf/6e712491bd665ea8633efb0b484121893ea838d8e830e06f39f2aae37e58/pybase64-1.4.3-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94cf50c36bb2f8618982ee5a978c4beed9db97d35944fa96e8586dd953c7994a", size = 38007, upload-time = "2025-12-06T13:26:32.804Z" }, + { url = "https://files.pythonhosted.org/packages/38/c0/9272cae1c49176337dcdbd97511e2843faae1aaf5a5fb48569093c6cd4ce/pybase64-1.4.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:01bc3ff5ca1341685c6d2d945b035f442f7b9c3b068a5c6ee8408a41fda5754e", size = 31538, upload-time = "2025-12-06T13:26:34.001Z" }, + { url = "https://files.pythonhosted.org/packages/20/f2/17546f97befe429c73f622bbd869ceebb518c40fdb0dec4c4f98312e80a5/pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:03d0aa3761a99034960496280c02aa063f856a3cc9b33771bc4eab0e4e72b5c2", size = 40682, upload-time = "2025-12-06T13:26:35.168Z" }, + { url = "https://files.pythonhosted.org/packages/92/a0/464b36d5dfb61f3da17858afaeaa876a9342d58e9f17803ce7f28b5de9e8/pybase64-1.4.3-pp310-pypy310_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7ca5b1ce768520acd6440280cdab35235b27ad2faacfcec064bc9c3377066ef1", size = 41306, upload-time = "2025-12-06T13:26:36.351Z" }, + { url = "https://files.pythonhosted.org/packages/07/c9/a748dfc0969a8d960ecf1e82c8a2a16046ffec22f8e7ece582aa3b1c6cf9/pybase64-1.4.3-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3caa1e2ddad1c50553ffaaa1c86b74b3f9fbd505bea9970326ab88fc68c4c184", size = 35452, upload-time = "2025-12-06T13:26:37.772Z" }, + { url = "https://files.pythonhosted.org/packages/95/b7/4d37bd3577d1aa6c732dc099087fe027c48873e223de3784b095e5653f8b/pybase64-1.4.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:bd47076f736b27a8b0f9b30d93b6bb4f5af01b0dc8971f883ed3b75934f39a99", size = 36125, upload-time = "2025-12-06T13:26:39.78Z" }, + { url = "https://files.pythonhosted.org/packages/b2/76/160dded493c00d3376d4ad0f38a2119c5345de4a6693419ad39c3565959b/pybase64-1.4.3-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:277de6e03cc9090fb359365c686a2a3036d23aee6cd20d45d22b8c89d1247f17", size = 37939, upload-time = "2025-12-06T13:26:41.014Z" }, + { url = "https://files.pythonhosted.org/packages/b7/b8/a0f10be8d648d6f8f26e560d6e6955efa7df0ff1e009155717454d76f601/pybase64-1.4.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:ab1dd8b1ed2d1d750260ed58ab40defaa5ba83f76a30e18b9ebd5646f6247ae5", size = 31466, upload-time = "2025-12-06T13:26:42.539Z" }, + { url = "https://files.pythonhosted.org/packages/d3/22/832a2f9e76cdf39b52e01e40d8feeb6a04cf105494f2c3e3126d0149717f/pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_i686.manylinux2014_i686.manylinux_2_17_i686.manylinux_2_5_i686.whl", hash = "sha256:bd4d2293de9fd212e294c136cec85892460b17d24e8c18a6ba18750928037750", size = 40681, upload-time = "2025-12-06T13:26:43.782Z" }, + { url = "https://files.pythonhosted.org/packages/12/d7/6610f34a8972415fab3bb4704c174a1cc477bffbc3c36e526428d0f3957d/pybase64-1.4.3-pp311-pypy311_pp73-manylinux1_x86_64.manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2af6d0d3a691911cc4c9a625f3ddcd3af720738c21be3d5c72de05629139d393", size = 41294, upload-time = "2025-12-06T13:26:44.936Z" }, + { url = "https://files.pythonhosted.org/packages/64/25/ed24400948a6c974ab1374a233cb7e8af0a5373cea0dd8a944627d17c34a/pybase64-1.4.3-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5cfc8c49a28322d82242088378f8542ce97459866ba73150b062a7073e82629d", size = 35447, upload-time = "2025-12-06T13:26:46.098Z" }, + { url = "https://files.pythonhosted.org/packages/ee/2b/e18ee7c5ee508a82897f021c1981533eca2940b5f072fc6ed0906c03a7a7/pybase64-1.4.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:debf737e09b8bf832ba86f5ecc3d3dbd0e3021d6cd86ba4abe962d6a5a77adb3", size = 36134, upload-time = "2025-12-06T13:26:47.35Z" }, +] + [[package]] name = "pybtex" version = "0.25.1" @@ -6597,8 +8148,8 @@ name = "pycocotools" version = "2.0.10" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/35/a6/694fd661f0feb5e91f7049a202ea12de312ca9010c33bd9d9f0c63046c01/pycocotools-2.0.10.tar.gz", hash = "sha256:7a47609cdefc95e5e151313c7d93a61cf06e15d42c7ba99b601e3bc0f9ece2e1", size = 25389, upload-time = "2025-06-04T23:37:47.879Z" } wheels = [ @@ -6632,6 +8183,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c4/b8/4da7f02655dd39ce9f7251a0d95c51e5924db9a80155b4cd654fed13345c/pycocotools-2.0.10-cp313-cp313t-win_arm64.whl", hash = "sha256:3e323b0ed7c15df34929b2d99ff720be8d6a35c58c7566e29559d9bebd2d09f6", size = 69741, upload-time = "2025-06-04T23:37:36.423Z" }, ] +[[package]] +name = "pycountry" +version = "24.6.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/76/57/c389fa68c50590881a75b7883eeb3dc15e9e73a0fdc001cdd45c13290c92/pycountry-24.6.1.tar.gz", hash = "sha256:b61b3faccea67f87d10c1f2b0fc0be714409e8fcdcc1315613174f6466c10221", size = 6043910, upload-time = "2024-06-01T04:12:15.05Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b1/ec/1fb891d8a2660716aadb2143235481d15ed1cbfe3ad669194690b0604492/pycountry-24.6.1-py3-none-any.whl", hash = "sha256:f1a4fb391cd7214f8eefd39556d740adcc233c778a27f8942c8dca351d6ce06f", size = 6335189, upload-time = "2024-06-01T04:11:49.711Z" }, +] + [[package]] name = "pycparser" version = "2.23" @@ -6656,6 +8216,11 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/82/2f/e68750da9b04856e2a7ec56fc6f034a5a79775e9b9a81882252789873798/pydantic-2.12.4-py3-none-any.whl", hash = "sha256:92d3d202a745d46f9be6df459ac5a064fdaa3c1c4cd8adcfa332ccf3c05f871e", size = 463400, upload-time = "2025-11-05T10:50:06.732Z" }, ] +[package.optional-dependencies] +email = [ + { name = "email-validator" }, +] + [[package]] name = "pydantic-core" version = "2.41.5" @@ -6774,14 +8339,46 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/36/c7/cfc8e811f061c841d7990b0201912c3556bfeb99cdcb7ed24adc8d6f8704/pydantic_core-2.41.5-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56121965f7a4dc965bff783d70b907ddf3d57f6eba29b6d2e5dabfaf07799c51", size = 2145302, upload-time = "2025-11-04T13:43:46.64Z" }, ] +[[package]] +name = "pydantic-extra-types" +version = "2.11.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/fd/35/2fee58b1316a73e025728583d3b1447218a97e621933fc776fb8c0f2ebdd/pydantic_extra_types-2.11.0.tar.gz", hash = "sha256:4e9991959d045b75feb775683437a97991d02c138e00b59176571db9ce634f0e", size = 157226, upload-time = "2025-12-31T16:18:27.944Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/fe/17/fabd56da47096d240dd45ba627bead0333b0cf0ee8ada9bec579287dadf3/pydantic_extra_types-2.11.0-py3-none-any.whl", hash = "sha256:84b864d250a0fc62535b7ec591e36f2c5b4d1325fa0017eb8cda9aeb63b374a6", size = 74296, upload-time = "2025-12-31T16:18:26.38Z" }, +] + +[package.optional-dependencies] +pycountry = [ + { name = "pycountry" }, +] + +[[package]] +name = "pydantic-settings" +version = "2.12.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "pydantic" }, + { name = "python-dotenv" }, + { name = "typing-inspection" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/43/4b/ac7e0aae12027748076d72a8764ff1c9d82ca75a7a52622e67ed3f765c54/pydantic_settings-2.12.0.tar.gz", hash = "sha256:005538ef951e3c2a68e1c08b292b5f2e71490def8589d4221b95dab00dafcfd0", size = 194184, upload-time = "2025-11-10T14:25:47.013Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/c1/60/5d4751ba3f4a40a6891f24eec885f51afd78d208498268c734e256fb13c4/pydantic_settings-2.12.0-py3-none-any.whl", hash = "sha256:fddb9fd99a5b18da837b29710391e945b1e30c135477f484084ee513adb93809", size = 51880, upload-time = "2025-11-10T14:25:45.546Z" }, +] + [[package]] name = "pydeck" version = "0.9.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jinja2" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a1/ca/40e14e196864a0f61a92abb14d09b3d3da98f94ccb03b49cf51688140dab/pydeck-0.9.1.tar.gz", hash = "sha256:f74475ae637951d63f2ee58326757f8d4f9cd9f2a457cf42950715003e2cb605", size = 3832240, upload-time = "2024-05-10T15:36:21.153Z" } wheels = [ @@ -6806,6 +8403,20 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/c7/21/705964c7812476f378728bdf590ca4b771ec72385c533964653c68e86bdc/pygments-2.19.2-py3-none-any.whl", hash = "sha256:86540386c03d588bb81d44bc3928634ff26449851e99741617ecb9037ee5ec0b", size = 1225217, upload-time = "2025-06-21T13:39:07.939Z" }, ] +[[package]] +name = "pyjwt" +version = "2.10.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e7/46/bd74733ff231675599650d3e47f361794b22ef3e3770998dda30d3b63726/pyjwt-2.10.1.tar.gz", hash = "sha256:3cc5772eb20009233caf06e9d8a0577824723b44e6648ee0a2aedb6cf9381953", size = 87785, upload-time = "2024-11-28T03:43:29.933Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/61/ad/689f02752eeec26aed679477e80e632ef1b682313be70793d798c1d5fc8f/PyJWT-2.10.1-py3-none-any.whl", hash = "sha256:dcdd193e30abefd5debf142f9adfcdd2b58004e644f25406ffaebd50bd98dacb", size = 22997, upload-time = "2024-11-28T03:43:27.893Z" }, +] + +[package.optional-dependencies] +crypto = [ + { name = "cryptography" }, +] + [[package]] name = "pylate" version = "1.3.4" @@ -6921,12 +8532,12 @@ name = "pytest" version = "8.3.5" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "exceptiongroup", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "iniconfig" }, { name = "packaging" }, { name = "pluggy" }, - { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "tomli", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ae/3c/c9d525a414d506893f0cd8a8d0de7706446213181570cdbd766691164e40/pytest-8.3.5.tar.gz", hash = "sha256:f4efe70cc14e511565ac476b57c279e12a855b11f48f212af1080ef2263d3845", size = 1450891, upload-time = "2025-03-02T12:54:54.503Z" } wheels = [ @@ -7009,6 +8620,24 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892, upload-time = "2024-03-01T18:36:18.57Z" }, ] +[[package]] +name = "python-dotenv" +version = "1.2.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/f0/26/19cadc79a718c5edbec86fd4919a6b6d3f681039a2f6d66d14be94e75fb9/python_dotenv-1.2.1.tar.gz", hash = "sha256:42667e897e16ab0d66954af0e60a9caa94f0fd4ecf3aaf6d2d260eec1aa36ad6", size = 44221, upload-time = "2025-10-26T15:12:10.434Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/14/1b/a298b06749107c305e1fe0f814c6c74aea7b2f1e10989cb30f544a1b3253/python_dotenv-1.2.1-py3-none-any.whl", hash = "sha256:b81ee9561e9ca4004139c6cbba3a238c32b03e4894671e181b671e8cb8425d61", size = 21230, upload-time = "2025-10-26T15:12:09.109Z" }, +] + +[[package]] +name = "python-json-logger" +version = "4.0.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/29/bf/eca6a3d43db1dae7070f70e160ab20b807627ba953663ba07928cdd3dc58/python_json_logger-4.0.0.tar.gz", hash = "sha256:f58e68eb46e1faed27e0f574a55a0455eecd7b8a5b88b85a784519ba3cff047f", size = 17683, upload-time = "2025-10-06T04:15:18.984Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/51/e5/fecf13f06e5e5f67e8837d777d1bc43fac0ed2b77a676804df5c34744727/python_json_logger-4.0.0-py3-none-any.whl", hash = "sha256:af09c9daf6a813aa4cc7180395f50f2a9e5fa056034c9953aec92e381c5ba1e2", size = 15548, upload-time = "2025-10-06T04:15:17.553Z" }, +] + [[package]] name = "python-magic" version = "0.4.27" @@ -7053,10 +8682,10 @@ name = "pytrec-eval-terrier" version = "0.5.10" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/04/96/4925a95e4865a647bc74d3bb052243d12a3c8e8a34909d7d097b5a4d08c5/pytrec_eval_terrier-0.5.10.tar.gz", hash = "sha256:eaaf20580d17b5575a233e04dab8a4cbcc01a7e45be8cf547c07f0a2bb3e7eb9", size = 18634, upload-time = "2025-10-20T16:50:18.098Z" } wheels = [ @@ -7191,6 +8820,79 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/04/11/432f32f8097b03e3cd5fe57e88efb685d964e2e5178a48ed61e841f7fdce/pyyaml_env_tag-1.1-py3-none-any.whl", hash = "sha256:17109e1a528561e32f026364712fee1264bc2ea6715120891174ed1b980d2e04", size = 4722, upload-time = "2025-05-13T15:23:59.629Z" }, ] +[[package]] +name = "pyzmq" +version = "27.1.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "cffi", marker = "implementation_name == 'pypy'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/04/0b/3c9baedbdf613ecaa7aa07027780b8867f57b6293b6ee50de316c9f3222b/pyzmq-27.1.0.tar.gz", hash = "sha256:ac0765e3d44455adb6ddbf4417dcce460fc40a05978c08efdf2948072f6db540", size = 281750, upload-time = "2025-09-08T23:10:18.157Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/67/b9/52aa9ec2867528b54f1e60846728d8b4d84726630874fee3a91e66c7df81/pyzmq-27.1.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:508e23ec9bc44c0005c4946ea013d9317ae00ac67778bd47519fdf5a0e930ff4", size = 1329850, upload-time = "2025-09-08T23:07:26.274Z" }, + { url = "https://files.pythonhosted.org/packages/99/64/5653e7b7425b169f994835a2b2abf9486264401fdef18df91ddae47ce2cc/pyzmq-27.1.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:507b6f430bdcf0ee48c0d30e734ea89ce5567fd7b8a0f0044a369c176aa44556", size = 906380, upload-time = "2025-09-08T23:07:29.78Z" }, + { url = "https://files.pythonhosted.org/packages/73/78/7d713284dbe022f6440e391bd1f3c48d9185673878034cfb3939cdf333b2/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:bf7b38f9fd7b81cb6d9391b2946382c8237fd814075c6aa9c3b746d53076023b", size = 666421, upload-time = "2025-09-08T23:07:31.263Z" }, + { url = "https://files.pythonhosted.org/packages/30/76/8f099f9d6482450428b17c4d6b241281af7ce6a9de8149ca8c1c649f6792/pyzmq-27.1.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:03ff0b279b40d687691a6217c12242ee71f0fba28bf8626ff50e3ef0f4410e1e", size = 854149, upload-time = "2025-09-08T23:07:33.17Z" }, + { url = "https://files.pythonhosted.org/packages/59/f0/37fbfff06c68016019043897e4c969ceab18bde46cd2aca89821fcf4fb2e/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:677e744fee605753eac48198b15a2124016c009a11056f93807000ab11ce6526", size = 1655070, upload-time = "2025-09-08T23:07:35.205Z" }, + { url = "https://files.pythonhosted.org/packages/47/14/7254be73f7a8edc3587609554fcaa7bfd30649bf89cd260e4487ca70fdaa/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:dd2fec2b13137416a1c5648b7009499bcc8fea78154cd888855fa32514f3dad1", size = 2033441, upload-time = "2025-09-08T23:07:37.432Z" }, + { url = "https://files.pythonhosted.org/packages/22/dc/49f2be26c6f86f347e796a4d99b19167fc94503f0af3fd010ad262158822/pyzmq-27.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:08e90bb4b57603b84eab1d0ca05b3bbb10f60c1839dc471fc1c9e1507bef3386", size = 1891529, upload-time = "2025-09-08T23:07:39.047Z" }, + { url = "https://files.pythonhosted.org/packages/a3/3e/154fb963ae25be70c0064ce97776c937ecc7d8b0259f22858154a9999769/pyzmq-27.1.0-cp310-cp310-win32.whl", hash = "sha256:a5b42d7a0658b515319148875fcb782bbf118dd41c671b62dae33666c2213bda", size = 567276, upload-time = "2025-09-08T23:07:40.695Z" }, + { url = "https://files.pythonhosted.org/packages/62/b2/f4ab56c8c595abcb26b2be5fd9fa9e6899c1e5ad54964e93ae8bb35482be/pyzmq-27.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:c0bb87227430ee3aefcc0ade2088100e528d5d3298a0a715a64f3d04c60ba02f", size = 632208, upload-time = "2025-09-08T23:07:42.298Z" }, + { url = "https://files.pythonhosted.org/packages/3b/e3/be2cc7ab8332bdac0522fdb64c17b1b6241a795bee02e0196636ec5beb79/pyzmq-27.1.0-cp310-cp310-win_arm64.whl", hash = "sha256:9a916f76c2ab8d045b19f2286851a38e9ac94ea91faf65bd64735924522a8b32", size = 559766, upload-time = "2025-09-08T23:07:43.869Z" }, + { url = "https://files.pythonhosted.org/packages/06/5d/305323ba86b284e6fcb0d842d6adaa2999035f70f8c38a9b6d21ad28c3d4/pyzmq-27.1.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:226b091818d461a3bef763805e75685e478ac17e9008f49fce2d3e52b3d58b86", size = 1333328, upload-time = "2025-09-08T23:07:45.946Z" }, + { url = "https://files.pythonhosted.org/packages/bd/a0/fc7e78a23748ad5443ac3275943457e8452da67fda347e05260261108cbc/pyzmq-27.1.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:0790a0161c281ca9723f804871b4027f2e8b5a528d357c8952d08cd1a9c15581", size = 908803, upload-time = "2025-09-08T23:07:47.551Z" }, + { url = "https://files.pythonhosted.org/packages/7e/22/37d15eb05f3bdfa4abea6f6d96eb3bb58585fbd3e4e0ded4e743bc650c97/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c895a6f35476b0c3a54e3eb6ccf41bf3018de937016e6e18748317f25d4e925f", size = 668836, upload-time = "2025-09-08T23:07:49.436Z" }, + { url = "https://files.pythonhosted.org/packages/b1/c4/2a6fe5111a01005fc7af3878259ce17684fabb8852815eda6225620f3c59/pyzmq-27.1.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5bbf8d3630bf96550b3be8e1fc0fea5cbdc8d5466c1192887bd94869da17a63e", size = 857038, upload-time = "2025-09-08T23:07:51.234Z" }, + { url = "https://files.pythonhosted.org/packages/cb/eb/bfdcb41d0db9cd233d6fb22dc131583774135505ada800ebf14dfb0a7c40/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:15c8bd0fe0dabf808e2d7a681398c4e5ded70a551ab47482067a572c054c8e2e", size = 1657531, upload-time = "2025-09-08T23:07:52.795Z" }, + { url = "https://files.pythonhosted.org/packages/ab/21/e3180ca269ed4a0de5c34417dfe71a8ae80421198be83ee619a8a485b0c7/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bafcb3dd171b4ae9f19ee6380dfc71ce0390fefaf26b504c0e5f628d7c8c54f2", size = 2034786, upload-time = "2025-09-08T23:07:55.047Z" }, + { url = "https://files.pythonhosted.org/packages/3b/b1/5e21d0b517434b7f33588ff76c177c5a167858cc38ef740608898cd329f2/pyzmq-27.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e829529fcaa09937189178115c49c504e69289abd39967cd8a4c215761373394", size = 1894220, upload-time = "2025-09-08T23:07:57.172Z" }, + { url = "https://files.pythonhosted.org/packages/03/f2/44913a6ff6941905efc24a1acf3d3cb6146b636c546c7406c38c49c403d4/pyzmq-27.1.0-cp311-cp311-win32.whl", hash = "sha256:6df079c47d5902af6db298ec92151db82ecb557af663098b92f2508c398bb54f", size = 567155, upload-time = "2025-09-08T23:07:59.05Z" }, + { url = "https://files.pythonhosted.org/packages/23/6d/d8d92a0eb270a925c9b4dd039c0b4dc10abc2fcbc48331788824ef113935/pyzmq-27.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:190cbf120fbc0fc4957b56866830def56628934a9d112aec0e2507aa6a032b97", size = 633428, upload-time = "2025-09-08T23:08:00.663Z" }, + { url = "https://files.pythonhosted.org/packages/ae/14/01afebc96c5abbbd713ecfc7469cfb1bc801c819a74ed5c9fad9a48801cb/pyzmq-27.1.0-cp311-cp311-win_arm64.whl", hash = "sha256:eca6b47df11a132d1745eb3b5b5e557a7dae2c303277aa0e69c6ba91b8736e07", size = 559497, upload-time = "2025-09-08T23:08:02.15Z" }, + { url = "https://files.pythonhosted.org/packages/92/e7/038aab64a946d535901103da16b953c8c9cc9c961dadcbf3609ed6428d23/pyzmq-27.1.0-cp312-abi3-macosx_10_15_universal2.whl", hash = "sha256:452631b640340c928fa343801b0d07eb0c3789a5ffa843f6e1a9cee0ba4eb4fc", size = 1306279, upload-time = "2025-09-08T23:08:03.807Z" }, + { url = "https://files.pythonhosted.org/packages/e8/5e/c3c49fdd0f535ef45eefcc16934648e9e59dace4a37ee88fc53f6cd8e641/pyzmq-27.1.0-cp312-abi3-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1c179799b118e554b66da67d88ed66cd37a169f1f23b5d9f0a231b4e8d44a113", size = 895645, upload-time = "2025-09-08T23:08:05.301Z" }, + { url = "https://files.pythonhosted.org/packages/f8/e5/b0b2504cb4e903a74dcf1ebae157f9e20ebb6ea76095f6cfffea28c42ecd/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:3837439b7f99e60312f0c926a6ad437b067356dc2bc2ec96eb395fd0fe804233", size = 652574, upload-time = "2025-09-08T23:08:06.828Z" }, + { url = "https://files.pythonhosted.org/packages/f8/9b/c108cdb55560eaf253f0cbdb61b29971e9fb34d9c3499b0e96e4e60ed8a5/pyzmq-27.1.0-cp312-abi3-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:43ad9a73e3da1fab5b0e7e13402f0b2fb934ae1c876c51d0afff0e7c052eca31", size = 840995, upload-time = "2025-09-08T23:08:08.396Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bb/b79798ca177b9eb0825b4c9998c6af8cd2a7f15a6a1a4272c1d1a21d382f/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:0de3028d69d4cdc475bfe47a6128eb38d8bc0e8f4d69646adfbcd840facbac28", size = 1642070, upload-time = "2025-09-08T23:08:09.989Z" }, + { url = "https://files.pythonhosted.org/packages/9c/80/2df2e7977c4ede24c79ae39dcef3899bfc5f34d1ca7a5b24f182c9b7a9ca/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_i686.whl", hash = "sha256:cf44a7763aea9298c0aa7dbf859f87ed7012de8bda0f3977b6fb1d96745df856", size = 2021121, upload-time = "2025-09-08T23:08:11.907Z" }, + { url = "https://files.pythonhosted.org/packages/46/bd/2d45ad24f5f5ae7e8d01525eb76786fa7557136555cac7d929880519e33a/pyzmq-27.1.0-cp312-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:f30f395a9e6fbca195400ce833c731e7b64c3919aa481af4d88c3759e0cb7496", size = 1878550, upload-time = "2025-09-08T23:08:13.513Z" }, + { url = "https://files.pythonhosted.org/packages/e6/2f/104c0a3c778d7c2ab8190e9db4f62f0b6957b53c9d87db77c284b69f33ea/pyzmq-27.1.0-cp312-abi3-win32.whl", hash = "sha256:250e5436a4ba13885494412b3da5d518cd0d3a278a1ae640e113c073a5f88edd", size = 559184, upload-time = "2025-09-08T23:08:15.163Z" }, + { url = "https://files.pythonhosted.org/packages/fc/7f/a21b20d577e4100c6a41795842028235998a643b1ad406a6d4163ea8f53e/pyzmq-27.1.0-cp312-abi3-win_amd64.whl", hash = "sha256:9ce490cf1d2ca2ad84733aa1d69ce6855372cb5ce9223802450c9b2a7cba0ccf", size = 619480, upload-time = "2025-09-08T23:08:17.192Z" }, + { url = "https://files.pythonhosted.org/packages/78/c2/c012beae5f76b72f007a9e91ee9401cb88c51d0f83c6257a03e785c81cc2/pyzmq-27.1.0-cp312-abi3-win_arm64.whl", hash = "sha256:75a2f36223f0d535a0c919e23615fc85a1e23b71f40c7eb43d7b1dedb4d8f15f", size = 552993, upload-time = "2025-09-08T23:08:18.926Z" }, + { url = "https://files.pythonhosted.org/packages/60/cb/84a13459c51da6cec1b7b1dc1a47e6db6da50b77ad7fd9c145842750a011/pyzmq-27.1.0-cp313-cp313-android_24_arm64_v8a.whl", hash = "sha256:93ad4b0855a664229559e45c8d23797ceac03183c7b6f5b4428152a6b06684a5", size = 1122436, upload-time = "2025-09-08T23:08:20.801Z" }, + { url = "https://files.pythonhosted.org/packages/dc/b6/94414759a69a26c3dd674570a81813c46a078767d931a6c70ad29fc585cb/pyzmq-27.1.0-cp313-cp313-android_24_x86_64.whl", hash = "sha256:fbb4f2400bfda24f12f009cba62ad5734148569ff4949b1b6ec3b519444342e6", size = 1156301, upload-time = "2025-09-08T23:08:22.47Z" }, + { url = "https://files.pythonhosted.org/packages/a5/ad/15906493fd40c316377fd8a8f6b1f93104f97a752667763c9b9c1b71d42d/pyzmq-27.1.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:e343d067f7b151cfe4eb3bb796a7752c9d369eed007b91231e817071d2c2fec7", size = 1341197, upload-time = "2025-09-08T23:08:24.286Z" }, + { url = "https://files.pythonhosted.org/packages/14/1d/d343f3ce13db53a54cb8946594e567410b2125394dafcc0268d8dda027e0/pyzmq-27.1.0-cp313-cp313t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:08363b2011dec81c354d694bdecaef4770e0ae96b9afea70b3f47b973655cc05", size = 897275, upload-time = "2025-09-08T23:08:26.063Z" }, + { url = "https://files.pythonhosted.org/packages/69/2d/d83dd6d7ca929a2fc67d2c3005415cdf322af7751d773524809f9e585129/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:d54530c8c8b5b8ddb3318f481297441af102517602b569146185fa10b63f4fa9", size = 660469, upload-time = "2025-09-08T23:08:27.623Z" }, + { url = "https://files.pythonhosted.org/packages/3e/cd/9822a7af117f4bc0f1952dbe9ef8358eb50a24928efd5edf54210b850259/pyzmq-27.1.0-cp313-cp313t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:6f3afa12c392f0a44a2414056d730eebc33ec0926aae92b5ad5cf26ebb6cc128", size = 847961, upload-time = "2025-09-08T23:08:29.672Z" }, + { url = "https://files.pythonhosted.org/packages/9a/12/f003e824a19ed73be15542f172fd0ec4ad0b60cf37436652c93b9df7c585/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:c65047adafe573ff023b3187bb93faa583151627bc9c51fc4fb2c561ed689d39", size = 1650282, upload-time = "2025-09-08T23:08:31.349Z" }, + { url = "https://files.pythonhosted.org/packages/d5/4a/e82d788ed58e9a23995cee70dbc20c9aded3d13a92d30d57ec2291f1e8a3/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:90e6e9441c946a8b0a667356f7078d96411391a3b8f80980315455574177ec97", size = 2024468, upload-time = "2025-09-08T23:08:33.543Z" }, + { url = "https://files.pythonhosted.org/packages/d9/94/2da0a60841f757481e402b34bf4c8bf57fa54a5466b965de791b1e6f747d/pyzmq-27.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:add071b2d25f84e8189aaf0882d39a285b42fa3853016ebab234a5e78c7a43db", size = 1885394, upload-time = "2025-09-08T23:08:35.51Z" }, + { url = "https://files.pythonhosted.org/packages/4f/6f/55c10e2e49ad52d080dc24e37adb215e5b0d64990b57598abc2e3f01725b/pyzmq-27.1.0-cp313-cp313t-win32.whl", hash = "sha256:7ccc0700cfdf7bd487bea8d850ec38f204478681ea02a582a8da8171b7f90a1c", size = 574964, upload-time = "2025-09-08T23:08:37.178Z" }, + { url = "https://files.pythonhosted.org/packages/87/4d/2534970ba63dd7c522d8ca80fb92777f362c0f321900667c615e2067cb29/pyzmq-27.1.0-cp313-cp313t-win_amd64.whl", hash = "sha256:8085a9fba668216b9b4323be338ee5437a235fe275b9d1610e422ccc279733e2", size = 641029, upload-time = "2025-09-08T23:08:40.595Z" }, + { url = "https://files.pythonhosted.org/packages/f6/fa/f8aea7a28b0641f31d40dea42d7ef003fded31e184ef47db696bc74cd610/pyzmq-27.1.0-cp313-cp313t-win_arm64.whl", hash = "sha256:6bb54ca21bcfe361e445256c15eedf083f153811c37be87e0514934d6913061e", size = 561541, upload-time = "2025-09-08T23:08:42.668Z" }, + { url = "https://files.pythonhosted.org/packages/87/45/19efbb3000956e82d0331bafca5d9ac19ea2857722fa2caacefb6042f39d/pyzmq-27.1.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:ce980af330231615756acd5154f29813d553ea555485ae712c491cd483df6b7a", size = 1341197, upload-time = "2025-09-08T23:08:44.973Z" }, + { url = "https://files.pythonhosted.org/packages/48/43/d72ccdbf0d73d1343936296665826350cb1e825f92f2db9db3e61c2162a2/pyzmq-27.1.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:1779be8c549e54a1c38f805e56d2a2e5c009d26de10921d7d51cfd1c8d4632ea", size = 897175, upload-time = "2025-09-08T23:08:46.601Z" }, + { url = "https://files.pythonhosted.org/packages/2f/2e/a483f73a10b65a9ef0161e817321d39a770b2acf8bcf3004a28d90d14a94/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7200bb0f03345515df50d99d3db206a0a6bee1955fbb8c453c76f5bf0e08fb96", size = 660427, upload-time = "2025-09-08T23:08:48.187Z" }, + { url = "https://files.pythonhosted.org/packages/f5/d2/5f36552c2d3e5685abe60dfa56f91169f7a2d99bbaf67c5271022ab40863/pyzmq-27.1.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:01c0e07d558b06a60773744ea6251f769cd79a41a97d11b8bf4ab8f034b0424d", size = 847929, upload-time = "2025-09-08T23:08:49.76Z" }, + { url = "https://files.pythonhosted.org/packages/c4/2a/404b331f2b7bf3198e9945f75c4c521f0c6a3a23b51f7a4a401b94a13833/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:80d834abee71f65253c91540445d37c4c561e293ba6e741b992f20a105d69146", size = 1650193, upload-time = "2025-09-08T23:08:51.7Z" }, + { url = "https://files.pythonhosted.org/packages/1c/0b/f4107e33f62a5acf60e3ded67ed33d79b4ce18de432625ce2fc5093d6388/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:544b4e3b7198dde4a62b8ff6685e9802a9a1ebf47e77478a5eb88eca2a82f2fd", size = 2024388, upload-time = "2025-09-08T23:08:53.393Z" }, + { url = "https://files.pythonhosted.org/packages/0d/01/add31fe76512642fd6e40e3a3bd21f4b47e242c8ba33efb6809e37076d9b/pyzmq-27.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:cedc4c68178e59a4046f97eca31b148ddcf51e88677de1ef4e78cf06c5376c9a", size = 1885316, upload-time = "2025-09-08T23:08:55.702Z" }, + { url = "https://files.pythonhosted.org/packages/c4/59/a5f38970f9bf07cee96128de79590bb354917914a9be11272cfc7ff26af0/pyzmq-27.1.0-cp314-cp314t-win32.whl", hash = "sha256:1f0b2a577fd770aa6f053211a55d1c47901f4d537389a034c690291485e5fe92", size = 587472, upload-time = "2025-09-08T23:08:58.18Z" }, + { url = "https://files.pythonhosted.org/packages/70/d8/78b1bad170f93fcf5e3536e70e8fadac55030002275c9a29e8f5719185de/pyzmq-27.1.0-cp314-cp314t-win_amd64.whl", hash = "sha256:19c9468ae0437f8074af379e986c5d3d7d7bfe033506af442e8c879732bedbe0", size = 661401, upload-time = "2025-09-08T23:08:59.802Z" }, + { url = "https://files.pythonhosted.org/packages/81/d6/4bfbb40c9a0b42fc53c7cf442f6385db70b40f74a783130c5d0a5aa62228/pyzmq-27.1.0-cp314-cp314t-win_arm64.whl", hash = "sha256:dc5dbf68a7857b59473f7df42650c621d7e8923fb03fa74a526890f4d33cc4d7", size = 575170, upload-time = "2025-09-08T23:09:01.418Z" }, + { url = "https://files.pythonhosted.org/packages/f3/81/a65e71c1552f74dec9dff91d95bafb6e0d33338a8dfefbc88aa562a20c92/pyzmq-27.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:c17e03cbc9312bee223864f1a2b13a99522e0dc9f7c5df0177cd45210ac286e6", size = 836266, upload-time = "2025-09-08T23:09:40.048Z" }, + { url = "https://files.pythonhosted.org/packages/58/ed/0202ca350f4f2b69faa95c6d931e3c05c3a397c184cacb84cb4f8f42f287/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f328d01128373cb6763823b2b4e7f73bdf767834268c565151eacb3b7a392f90", size = 800206, upload-time = "2025-09-08T23:09:41.902Z" }, + { url = "https://files.pythonhosted.org/packages/47/42/1ff831fa87fe8f0a840ddb399054ca0009605d820e2b44ea43114f5459f4/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9c1790386614232e1b3a40a958454bdd42c6d1811837b15ddbb052a032a43f62", size = 567747, upload-time = "2025-09-08T23:09:43.741Z" }, + { url = "https://files.pythonhosted.org/packages/d1/db/5c4d6807434751e3f21231bee98109aa57b9b9b55e058e450d0aef59b70f/pyzmq-27.1.0-pp310-pypy310_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:448f9cb54eb0cee4732b46584f2710c8bc178b0e5371d9e4fc8125201e413a74", size = 747371, upload-time = "2025-09-08T23:09:45.575Z" }, + { url = "https://files.pythonhosted.org/packages/26/af/78ce193dbf03567eb8c0dc30e3df2b9e56f12a670bf7eb20f9fb532c7e8a/pyzmq-27.1.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:05b12f2d32112bf8c95ef2e74ec4f1d4beb01f8b5e703b38537f8849f92cb9ba", size = 544862, upload-time = "2025-09-08T23:09:47.448Z" }, + { url = "https://files.pythonhosted.org/packages/4c/c6/c4dcdecdbaa70969ee1fdced6d7b8f60cfabe64d25361f27ac4665a70620/pyzmq-27.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:18770c8d3563715387139060d37859c02ce40718d1faf299abddcdcc6a649066", size = 836265, upload-time = "2025-09-08T23:09:49.376Z" }, + { url = "https://files.pythonhosted.org/packages/3e/79/f38c92eeaeb03a2ccc2ba9866f0439593bb08c5e3b714ac1d553e5c96e25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:ac25465d42f92e990f8d8b0546b01c391ad431c3bf447683fdc40565941d0604", size = 800208, upload-time = "2025-09-08T23:09:51.073Z" }, + { url = "https://files.pythonhosted.org/packages/49/0e/3f0d0d335c6b3abb9b7b723776d0b21fa7f3a6c819a0db6097059aada160/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53b40f8ae006f2734ee7608d59ed661419f087521edbfc2149c3932e9c14808c", size = 567747, upload-time = "2025-09-08T23:09:52.698Z" }, + { url = "https://files.pythonhosted.org/packages/a1/cf/f2b3784d536250ffd4be70e049f3b60981235d70c6e8ce7e3ef21e1adb25/pyzmq-27.1.0-pp311-pypy311_pp73-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f605d884e7c8be8fe1aa94e0a783bf3f591b84c24e4bc4f3e7564c82ac25e271", size = 747371, upload-time = "2025-09-08T23:09:54.563Z" }, + { url = "https://files.pythonhosted.org/packages/01/1b/5dbe84eefc86f48473947e2f41711aded97eecef1231f4558f1f02713c12/pyzmq-27.1.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:c9f7f6e13dff2e44a6afeaf2cf54cee5929ad64afaf4d40b50f93c58fc687355", size = 544862, upload-time = "2025-09-08T23:09:56.509Z" }, +] + [[package]] name = "questionary" version = "2.1.1" @@ -7308,6 +9010,43 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b1/ad/fa2d3e5c29a04ead7eaa731c7cd1f30f9ec3c77b3a578fdf90280797cbcb/rapidfuzz-3.14.3-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:56fefb4382bb12250f164250240b9dd7772e41c5c8ae976fd598a32292449cc5", size = 1511361, upload-time = "2025-11-01T11:54:49.057Z" }, ] +[[package]] +name = "ray" +version = "2.53.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "filelock" }, + { name = "jsonschema" }, + { name = "msgpack" }, + { name = "packaging" }, + { name = "protobuf" }, + { name = "pyyaml" }, + { name = "requests" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/2f/99/21986c7f8135dafbf7c49229c52faaa9d2d365db7d86fffe978dde8ee967/ray-2.53.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4db914a0a6dd608fa49c066929a1282745a2dbd73caee67d7b80fe684ca65bdd", size = 69473649, upload-time = "2025-12-20T16:05:40.58Z" }, + { url = "https://files.pythonhosted.org/packages/70/d9/58b5426a3f11993851db3c93841358cebdddd948153481d355b720f31f9d/ray-2.53.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:4108280d8a1cb90d7d68e5c954c35e63b8bb9a4ba15f88c5e7da0e2025647712", size = 71342662, upload-time = "2025-12-20T16:05:46.936Z" }, + { url = "https://files.pythonhosted.org/packages/c5/05/4aa32370b313481c2d1d41cb53ec786daebdb2ef665b01ef2ac43d9cf457/ray-2.53.0-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:4dbb5fce1364763f29741055f50abe33cf726397141f9cc0e845dd3cc963e455", size = 72188620, upload-time = "2025-12-20T16:05:52.817Z" }, + { url = "https://files.pythonhosted.org/packages/f7/c6/21efe5886898421df20078a333b0984eade7d7aa4bdc68a336f0c66db27e/ray-2.53.0-cp310-cp310-win_amd64.whl", hash = "sha256:90faf630d20b6abf3135997fb3edb5842134aff92e04ee709865db04816d97ef", size = 27200553, upload-time = "2025-12-20T16:05:57.655Z" }, + { url = "https://files.pythonhosted.org/packages/bf/64/d5c29a4b014d8b9a624203a88b67630072c1d6960425dbf7a1f0fa5d6b74/ray-2.53.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:bd3ec4c342776ddac23ae2b108c64f5939f417ccc4875900d586c7c978463269", size = 69479296, upload-time = "2025-12-20T16:06:05.111Z" }, + { url = "https://files.pythonhosted.org/packages/c6/41/9e19d1e5d9458a5ba157c36642e2874bcb22fddbd7c1e77b668e5afc3f3d/ray-2.53.0-cp311-cp311-manylinux2014_aarch64.whl", hash = "sha256:a0bbb98b0b0f25a3ee075ca10171e1260e70b6bc690cd509ecd7ce1228af854d", size = 71463449, upload-time = "2025-12-20T16:06:10.983Z" }, + { url = "https://files.pythonhosted.org/packages/63/de/58c19906b0dd16ea06b4f2465b7327f5f180e6b6e1c8c9b610d7c589ea5f/ray-2.53.0-cp311-cp311-manylinux2014_x86_64.whl", hash = "sha256:eb000c17f7301071fdd15c44c4cd3ac0f7953bb4c7c227e61719fe7048195bcd", size = 72305102, upload-time = "2025-12-20T16:06:17.989Z" }, + { url = "https://files.pythonhosted.org/packages/b1/43/72cc1cfe17d26abe62a793eab10445f9546dce24192b85a6cd0cdc47ed86/ray-2.53.0-cp311-cp311-win_amd64.whl", hash = "sha256:4a1bb3fe09ab4cd0d16ddc96b9f60c9ed83b3f93b87aa8506e0d3b746fd4e825", size = 27194174, upload-time = "2025-12-20T16:06:23.042Z" }, + { url = "https://files.pythonhosted.org/packages/b2/44/562718a634e63e8ef7985285288a167d4af62bc2a7decce3300cf937776a/ray-2.53.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:d8b95d047d947493803fb8417aea31225dcacdab15afdc75b8a238901949d457", size = 69463763, upload-time = "2025-12-20T16:06:28.685Z" }, + { url = "https://files.pythonhosted.org/packages/38/68/8e59b8413f3751fe7ce8b98ee8787d13964b47a4043587950790a9dd2151/ray-2.53.0-cp312-cp312-manylinux2014_aarch64.whl", hash = "sha256:65e2ce58d3dc6baa3cf45824d889c1968ebde565ee54dfd80a98af8f31af8e4a", size = 71504450, upload-time = "2025-12-20T16:06:34.922Z" }, + { url = "https://files.pythonhosted.org/packages/2a/db/978a50d264565ca42e2a4bf115ec9a1f04f19ca5e620e6aa2f280747b644/ray-2.53.0-cp312-cp312-manylinux2014_x86_64.whl", hash = "sha256:14f46363e9b4cf0c1c8b4d8623ec337c5bd408377831b5e5b50067930137bbca", size = 72370424, upload-time = "2025-12-20T16:06:40.821Z" }, + { url = "https://files.pythonhosted.org/packages/8d/6c/bba6f22a9d83ee8f236000ba315f0c197bdc79888b4fa42fd762f729cbbd/ray-2.53.0-cp312-cp312-win_amd64.whl", hash = "sha256:b828c147f9ff2f277b1d254e4fe9a746fdfaee7e313a93a97c7edf4dae9b81a4", size = 27178106, upload-time = "2025-12-20T16:06:45.594Z" }, + { url = "https://files.pythonhosted.org/packages/3d/38/450cf9cf3c490fa4cc6d470597f819444da60f85579d2b34b95ee79fcb6f/ray-2.53.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:85b472ab6fb8f1189f8cef81913fd91b24dd69b3fa7dcca7e144827bd924f6c0", size = 69409819, upload-time = "2025-12-20T16:06:50.668Z" }, + { url = "https://files.pythonhosted.org/packages/71/5e/d452970b07174d5e4f8688abae889d01321b51ced827db1f1d1cb7d56d44/ray-2.53.0-cp313-cp313-manylinux2014_aarch64.whl", hash = "sha256:7196e5358dfcc8211be864f45e6dfe4827202df294af3c7a76ff8fbc080e0522", size = 71409529, upload-time = "2025-12-20T16:06:56.2Z" }, + { url = "https://files.pythonhosted.org/packages/cb/84/50b317a125617a638a64694c12f56183edd5df01828a35fa4c55c7b13c66/ray-2.53.0-cp313-cp313-manylinux2014_x86_64.whl", hash = "sha256:73dbbaa7962a7f5e38aa8cf9483e0e9817205e989aa3dc859c738c2af1ae01df", size = 72283961, upload-time = "2025-12-20T16:07:05.831Z" }, +] + +[package.optional-dependencies] +cgraph = [ + { name = "cupy-cuda12x", marker = "sys_platform != 'darwin'" }, +] + [[package]] name = "referencing" version = "0.37.0" @@ -7483,6 +9222,141 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/25/7a/b0178788f8dc6cafce37a212c99565fa1fe7872c70c6c9c1e1a372d9d88f/rich-14.2.0-py3-none-any.whl", hash = "sha256:76bc51fe2e57d2b1be1f96c524b890b816e334ab4c1e45888799bfaab0021edd", size = 243393, upload-time = "2025-10-09T14:16:51.245Z" }, ] +[[package]] +name = "rich-toolkit" +version = "0.17.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "click" }, + { name = "rich" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/97/09/3f9b8d9daaf235195c626f21e03604c05b987404ee3bcacee0c1f67f2a8e/rich_toolkit-0.17.1.tar.gz", hash = "sha256:5af54df8d1dd9c8530e462e1bdcaed625c9b49f5a55b035aa0ba1c17bdb87c9a", size = 187925, upload-time = "2025-12-17T10:49:22.583Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/7f/7b/15e55fa8a76d0d41bf34d965af78acdaf80a315907adb30de8b63c272694/rich_toolkit-0.17.1-py3-none-any.whl", hash = "sha256:96d24bb921ecd225ffce7c526a9149e74006410c05e6d405bd74ffd54d5631ed", size = 31412, upload-time = "2025-12-17T10:49:21.793Z" }, +] + +[[package]] +name = "rignore" +version = "0.7.6" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/e5/f5/8bed2310abe4ae04b67a38374a4d311dd85220f5d8da56f47ae9361be0b0/rignore-0.7.6.tar.gz", hash = "sha256:00d3546cd793c30cb17921ce674d2c8f3a4b00501cb0e3dd0e82217dbeba2671", size = 57140, upload-time = "2025-11-05T21:41:21.968Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/86/7a/b970cd0138b0ece72eb28f086e933f9ed75b795716ad3de5ab22994b3b54/rignore-0.7.6-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:f3c74a7e5ee77aea669c95fdb3933f2a6c7549893700082e759128a29cf67e45", size = 884999, upload-time = "2025-11-05T20:42:38.373Z" }, + { url = "https://files.pythonhosted.org/packages/ca/05/23faca29616d8966ada63fb0e13c214107811fa9a0aba2275e4c7ca63bd5/rignore-0.7.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b7202404958f5fe3474bac91f65350f0b1dde1a5e05089f2946549b7e91e79ec", size = 824824, upload-time = "2025-11-05T20:42:22.1Z" }, + { url = "https://files.pythonhosted.org/packages/fa/2e/05a1e61f04cf2548524224f0b5f21ca19ea58f7273a863bac10846b8ff69/rignore-0.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6bde7c5835fa3905bfb7e329a4f1d7eccb676de63da7a3f934ddd5c06df20597", size = 899121, upload-time = "2025-11-05T20:40:48.94Z" }, + { url = "https://files.pythonhosted.org/packages/ff/35/71518847e10bdbf359badad8800e4681757a01f4777b3c5e03dbde8a42d8/rignore-0.7.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:626c3d4ba03af266694d25101bc1d8d16eda49c5feb86cedfec31c614fceca7d", size = 873813, upload-time = "2025-11-05T20:41:04.71Z" }, + { url = "https://files.pythonhosted.org/packages/f6/c8/32ae405d3e7fd4d9f9b7838f2fcca0a5005bb87fa514b83f83fd81c0df22/rignore-0.7.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0a43841e651e7a05a4274b9026cc408d1912e64016ede8cd4c145dae5d0635be", size = 1168019, upload-time = "2025-11-05T20:41:20.723Z" }, + { url = "https://files.pythonhosted.org/packages/25/98/013c955982bc5b4719bf9a5bea58be317eea28aa12bfd004025e3cd7c000/rignore-0.7.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7978c498dbf7f74d30cdb8859fe612167d8247f0acd377ae85180e34490725da", size = 942822, upload-time = "2025-11-05T20:41:36.99Z" }, + { url = "https://files.pythonhosted.org/packages/90/fb/9a3f3156c6ed30bcd597e63690353edac1fcffe9d382ad517722b56ac195/rignore-0.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2d22f72ab695c07d2d96d2a645208daff17084441b5d58c07378c9dd6f9c4c87", size = 959820, upload-time = "2025-11-05T20:42:06.364Z" }, + { url = "https://files.pythonhosted.org/packages/5e/b2/93bf609633021e9658acaff24cfb055d8cdaf7f5855d10ebb35307900dda/rignore-0.7.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:d5bd8e1a91ed1a789b2cbe39eeea9204a6719d4f2cf443a9544b521a285a295f", size = 985050, upload-time = "2025-11-05T20:41:51.124Z" }, + { url = "https://files.pythonhosted.org/packages/69/bc/ec2d040469bdfd7b743df10f2201c5d285009a4263d506edbf7a06a090bb/rignore-0.7.6-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:bc1fc03efad5789365018e94ac4079f851a999bc154d1551c45179f7fcf45322", size = 1079164, upload-time = "2025-11-05T21:40:10.368Z" }, + { url = "https://files.pythonhosted.org/packages/df/26/4b635f4ea5baf4baa8ba8eee06163f6af6e76dfbe72deb57da34bb24b19d/rignore-0.7.6-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:ce2617fe28c51367fd8abfd4eeea9e61664af63c17d4ea00353d8ef56dfb95fa", size = 1139028, upload-time = "2025-11-05T21:40:27.977Z" }, + { url = "https://files.pythonhosted.org/packages/6a/54/a3147ebd1e477b06eb24e2c2c56d951ae5faa9045b7b36d7892fec5080d9/rignore-0.7.6-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:7c4ad2cee85068408e7819a38243043214e2c3047e9bd4c506f8de01c302709e", size = 1119024, upload-time = "2025-11-05T21:40:45.148Z" }, + { url = "https://files.pythonhosted.org/packages/fb/f4/27475db769a57cff18fe7e7267b36e6cdb5b1281caa185ba544171106cba/rignore-0.7.6-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:02cd240bfd59ecc3907766f4839cbba20530a2e470abca09eaa82225e4d946fb", size = 1128531, upload-time = "2025-11-05T21:41:02.734Z" }, + { url = "https://files.pythonhosted.org/packages/97/32/6e782d3b352e4349fa0e90bf75b13cb7f11d8908b36d9e2b262224b65d9a/rignore-0.7.6-cp310-cp310-win32.whl", hash = "sha256:fe2bd8fa1ff555259df54c376abc73855cb02628a474a40d51b358c3a1ddc55b", size = 646817, upload-time = "2025-11-05T21:41:47.51Z" }, + { url = "https://files.pythonhosted.org/packages/c0/8a/53185c69abb3bb362e8a46b8089999f820bf15655629ff8395107633c8ab/rignore-0.7.6-cp310-cp310-win_amd64.whl", hash = "sha256:d80afd6071c78baf3765ec698841071b19e41c326f994cfa69b5a1df676f5d39", size = 727001, upload-time = "2025-11-05T21:41:32.778Z" }, + { url = "https://files.pythonhosted.org/packages/25/41/b6e2be3069ef3b7f24e35d2911bd6deb83d20ed5642ad81d5a6d1c015473/rignore-0.7.6-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:40be8226e12d6653abbebaffaea2885f80374c1c8f76fe5ca9e0cadd120a272c", size = 885285, upload-time = "2025-11-05T20:42:39.763Z" }, + { url = "https://files.pythonhosted.org/packages/52/66/ba7f561b6062402022887706a7f2b2c2e2e2a28f1e3839202b0a2f77e36d/rignore-0.7.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:182f4e5e4064d947c756819446a7d4cdede8e756b8c81cf9e509683fe38778d7", size = 823882, upload-time = "2025-11-05T20:42:23.488Z" }, + { url = "https://files.pythonhosted.org/packages/f5/81/4087453df35a90b07370647b19017029324950c1b9137d54bf1f33843f17/rignore-0.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:16b63047648a916a87be1e51bb5c009063f1b8b6f5afe4f04f875525507e63dc", size = 899362, upload-time = "2025-11-05T20:40:51.111Z" }, + { url = "https://files.pythonhosted.org/packages/fb/c9/390a8fdfabb76d71416be773bd9f162977bd483084f68daf19da1dec88a6/rignore-0.7.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ba5524f5178deca4d7695e936604ebc742acb8958f9395776e1fcb8133f8257a", size = 873633, upload-time = "2025-11-05T20:41:06.193Z" }, + { url = "https://files.pythonhosted.org/packages/df/c9/79404fcb0faa76edfbc9df0901f8ef18568d1104919ebbbad6d608c888d1/rignore-0.7.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:62020dbb89a1dd4b84ab3d60547b3b2eb2723641d5fb198463643f71eaaed57d", size = 1167633, upload-time = "2025-11-05T20:41:22.491Z" }, + { url = "https://files.pythonhosted.org/packages/6e/8d/b3466d32d445d158a0aceb80919085baaae495b1f540fb942f91d93b5e5b/rignore-0.7.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b34acd532769d5a6f153a52a98dcb81615c949ab11697ce26b2eb776af2e174d", size = 941434, upload-time = "2025-11-05T20:41:38.151Z" }, + { url = "https://files.pythonhosted.org/packages/e8/40/9cd949761a7af5bc27022a939c91ff622d29c7a0b66d0c13a863097dde2d/rignore-0.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1c5e53b752f9de44dff7b3be3c98455ce3bf88e69d6dc0cf4f213346c5e3416c", size = 959461, upload-time = "2025-11-05T20:42:08.476Z" }, + { url = "https://files.pythonhosted.org/packages/b5/87/1e1a145731f73bdb7835e11f80da06f79a00d68b370d9a847de979575e6d/rignore-0.7.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:25b3536d13a5d6409ce85f23936f044576eeebf7b6db1d078051b288410fc049", size = 985323, upload-time = "2025-11-05T20:41:52.735Z" }, + { url = "https://files.pythonhosted.org/packages/6c/31/1ecff992fc3f59c4fcdcb6c07d5f6c1e6dfb55ccda19c083aca9d86fa1c6/rignore-0.7.6-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6e01cad2b0b92f6b1993f29fc01f23f2d78caf4bf93b11096d28e9d578eb08ce", size = 1079173, upload-time = "2025-11-05T21:40:12.007Z" }, + { url = "https://files.pythonhosted.org/packages/17/18/162eedadb4c2282fa4c521700dbf93c9b14b8842e8354f7d72b445b8d593/rignore-0.7.6-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5991e46ab9b4868334c9e372ab0892b0150f3f586ff2b1e314272caeb38aaedb", size = 1139012, upload-time = "2025-11-05T21:40:29.399Z" }, + { url = "https://files.pythonhosted.org/packages/78/96/a9ca398a8af74bb143ad66c2a31303c894111977e28b0d0eab03867f1b43/rignore-0.7.6-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:6c8ae562e5d1246cba5eaeb92a47b2a279e7637102828dde41dcbe291f529a3e", size = 1118827, upload-time = "2025-11-05T21:40:46.6Z" }, + { url = "https://files.pythonhosted.org/packages/9f/22/1c1a65047df864def9a047dbb40bc0b580b8289a4280e62779cd61ae21f2/rignore-0.7.6-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:aaf938530dcc0b47c4cfa52807aa2e5bfd5ca6d57a621125fe293098692f6345", size = 1128182, upload-time = "2025-11-05T21:41:04.239Z" }, + { url = "https://files.pythonhosted.org/packages/bd/f4/1526eb01fdc2235aca1fd9d0189bee4021d009a8dcb0161540238c24166e/rignore-0.7.6-cp311-cp311-win32.whl", hash = "sha256:166ebce373105dd485ec213a6a2695986346e60c94ff3d84eb532a237b24a4d5", size = 646547, upload-time = "2025-11-05T21:41:49.439Z" }, + { url = "https://files.pythonhosted.org/packages/7c/c8/dda0983e1845706beb5826459781549a840fe5a7eb934abc523e8cd17814/rignore-0.7.6-cp311-cp311-win_amd64.whl", hash = "sha256:44f35ee844b1a8cea50d056e6a595190ce9d42d3cccf9f19d280ae5f3058973a", size = 727139, upload-time = "2025-11-05T21:41:34.367Z" }, + { url = "https://files.pythonhosted.org/packages/e3/47/eb1206b7bf65970d41190b879e1723fc6bbdb2d45e53565f28991a8d9d96/rignore-0.7.6-cp311-cp311-win_arm64.whl", hash = "sha256:14b58f3da4fa3d5c3fa865cab49821675371f5e979281c683e131ae29159a581", size = 657598, upload-time = "2025-11-05T21:41:23.758Z" }, + { url = "https://files.pythonhosted.org/packages/0b/0e/012556ef3047a2628842b44e753bb15f4dc46806780ff090f1e8fe4bf1eb/rignore-0.7.6-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:03e82348cb7234f8d9b2834f854400ddbbd04c0f8f35495119e66adbd37827a8", size = 883488, upload-time = "2025-11-05T20:42:41.359Z" }, + { url = "https://files.pythonhosted.org/packages/93/b0/d4f1f3fe9eb3f8e382d45ce5b0547ea01c4b7e0b4b4eb87bcd66a1d2b888/rignore-0.7.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b9e624f6be6116ea682e76c5feb71ea91255c67c86cb75befe774365b2931961", size = 820411, upload-time = "2025-11-05T20:42:24.782Z" }, + { url = "https://files.pythonhosted.org/packages/4a/c8/dea564b36dedac8de21c18e1851789545bc52a0c22ece9843444d5608a6a/rignore-0.7.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bda49950d405aa8d0ebe26af807c4e662dd281d926530f03f29690a2e07d649a", size = 897821, upload-time = "2025-11-05T20:40:52.613Z" }, + { url = "https://files.pythonhosted.org/packages/b3/2b/ee96db17ac1835e024c5d0742eefb7e46de60020385ac883dd3d1cde2c1f/rignore-0.7.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5fd5ab3840b8c16851d327ed06e9b8be6459702a53e5ab1fc4073b684b3789e", size = 873963, upload-time = "2025-11-05T20:41:07.49Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8c/ad5a57bbb9d14d5c7e5960f712a8a0b902472ea3f4a2138cbf70d1777b75/rignore-0.7.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ced2a248352636a5c77504cb755dc02c2eef9a820a44d3f33061ce1bb8a7f2d2", size = 1169216, upload-time = "2025-11-05T20:41:23.73Z" }, + { url = "https://files.pythonhosted.org/packages/80/e6/5b00bc2a6bc1701e6878fca798cf5d9125eb3113193e33078b6fc0d99123/rignore-0.7.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a04a3b73b75ddc12c9c9b21efcdaab33ca3832941d6f1d67bffd860941cd448a", size = 942942, upload-time = "2025-11-05T20:41:39.393Z" }, + { url = "https://files.pythonhosted.org/packages/85/e5/7f99bd0cc9818a91d0e8b9acc65b792e35750e3bdccd15a7ee75e64efca4/rignore-0.7.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d24321efac92140b7ec910ac7c53ab0f0c86a41133d2bb4b0e6a7c94967f44dd", size = 959787, upload-time = "2025-11-05T20:42:09.765Z" }, + { url = "https://files.pythonhosted.org/packages/55/54/2ffea79a7c1eabcede1926347ebc2a81bc6b81f447d05b52af9af14948b9/rignore-0.7.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:73c7aa109d41e593785c55fdaa89ad80b10330affa9f9d3e3a51fa695f739b20", size = 984245, upload-time = "2025-11-05T20:41:54.062Z" }, + { url = "https://files.pythonhosted.org/packages/41/f7/e80f55dfe0f35787fa482aa18689b9c8251e045076c35477deb0007b3277/rignore-0.7.6-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1734dc49d1e9501b07852ef44421f84d9f378da9fbeda729e77db71f49cac28b", size = 1078647, upload-time = "2025-11-05T21:40:13.463Z" }, + { url = "https://files.pythonhosted.org/packages/d4/cf/2c64f0b6725149f7c6e7e5a909d14354889b4beaadddaa5fff023ec71084/rignore-0.7.6-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:5719ea14ea2b652c0c0894be5dfde954e1853a80dea27dd2fbaa749618d837f5", size = 1139186, upload-time = "2025-11-05T21:40:31.27Z" }, + { url = "https://files.pythonhosted.org/packages/75/95/a86c84909ccc24af0d094b50d54697951e576c252a4d9f21b47b52af9598/rignore-0.7.6-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:8e23424fc7ce35726854f639cb7968151a792c0c3d9d082f7f67e0c362cfecca", size = 1117604, upload-time = "2025-11-05T21:40:48.07Z" }, + { url = "https://files.pythonhosted.org/packages/7f/5e/13b249613fd5d18d58662490ab910a9f0be758981d1797789913adb4e918/rignore-0.7.6-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3efdcf1dd84d45f3e2bd2f93303d9be103888f56dfa7c3349b5bf4f0657ec696", size = 1127725, upload-time = "2025-11-05T21:41:05.804Z" }, + { url = "https://files.pythonhosted.org/packages/c7/28/fa5dcd1e2e16982c359128664e3785f202d3eca9b22dd0b2f91c4b3d242f/rignore-0.7.6-cp312-cp312-win32.whl", hash = "sha256:ccca9d1a8b5234c76b71546fc3c134533b013f40495f394a65614a81f7387046", size = 646145, upload-time = "2025-11-05T21:41:51.096Z" }, + { url = "https://files.pythonhosted.org/packages/26/87/69387fb5dd81a0f771936381431780b8cf66fcd2cfe9495e1aaf41548931/rignore-0.7.6-cp312-cp312-win_amd64.whl", hash = "sha256:c96a285e4a8bfec0652e0bfcf42b1aabcdda1e7625f5006d188e3b1c87fdb543", size = 726090, upload-time = "2025-11-05T21:41:36.485Z" }, + { url = "https://files.pythonhosted.org/packages/24/5f/e8418108dcda8087fb198a6f81caadbcda9fd115d61154bf0df4d6d3619b/rignore-0.7.6-cp312-cp312-win_arm64.whl", hash = "sha256:a64a750e7a8277a323f01ca50b7784a764845f6cce2fe38831cb93f0508d0051", size = 656317, upload-time = "2025-11-05T21:41:25.305Z" }, + { url = "https://files.pythonhosted.org/packages/b7/8a/a4078f6e14932ac7edb171149c481de29969d96ddee3ece5dc4c26f9e0c3/rignore-0.7.6-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:2bdab1d31ec9b4fb1331980ee49ea051c0d7f7bb6baa28b3125ef03cdc48fdaf", size = 883057, upload-time = "2025-11-05T20:42:42.741Z" }, + { url = "https://files.pythonhosted.org/packages/f9/8f/f8daacd177db4bf7c2223bab41e630c52711f8af9ed279be2058d2fe4982/rignore-0.7.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:90f0a00ce0c866c275bf888271f1dc0d2140f29b82fcf33cdbda1e1a6af01010", size = 820150, upload-time = "2025-11-05T20:42:26.545Z" }, + { url = "https://files.pythonhosted.org/packages/36/31/b65b837e39c3f7064c426754714ac633b66b8c2290978af9d7f513e14aa9/rignore-0.7.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c1ad295537041dc2ed4b540fb1a3906bd9ede6ccdad3fe79770cd89e04e3c73c", size = 897406, upload-time = "2025-11-05T20:40:53.854Z" }, + { url = "https://files.pythonhosted.org/packages/ca/58/1970ce006c427e202ac7c081435719a076c478f07b3a23f469227788dc23/rignore-0.7.6-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f782dbd3a65a5ac85adfff69e5c6b101285ef3f845c3a3cae56a54bebf9fe116", size = 874050, upload-time = "2025-11-05T20:41:08.922Z" }, + { url = "https://files.pythonhosted.org/packages/d4/00/eb45db9f90137329072a732273be0d383cb7d7f50ddc8e0bceea34c1dfdf/rignore-0.7.6-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:65cece3b36e5b0826d946494734c0e6aaf5a0337e18ff55b071438efe13d559e", size = 1167835, upload-time = "2025-11-05T20:41:24.997Z" }, + { url = "https://files.pythonhosted.org/packages/f3/f1/6f1d72ddca41a64eed569680587a1236633587cc9f78136477ae69e2c88a/rignore-0.7.6-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d7e4bb66c13cd7602dc8931822c02dfbbd5252015c750ac5d6152b186f0a8be0", size = 941945, upload-time = "2025-11-05T20:41:40.628Z" }, + { url = "https://files.pythonhosted.org/packages/48/6f/2f178af1c1a276a065f563ec1e11e7a9e23d4996fd0465516afce4b5c636/rignore-0.7.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297e500c15766e196f68aaaa70e8b6db85fa23fdc075b880d8231fdfba738cd7", size = 959067, upload-time = "2025-11-05T20:42:11.09Z" }, + { url = "https://files.pythonhosted.org/packages/5b/db/423a81c4c1e173877c7f9b5767dcaf1ab50484a94f60a0b2ed78be3fa765/rignore-0.7.6-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:a07084211a8d35e1a5b1d32b9661a5ed20669970b369df0cf77da3adea3405de", size = 984438, upload-time = "2025-11-05T20:41:55.443Z" }, + { url = "https://files.pythonhosted.org/packages/31/eb/c4f92cc3f2825d501d3c46a244a671eb737fc1bcf7b05a3ecd34abb3e0d7/rignore-0.7.6-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:181eb2a975a22256a1441a9d2f15eb1292839ea3f05606620bd9e1938302cf79", size = 1078365, upload-time = "2025-11-05T21:40:15.148Z" }, + { url = "https://files.pythonhosted.org/packages/26/09/99442f02794bd7441bfc8ed1c7319e890449b816a7493b2db0e30af39095/rignore-0.7.6-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:7bbcdc52b5bf9f054b34ce4af5269df5d863d9c2456243338bc193c28022bd7b", size = 1139066, upload-time = "2025-11-05T21:40:32.771Z" }, + { url = "https://files.pythonhosted.org/packages/2c/88/bcfc21e520bba975410e9419450f4b90a2ac8236b9a80fd8130e87d098af/rignore-0.7.6-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f2e027a6da21a7c8c0d87553c24ca5cc4364def18d146057862c23a96546238e", size = 1118036, upload-time = "2025-11-05T21:40:49.646Z" }, + { url = "https://files.pythonhosted.org/packages/e2/25/d37215e4562cda5c13312636393aea0bafe38d54d4e0517520a4cc0753ec/rignore-0.7.6-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ee4a18b82cbbc648e4aac1510066682fe62beb5dc88e2c67c53a83954e541360", size = 1127550, upload-time = "2025-11-05T21:41:07.648Z" }, + { url = "https://files.pythonhosted.org/packages/dc/76/a264ab38bfa1620ec12a8ff1c07778da89e16d8c0f3450b0333020d3d6dc/rignore-0.7.6-cp313-cp313-win32.whl", hash = "sha256:a7d7148b6e5e95035d4390396895adc384d37ff4e06781a36fe573bba7c283e5", size = 646097, upload-time = "2025-11-05T21:41:53.201Z" }, + { url = "https://files.pythonhosted.org/packages/62/44/3c31b8983c29ea8832b6082ddb1d07b90379c2d993bd20fce4487b71b4f4/rignore-0.7.6-cp313-cp313-win_amd64.whl", hash = "sha256:b037c4b15a64dced08fc12310ee844ec2284c4c5c1ca77bc37d0a04f7bff386e", size = 726170, upload-time = "2025-11-05T21:41:38.131Z" }, + { url = "https://files.pythonhosted.org/packages/aa/41/e26a075cab83debe41a42661262f606166157df84e0e02e2d904d134c0d8/rignore-0.7.6-cp313-cp313-win_arm64.whl", hash = "sha256:e47443de9b12fe569889bdbe020abe0e0b667516ee2ab435443f6d0869bd2804", size = 656184, upload-time = "2025-11-05T21:41:27.396Z" }, + { url = "https://files.pythonhosted.org/packages/9a/b9/1f5bd82b87e5550cd843ceb3768b4a8ef274eb63f29333cf2f29644b3d75/rignore-0.7.6-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:8e41be9fa8f2f47239ded8920cc283699a052ac4c371f77f5ac017ebeed75732", size = 882632, upload-time = "2025-11-05T20:42:44.063Z" }, + { url = "https://files.pythonhosted.org/packages/e9/6b/07714a3efe4a8048864e8a5b7db311ba51b921e15268b17defaebf56d3db/rignore-0.7.6-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:6dc1e171e52cefa6c20e60c05394a71165663b48bca6c7666dee4f778f2a7d90", size = 820760, upload-time = "2025-11-05T20:42:27.885Z" }, + { url = "https://files.pythonhosted.org/packages/ac/0f/348c829ea2d8d596e856371b14b9092f8a5dfbb62674ec9b3f67e4939a9d/rignore-0.7.6-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ce2268837c3600f82ab8db58f5834009dc638ee17103582960da668963bebc5", size = 899044, upload-time = "2025-11-05T20:40:55.336Z" }, + { url = "https://files.pythonhosted.org/packages/f0/30/2e1841a19b4dd23878d73edd5d82e998a83d5ed9570a89675f140ca8b2ad/rignore-0.7.6-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:690a3e1b54bfe77e89c4bacb13f046e642f8baadafc61d68f5a726f324a76ab6", size = 874144, upload-time = "2025-11-05T20:41:10.195Z" }, + { url = "https://files.pythonhosted.org/packages/c2/bf/0ce9beb2e5f64c30e3580bef09f5829236889f01511a125f98b83169b993/rignore-0.7.6-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:09d12ac7a0b6210c07bcd145007117ebd8abe99c8eeb383e9e4673910c2754b2", size = 1168062, upload-time = "2025-11-05T20:41:26.511Z" }, + { url = "https://files.pythonhosted.org/packages/b9/8b/571c178414eb4014969865317da8a02ce4cf5241a41676ef91a59aab24de/rignore-0.7.6-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a2b2b74a8c60203b08452479b90e5ce3dbe96a916214bc9eb2e5af0b6a9beb0", size = 942542, upload-time = "2025-11-05T20:41:41.838Z" }, + { url = "https://files.pythonhosted.org/packages/19/62/7a3cf601d5a45137a7e2b89d10c05b5b86499190c4b7ca5c3c47d79ee519/rignore-0.7.6-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8fc5a531ef02131e44359419a366bfac57f773ea58f5278c2cdd915f7d10ea94", size = 958739, upload-time = "2025-11-05T20:42:12.463Z" }, + { url = "https://files.pythonhosted.org/packages/5f/1f/4261f6a0d7caf2058a5cde2f5045f565ab91aa7badc972b57d19ce58b14e/rignore-0.7.6-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b7a1f77d9c4cd7e76229e252614d963442686bfe12c787a49f4fe481df49e7a9", size = 984138, upload-time = "2025-11-05T20:41:56.775Z" }, + { url = "https://files.pythonhosted.org/packages/2b/bf/628dfe19c75e8ce1f45f7c248f5148b17dfa89a817f8e3552ab74c3ae812/rignore-0.7.6-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:ead81f728682ba72b5b1c3d5846b011d3e0174da978de87c61645f2ed36659a7", size = 1079299, upload-time = "2025-11-05T21:40:16.639Z" }, + { url = "https://files.pythonhosted.org/packages/af/a5/be29c50f5c0c25c637ed32db8758fdf5b901a99e08b608971cda8afb293b/rignore-0.7.6-cp314-cp314-musllinux_1_2_armv7l.whl", hash = "sha256:12ffd50f520c22ffdabed8cd8bfb567d9ac165b2b854d3e679f4bcaef11a9441", size = 1139618, upload-time = "2025-11-05T21:40:34.507Z" }, + { url = "https://files.pythonhosted.org/packages/2a/40/3c46cd7ce4fa05c20b525fd60f599165e820af66e66f2c371cd50644558f/rignore-0.7.6-cp314-cp314-musllinux_1_2_i686.whl", hash = "sha256:e5a16890fbe3c894f8ca34b0fcacc2c200398d4d46ae654e03bc9b3dbf2a0a72", size = 1117626, upload-time = "2025-11-05T21:40:51.494Z" }, + { url = "https://files.pythonhosted.org/packages/8c/b9/aea926f263b8a29a23c75c2e0d8447965eb1879d3feb53cfcf84db67ed58/rignore-0.7.6-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:3abab3bf99e8a77488ef6c7c9a799fac22224c28fe9f25cc21aa7cc2b72bfc0b", size = 1128144, upload-time = "2025-11-05T21:41:09.169Z" }, + { url = "https://files.pythonhosted.org/packages/a4/f6/0d6242f8d0df7f2ecbe91679fefc1f75e7cd2072cb4f497abaab3f0f8523/rignore-0.7.6-cp314-cp314-win32.whl", hash = "sha256:eeef421c1782953c4375aa32f06ecae470c1285c6381eee2a30d2e02a5633001", size = 646385, upload-time = "2025-11-05T21:41:55.105Z" }, + { url = "https://files.pythonhosted.org/packages/d5/38/c0dcd7b10064f084343d6af26fe9414e46e9619c5f3224b5272e8e5d9956/rignore-0.7.6-cp314-cp314-win_amd64.whl", hash = "sha256:6aeed503b3b3d5af939b21d72a82521701a4bd3b89cd761da1e7dc78621af304", size = 725738, upload-time = "2025-11-05T21:41:39.736Z" }, + { url = "https://files.pythonhosted.org/packages/d9/7a/290f868296c1ece914d565757ab363b04730a728b544beb567ceb3b2d96f/rignore-0.7.6-cp314-cp314-win_arm64.whl", hash = "sha256:104f215b60b3c984c386c3e747d6ab4376d5656478694e22c7bd2f788ddd8304", size = 656008, upload-time = "2025-11-05T21:41:29.028Z" }, + { url = "https://files.pythonhosted.org/packages/ca/d2/3c74e3cd81fe8ea08a8dcd2d755c09ac2e8ad8fe409508904557b58383d3/rignore-0.7.6-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:bb24a5b947656dd94cb9e41c4bc8b23cec0c435b58be0d74a874f63c259549e8", size = 882835, upload-time = "2025-11-05T20:42:45.443Z" }, + { url = "https://files.pythonhosted.org/packages/77/61/a772a34b6b63154877433ac2d048364815b24c2dd308f76b212c408101a2/rignore-0.7.6-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:5b1e33c9501cefe24b70a1eafd9821acfd0ebf0b35c3a379430a14df089993e3", size = 820301, upload-time = "2025-11-05T20:42:29.226Z" }, + { url = "https://files.pythonhosted.org/packages/71/30/054880b09c0b1b61d17eeb15279d8bf729c0ba52b36c3ada52fb827cbb3c/rignore-0.7.6-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bec3994665a44454df86deb762061e05cd4b61e3772f5b07d1882a8a0d2748d5", size = 897611, upload-time = "2025-11-05T20:40:56.475Z" }, + { url = "https://files.pythonhosted.org/packages/1e/40/b2d1c169f833d69931bf232600eaa3c7998ba4f9a402e43a822dad2ea9f2/rignore-0.7.6-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:26cba2edfe3cff1dfa72bddf65d316ddebf182f011f2f61538705d6dbaf54986", size = 873875, upload-time = "2025-11-05T20:41:11.561Z" }, + { url = "https://files.pythonhosted.org/packages/55/59/ca5ae93d83a1a60e44b21d87deb48b177a8db1b85e82fc8a9abb24a8986d/rignore-0.7.6-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ffa86694fec604c613696cb91e43892aa22e1fec5f9870e48f111c603e5ec4e9", size = 1167245, upload-time = "2025-11-05T20:41:28.29Z" }, + { url = "https://files.pythonhosted.org/packages/a5/52/cf3dce392ba2af806cba265aad6bcd9c48bb2a6cb5eee448d3319f6e505b/rignore-0.7.6-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:48efe2ed95aa8104145004afb15cdfa02bea5cdde8b0344afeb0434f0d989aa2", size = 941750, upload-time = "2025-11-05T20:41:43.111Z" }, + { url = "https://files.pythonhosted.org/packages/ec/be/3f344c6218d779395e785091d05396dfd8b625f6aafbe502746fcd880af2/rignore-0.7.6-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8dcae43eb44b7f2457fef7cc87f103f9a0013017a6f4e62182c565e924948f21", size = 958896, upload-time = "2025-11-05T20:42:13.784Z" }, + { url = "https://files.pythonhosted.org/packages/c9/34/d3fa71938aed7d00dcad87f0f9bcb02ad66c85d6ffc83ba31078ce53646a/rignore-0.7.6-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2cd649a7091c0dad2f11ef65630d30c698d505cbe8660dd395268e7c099cc99f", size = 983992, upload-time = "2025-11-05T20:41:58.022Z" }, + { url = "https://files.pythonhosted.org/packages/24/a4/52a697158e9920705bdbd0748d59fa63e0f3233fb92e9df9a71afbead6ca/rignore-0.7.6-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:42de84b0289d478d30ceb7ae59023f7b0527786a9a5b490830e080f0e4ea5aeb", size = 1078181, upload-time = "2025-11-05T21:40:18.151Z" }, + { url = "https://files.pythonhosted.org/packages/ac/65/aa76dbcdabf3787a6f0fd61b5cc8ed1e88580590556d6c0207960d2384bb/rignore-0.7.6-cp314-cp314t-musllinux_1_2_armv7l.whl", hash = "sha256:875a617e57b53b4acbc5a91de418233849711c02e29cc1f4f9febb2f928af013", size = 1139232, upload-time = "2025-11-05T21:40:35.966Z" }, + { url = "https://files.pythonhosted.org/packages/08/44/31b31a49b3233c6842acc1c0731aa1e7fb322a7170612acf30327f700b44/rignore-0.7.6-cp314-cp314t-musllinux_1_2_i686.whl", hash = "sha256:8703998902771e96e49968105207719f22926e4431b108450f3f430b4e268b7c", size = 1117349, upload-time = "2025-11-05T21:40:53.013Z" }, + { url = "https://files.pythonhosted.org/packages/e9/ae/1b199a2302c19c658cf74e5ee1427605234e8c91787cfba0015f2ace145b/rignore-0.7.6-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:602ef33f3e1b04c1e9a10a3c03f8bc3cef2d2383dcc250d309be42b49923cabc", size = 1127702, upload-time = "2025-11-05T21:41:10.881Z" }, + { url = "https://files.pythonhosted.org/packages/fc/d3/18210222b37e87e36357f7b300b7d98c6dd62b133771e71ae27acba83a4f/rignore-0.7.6-cp314-cp314t-win32.whl", hash = "sha256:c1d8f117f7da0a4a96a8daef3da75bc090e3792d30b8b12cfadc240c631353f9", size = 647033, upload-time = "2025-11-05T21:42:00.095Z" }, + { url = "https://files.pythonhosted.org/packages/3e/87/033eebfbee3ec7d92b3bb1717d8f68c88e6fc7de54537040f3b3a405726f/rignore-0.7.6-cp314-cp314t-win_amd64.whl", hash = "sha256:ca36e59408bec81de75d307c568c2d0d410fb880b1769be43611472c61e85c96", size = 725647, upload-time = "2025-11-05T21:41:44.449Z" }, + { url = "https://files.pythonhosted.org/packages/79/62/b88e5879512c55b8ee979c666ee6902adc4ed05007226de266410ae27965/rignore-0.7.6-cp314-cp314t-win_arm64.whl", hash = "sha256:b83adabeb3e8cf662cabe1931b83e165b88c526fa6af6b3aa90429686e474896", size = 656035, upload-time = "2025-11-05T21:41:31.13Z" }, + { url = "https://files.pythonhosted.org/packages/85/12/62d690b4644c330d7ac0f739b7f078190ab4308faa909a60842d0e4af5b2/rignore-0.7.6-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:c3d3a523af1cd4ed2c0cba8d277a32d329b0c96ef9901fb7ca45c8cfaccf31a5", size = 887462, upload-time = "2025-11-05T20:42:50.804Z" }, + { url = "https://files.pythonhosted.org/packages/05/bc/6528a0e97ed2bd7a7c329183367d1ffbc5b9762ae8348d88dae72cc9d1f5/rignore-0.7.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:990853566e65184a506e1e2af2d15045afad3ebaebb8859cb85b882081915110", size = 826918, upload-time = "2025-11-05T20:42:33.689Z" }, + { url = "https://files.pythonhosted.org/packages/3e/2c/7d7bad116e09a04e9e1688c6f891fa2d4fd33f11b69ac0bd92419ddebeae/rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1cab9ff2e436ce7240d7ee301c8ef806ed77c1fd6b8a8239ff65f9bbbcb5b8a3", size = 900922, upload-time = "2025-11-05T20:41:00.361Z" }, + { url = "https://files.pythonhosted.org/packages/09/ba/e5ea89fbde8e37a90ce456e31c5e9d85512cef5ae38e0f4d2426eb776a19/rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:d1a6671b2082c13bfd9a5cf4ce64670f832a6d41470556112c4ab0b6519b2fc4", size = 876987, upload-time = "2025-11-05T20:41:16.219Z" }, + { url = "https://files.pythonhosted.org/packages/d0/fb/93d14193f0ec0c3d35b763f0a000e9780f63b2031f3d3756442c2152622d/rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2468729b4c5295c199d084ab88a40afcb7c8b974276805105239c07855bbacee", size = 1171110, upload-time = "2025-11-05T20:41:32.631Z" }, + { url = "https://files.pythonhosted.org/packages/9e/46/08436312ff96ffa29cfa4e1a987efc37e094531db46ba5e9fda9bb792afd/rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:775710777fd71e5fdf54df69cdc249996a1d6f447a2b5bfb86dbf033fddd9cf9", size = 943339, upload-time = "2025-11-05T20:41:47.128Z" }, + { url = "https://files.pythonhosted.org/packages/34/28/3b3c51328f505cfaf7e53f408f78a1e955d561135d02f9cb0341ea99f69a/rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4565407f4a77f72cf9d91469e75d15d375f755f0a01236bb8aaa176278cc7085", size = 961680, upload-time = "2025-11-05T20:42:18.061Z" }, + { url = "https://files.pythonhosted.org/packages/5c/9e/cbff75c8676d4f4a90bd58a1581249d255c7305141b0868f0abc0324836b/rignore-0.7.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:dc44c33f8fb2d5c9da748de7a6e6653a78aa740655e7409895e94a247ffa97c8", size = 987045, upload-time = "2025-11-05T20:42:02.315Z" }, + { url = "https://files.pythonhosted.org/packages/8c/25/d802d1d369502a7ddb8816059e7c79d2d913e17df975b863418e0aca4d8a/rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:8f32478f05540513c11923e8838afab9efef0131d66dca7f67f0e1bbd118af6a", size = 1080310, upload-time = "2025-11-05T21:40:23.184Z" }, + { url = "https://files.pythonhosted.org/packages/43/f0/250b785c2e473b1ab763eaf2be820934c2a5409a722e94b279dddac21c7d/rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl", hash = "sha256:1b63a3dd76225ea35b01dd6596aa90b275b5d0f71d6dc28fce6dd295d98614aa", size = 1140998, upload-time = "2025-11-05T21:40:40.603Z" }, + { url = "https://files.pythonhosted.org/packages/f5/d6/bb42fd2a8bba6aea327962656e20621fd495523259db40cfb4c5f760f05c/rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:fe6c41175c36554a4ef0994cd1b4dbd6d73156fca779066456b781707402048e", size = 1121178, upload-time = "2025-11-05T21:40:57.585Z" }, + { url = "https://files.pythonhosted.org/packages/97/f4/aeb548374129dce3dc191a4bb598c944d9ed663f467b9af830315d86059c/rignore-0.7.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:9a0c6792406ae36f4e7664dc772da909451d46432ff8485774526232d4885063", size = 1130190, upload-time = "2025-11-05T21:41:16.403Z" }, + { url = "https://files.pythonhosted.org/packages/82/78/a6250ff0c49a3cdb943910ada4116e708118e9b901c878cfae616c80a904/rignore-0.7.6-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a20b6fb61bcced9a83dfcca6599ad45182b06ba720cff7c8d891e5b78db5b65f", size = 886470, upload-time = "2025-11-05T20:42:52.314Z" }, + { url = "https://files.pythonhosted.org/packages/35/af/c69c0c51b8f9f7914d95c4ea91c29a2ac067572048cae95dd6d2efdbe05d/rignore-0.7.6-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:392dcabfecbe176c9ebbcb40d85a5e86a5989559c4f988c2741da7daf1b5be25", size = 825976, upload-time = "2025-11-05T20:42:35.118Z" }, + { url = "https://files.pythonhosted.org/packages/f1/d2/1b264f56132264ea609d3213ab603d6a27016b19559a1a1ede1a66a03dcd/rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:22baa462abdc36fdd5a5e2dae423107723351b85ff093762f9261148b9d0a04a", size = 899739, upload-time = "2025-11-05T20:41:01.518Z" }, + { url = "https://files.pythonhosted.org/packages/55/e4/b3c5dfdd8d8a10741dfe7199ef45d19a0e42d0c13aa377c83bd6caf65d90/rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:53fb28882d2538cb2d231972146c4927a9d9455e62b209f85d634408c4103538", size = 874843, upload-time = "2025-11-05T20:41:17.687Z" }, + { url = "https://files.pythonhosted.org/packages/cc/10/d6f3750233881a2a154cefc9a6a0a9b19da526b19f7f08221b552c6f827d/rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:87409f7eeb1103d6b77f3472a3a0d9a5953e3ae804a55080bdcb0120ee43995b", size = 1170348, upload-time = "2025-11-05T20:41:34.21Z" }, + { url = "https://files.pythonhosted.org/packages/6e/10/ad98ca05c9771c15af734cee18114a3c280914b6e34fde9ffea2e61e88aa/rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:684014e42e4341ab3ea23a203551857fcc03a7f8ae96ca3aefb824663f55db32", size = 942315, upload-time = "2025-11-05T20:41:48.508Z" }, + { url = "https://files.pythonhosted.org/packages/de/00/ab5c0f872acb60d534e687e629c17e0896c62da9b389c66d3aa16b817aa8/rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77356ebb01ba13f8a425c3d30fcad40e57719c0e37670d022d560884a30e4767", size = 961047, upload-time = "2025-11-05T20:42:19.403Z" }, + { url = "https://files.pythonhosted.org/packages/b8/86/3030fdc363a8f0d1cd155b4c453d6db9bab47a24fcc64d03f61d9d78fe6a/rignore-0.7.6-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6cbd8a48abbd3747a6c830393cd578782fab5d43f4deea48c5f5e344b8fed2b0", size = 986090, upload-time = "2025-11-05T20:42:03.581Z" }, + { url = "https://files.pythonhosted.org/packages/33/b8/133aa4002cee0ebbb39362f94e4898eec7fbd09cec9fcbce1cd65b355b7f/rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2673225dcec7f90497e79438c35e34638d0d0391ccea3cbb79bfb9adc0dc5bd7", size = 1079656, upload-time = "2025-11-05T21:40:24.89Z" }, + { url = "https://files.pythonhosted.org/packages/67/56/36d5d34210e5e7dfcd134eed8335b19e80ae940ee758f493e4f2b344dd70/rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl", hash = "sha256:c081f17290d8a2b96052b79207622aa635686ea39d502b976836384ede3d303c", size = 1139789, upload-time = "2025-11-05T21:40:42.119Z" }, + { url = "https://files.pythonhosted.org/packages/6b/5b/bb4f9420802bf73678033a4a55ab1bede36ce2e9b41fec5f966d83d932b3/rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:57e8327aacc27f921968cb2a174f9e47b084ce9a7dd0122c8132d22358f6bd79", size = 1120308, upload-time = "2025-11-05T21:40:59.402Z" }, + { url = "https://files.pythonhosted.org/packages/ce/8b/a1299085b28a2f6135e30370b126e3c5055b61908622f2488ade67641479/rignore-0.7.6-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:d8955b57e42f2a5434670d5aa7b75eaf6e74602ccd8955dddf7045379cd762fb", size = 1129444, upload-time = "2025-11-05T21:41:17.906Z" }, +] + [[package]] name = "rpds-py" version = "0.30.0" @@ -7692,10 +9566,10 @@ dependencies = [ { name = "fairscale" }, { name = "ftfy" }, { name = "iopath" }, - { name = "ipython", version = "8.37.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "ipython", version = "9.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "ipython", version = "8.37.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "ipython", version = "9.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "omegaconf" }, - { name = "opencv-python-headless" }, + { name = "opencv-python-headless", version = "4.5.5.64", source = { registry = "https://pypi.org/simple" } }, { name = "opendatasets" }, { name = "packaging" }, { name = "pandas" }, @@ -7709,10 +9583,10 @@ dependencies = [ { name = "spacy" }, { name = "streamlit" }, { name = "timm", version = "0.4.12", source = { registry = "https://pypi.org/simple" } }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "tqdm" }, { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" } }, { name = "webdataset" }, @@ -7729,13 +9603,13 @@ version = "0.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "hf-transfer", marker = "python_full_version < '3.14'" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "peft", version = "0.17.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, { name = "pillow", marker = "python_full_version < '3.14'" }, { name = "requests", marker = "python_full_version < '3.14'" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14'" }, @@ -7752,16 +9626,16 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "imageio" }, { name = "lazy-loader" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pillow" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "tifffile", version = "2025.5.10", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "tifffile", version = "2025.10.16", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "tifffile", version = "2025.5.10", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "tifffile", version = "2025.10.16", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c7/a8/3c0f256012b93dd2cb6fda9245e9f4bff7dc0486880b248005f15ea2255e/scikit_image-0.25.2.tar.gz", hash = "sha256:e5a37e6cd4d0c018a7a55b9d601357e3382826d3888c10d0213fc63bff977dde", size = 22693594, upload-time = "2025-02-18T18:05:24.538Z" } wheels = [ @@ -7794,10 +9668,10 @@ version = "1.7.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "joblib" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "threadpoolctl" }, ] sdist = { url = "https://files.pythonhosted.org/packages/98/c2/a7855e41c9d285dfe86dc50b250978105dce513d6e459ea66a6aeb0e1e0c/scikit_learn-1.7.2.tar.gz", hash = "sha256:20e9e49ecd130598f1ca38a1d85090e1a600147b9c02fa6f15d69cb53d968fda", size = 7193136, upload-time = "2025-09-09T08:21:29.075Z" } @@ -7839,33 +9713,35 @@ name = "scipy" version = "1.15.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0f/37/6964b830433e654ec7485e45a00fc9a27cf868d622838f6b6d9c5ec0d532/scipy-1.15.3.tar.gz", hash = "sha256:eae3cf522bc7df64b42cad3925c876e1b0b6c35c1337c93e12c0f366f55b0eaf", size = 59419214, upload-time = "2025-05-08T16:13:05.955Z" } wheels = [ @@ -7921,105 +9797,114 @@ name = "scipy" version = "1.16.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0a/ca/d8ace4f98322d01abcd52d381134344bf7b431eba7ed8b42bdea5a3c2ac9/scipy-1.16.3.tar.gz", hash = "sha256:01e87659402762f43bd2fee13370553a17ada367d42e7487800bf2916535aecb", size = 30597883, upload-time = "2025-10-28T17:38:54.068Z" } wheels = [ @@ -8090,33 +9975,35 @@ name = "scipy-stubs" version = "1.15.3.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "optype", version = "0.9.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "optype", version = "0.9.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0b/5f/35c43bd7d412add4adcd68475702571b2489b50c40b6564f808b2355e452/scipy_stubs-1.15.3.0.tar.gz", hash = "sha256:e8f76c9887461cf9424c1e2ad78ea5dac71dd4cbb383dc85f91adfe8f74d1e17", size = 275699, upload-time = "2025-05-08T16:58:35.139Z" } wheels = [ @@ -8128,105 +10015,113 @@ name = "scipy-stubs" version = "1.16.3.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "optype", version = "0.15.0", source = { registry = "https://pypi.org/simple" }, extra = ["numpy"], marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "optype", version = "0.15.0", source = { registry = "https://pypi.org/simple" }, extra = ["numpy"], marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/08/91/1700d2a1a9f64f19bb019a547e510b99a6af1fef49641a0bce86bc85fb8e/scipy_stubs-1.16.3.3.tar.gz", hash = "sha256:af47578875d5557567225a16ec1b9b38a48c4c4377d92396413ebd65406c44ee", size = 361468, upload-time = "2025-12-08T13:45:38.37Z" } wheels = [ @@ -8250,15 +10145,16 @@ dependencies = [ { name = "huggingface-hub" }, { name = "pillow" }, { name = "scikit-learn" }, - { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, { name = "tqdm" }, - { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "transformers", version = "4.44.2", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.51.0", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.56.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/21/47/7d61a19ba7e6b5f36f0ffff5bbf032a1c1913612caac611e12383069eda0/sentence_transformers-5.1.1.tar.gz", hash = "sha256:8af3f844b2ecf9a6c2dfeafc2c02938a87f61202b54329d70dfd7dfd7d17a84e", size = 374434, upload-time = "2025-09-22T11:28:27.54Z" } @@ -8343,6 +10239,90 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/bd/ac/d6286ea0d49e7b58847faf67b00e56bb4ba3d525281e2ac306e1f1f353da/sentry_sdk-2.47.0-py2.py3-none-any.whl", hash = "sha256:d72f8c61025b7d1d9e52510d03a6247b280094a327dd900d987717a4fce93412", size = 411088, upload-time = "2025-12-03T14:06:35.374Z" }, ] +[[package]] +name = "setproctitle" +version = "1.3.7" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/8d/48/49393a96a2eef1ab418b17475fb92b8fcfad83d099e678751b05472e69de/setproctitle-1.3.7.tar.gz", hash = "sha256:bc2bc917691c1537d5b9bca1468437176809c7e11e5694ca79a9ca12345dcb9e", size = 27002, upload-time = "2025-09-05T12:51:25.278Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/f2/48/fb401ec8c4953d519d05c87feca816ad668b8258448ff60579ac7a1c1386/setproctitle-1.3.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:cf555b6299f10a6eb44e4f96d2f5a3884c70ce25dc5c8796aaa2f7b40e72cb1b", size = 18079, upload-time = "2025-09-05T12:49:07.732Z" }, + { url = "https://files.pythonhosted.org/packages/cc/a3/c2b0333c2716fb3b4c9a973dd113366ac51b4f8d56b500f4f8f704b4817a/setproctitle-1.3.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:690b4776f9c15aaf1023bb07d7c5b797681a17af98a4a69e76a1d504e41108b7", size = 13099, upload-time = "2025-09-05T12:49:09.222Z" }, + { url = "https://files.pythonhosted.org/packages/0e/f8/17bda581c517678260e6541b600eeb67745f53596dc077174141ba2f6702/setproctitle-1.3.7-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:00afa6fc507967d8c9d592a887cdc6c1f5742ceac6a4354d111ca0214847732c", size = 31793, upload-time = "2025-09-05T12:49:10.297Z" }, + { url = "https://files.pythonhosted.org/packages/27/d1/76a33ae80d4e788ecab9eb9b53db03e81cfc95367ec7e3fbf4989962fedd/setproctitle-1.3.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:9e02667f6b9fc1238ba753c0f4b0a37ae184ce8f3bbbc38e115d99646b3f4cd3", size = 32779, upload-time = "2025-09-05T12:49:12.157Z" }, + { url = "https://files.pythonhosted.org/packages/59/27/1a07c38121967061564f5e0884414a5ab11a783260450172d4fc68c15621/setproctitle-1.3.7-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:83fcd271567d133eb9532d3b067c8a75be175b2b3b271e2812921a05303a693f", size = 34578, upload-time = "2025-09-05T12:49:13.393Z" }, + { url = "https://files.pythonhosted.org/packages/d8/d4/725e6353935962d8bb12cbf7e7abba1d0d738c7f6935f90239d8e1ccf913/setproctitle-1.3.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:13fe37951dda1a45c35d77d06e3da5d90e4f875c4918a7312b3b4556cfa7ff64", size = 32030, upload-time = "2025-09-05T12:49:15.362Z" }, + { url = "https://files.pythonhosted.org/packages/67/24/e4677ae8e1cb0d549ab558b12db10c175a889be0974c589c428fece5433e/setproctitle-1.3.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:a05509cfb2059e5d2ddff701d38e474169e9ce2a298cf1b6fd5f3a213a553fe5", size = 33363, upload-time = "2025-09-05T12:49:16.829Z" }, + { url = "https://files.pythonhosted.org/packages/55/d4/69ce66e4373a48fdbb37489f3ded476bb393e27f514968c3a69a67343ae0/setproctitle-1.3.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6da835e76ae18574859224a75db6e15c4c2aaa66d300a57efeaa4c97ca4c7381", size = 31508, upload-time = "2025-09-05T12:49:18.032Z" }, + { url = "https://files.pythonhosted.org/packages/4b/5a/42c1ed0e9665d068146a68326529b5686a1881c8b9197c2664db4baf6aeb/setproctitle-1.3.7-cp310-cp310-win32.whl", hash = "sha256:9e803d1b1e20240a93bac0bc1025363f7f80cb7eab67dfe21efc0686cc59ad7c", size = 12558, upload-time = "2025-09-05T12:49:19.742Z" }, + { url = "https://files.pythonhosted.org/packages/dc/fe/dd206cc19a25561921456f6cb12b405635319299b6f366e0bebe872abc18/setproctitle-1.3.7-cp310-cp310-win_amd64.whl", hash = "sha256:a97200acc6b64ec4cada52c2ecaf1fba1ef9429ce9c542f8a7db5bcaa9dcbd95", size = 13245, upload-time = "2025-09-05T12:49:21.023Z" }, + { url = "https://files.pythonhosted.org/packages/04/cd/1b7ba5cad635510720ce19d7122154df96a2387d2a74217be552887c93e5/setproctitle-1.3.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a600eeb4145fb0ee6c287cb82a2884bd4ec5bbb076921e287039dcc7b7cc6dd0", size = 18085, upload-time = "2025-09-05T12:49:22.183Z" }, + { url = "https://files.pythonhosted.org/packages/8f/1a/b2da0a620490aae355f9d72072ac13e901a9fec809a6a24fc6493a8f3c35/setproctitle-1.3.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:97a090fed480471bb175689859532709e28c085087e344bca45cf318034f70c4", size = 13097, upload-time = "2025-09-05T12:49:23.322Z" }, + { url = "https://files.pythonhosted.org/packages/18/2e/bd03ff02432a181c1787f6fc2a678f53b7dacdd5ded69c318fe1619556e8/setproctitle-1.3.7-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1607b963e7b53e24ec8a2cb4e0ab3ae591d7c6bf0a160feef0551da63452b37f", size = 32191, upload-time = "2025-09-05T12:49:24.567Z" }, + { url = "https://files.pythonhosted.org/packages/28/78/1e62fc0937a8549f2220445ed2175daacee9b6764c7963b16148119b016d/setproctitle-1.3.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a20fb1a3974e2dab857870cf874b325b8705605cb7e7e8bcbb915bca896f52a9", size = 33203, upload-time = "2025-09-05T12:49:25.871Z" }, + { url = "https://files.pythonhosted.org/packages/a0/3c/65edc65db3fa3df400cf13b05e9d41a3c77517b4839ce873aa6b4043184f/setproctitle-1.3.7-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:f8d961bba676e07d77665204f36cffaa260f526e7b32d07ab3df6a2c1dfb44ba", size = 34963, upload-time = "2025-09-05T12:49:27.044Z" }, + { url = "https://files.pythonhosted.org/packages/a1/32/89157e3de997973e306e44152522385f428e16f92f3cf113461489e1e2ee/setproctitle-1.3.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:db0fd964fbd3a9f8999b502f65bd2e20883fdb5b1fae3a424e66db9a793ed307", size = 32398, upload-time = "2025-09-05T12:49:28.909Z" }, + { url = "https://files.pythonhosted.org/packages/4a/18/77a765a339ddf046844cb4513353d8e9dcd8183da9cdba6e078713e6b0b2/setproctitle-1.3.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:db116850fcf7cca19492030f8d3b4b6e231278e8fe097a043957d22ce1bdf3ee", size = 33657, upload-time = "2025-09-05T12:49:30.323Z" }, + { url = "https://files.pythonhosted.org/packages/6b/63/f0b6205c64d74d2a24a58644a38ec77bdbaa6afc13747e75973bf8904932/setproctitle-1.3.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:316664d8b24a5c91ee244460bdaf7a74a707adaa9e14fbe0dc0a53168bb9aba1", size = 31836, upload-time = "2025-09-05T12:49:32.309Z" }, + { url = "https://files.pythonhosted.org/packages/ba/51/e1277f9ba302f1a250bbd3eedbbee747a244b3cc682eb58fb9733968f6d8/setproctitle-1.3.7-cp311-cp311-win32.whl", hash = "sha256:b74774ca471c86c09b9d5037c8451fff06bb82cd320d26ae5a01c758088c0d5d", size = 12556, upload-time = "2025-09-05T12:49:33.529Z" }, + { url = "https://files.pythonhosted.org/packages/b6/7b/822a23f17e9003dfdee92cd72758441ca2a3680388da813a371b716fb07f/setproctitle-1.3.7-cp311-cp311-win_amd64.whl", hash = "sha256:acb9097213a8dd3410ed9f0dc147840e45ca9797785272928d4be3f0e69e3be4", size = 13243, upload-time = "2025-09-05T12:49:34.553Z" }, + { url = "https://files.pythonhosted.org/packages/fb/f0/2dc88e842077719d7384d86cc47403e5102810492b33680e7dadcee64cd8/setproctitle-1.3.7-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:2dc99aec591ab6126e636b11035a70991bc1ab7a261da428491a40b84376654e", size = 18049, upload-time = "2025-09-05T12:49:36.241Z" }, + { url = "https://files.pythonhosted.org/packages/f0/b4/50940504466689cda65680c9e9a1e518e5750c10490639fa687489ac7013/setproctitle-1.3.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:cdd8aa571b7aa39840fdbea620e308a19691ff595c3a10231e9ee830339dd798", size = 13079, upload-time = "2025-09-05T12:49:38.088Z" }, + { url = "https://files.pythonhosted.org/packages/d0/99/71630546b9395b095f4082be41165d1078204d1696c2d9baade3de3202d0/setproctitle-1.3.7-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:2906b6c7959cdb75f46159bf0acd8cc9906cf1361c9e1ded0d065fe8f9039629", size = 32932, upload-time = "2025-09-05T12:49:39.271Z" }, + { url = "https://files.pythonhosted.org/packages/50/22/cee06af4ffcfb0e8aba047bd44f5262e644199ae7527ae2c1f672b86495c/setproctitle-1.3.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6915964a6dda07920a1159321dcd6d94fc7fc526f815ca08a8063aeca3c204f1", size = 33736, upload-time = "2025-09-05T12:49:40.565Z" }, + { url = "https://files.pythonhosted.org/packages/5c/00/a5949a8bb06ef5e7df214fc393bb2fb6aedf0479b17214e57750dfdd0f24/setproctitle-1.3.7-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:cff72899861c765bd4021d1ff1c68d60edc129711a2fdba77f9cb69ef726a8b6", size = 35605, upload-time = "2025-09-05T12:49:42.362Z" }, + { url = "https://files.pythonhosted.org/packages/b0/3a/50caca532a9343828e3bf5778c7a84d6c737a249b1796d50dd680290594d/setproctitle-1.3.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:b7cb05bd446687ff816a3aaaf831047fc4c364feff7ada94a66024f1367b448c", size = 33143, upload-time = "2025-09-05T12:49:43.515Z" }, + { url = "https://files.pythonhosted.org/packages/ca/14/b843a251296ce55e2e17c017d6b9f11ce0d3d070e9265de4ecad948b913d/setproctitle-1.3.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:3a57b9a00de8cae7e2a1f7b9f0c2ac7b69372159e16a7708aa2f38f9e5cc987a", size = 34434, upload-time = "2025-09-05T12:49:45.31Z" }, + { url = "https://files.pythonhosted.org/packages/c8/b7/06145c238c0a6d2c4bc881f8be230bb9f36d2bf51aff7bddcb796d5eed67/setproctitle-1.3.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:d8828b356114f6b308b04afe398ed93803d7fca4a955dd3abe84430e28d33739", size = 32795, upload-time = "2025-09-05T12:49:46.419Z" }, + { url = "https://files.pythonhosted.org/packages/ef/dc/ef76a81fac9bf27b84ed23df19c1f67391a753eed6e3c2254ebcb5133f56/setproctitle-1.3.7-cp312-cp312-win32.whl", hash = "sha256:b0304f905efc845829ac2bc791ddebb976db2885f6171f4a3de678d7ee3f7c9f", size = 12552, upload-time = "2025-09-05T12:49:47.635Z" }, + { url = "https://files.pythonhosted.org/packages/e2/5b/a9fe517912cd6e28cf43a212b80cb679ff179a91b623138a99796d7d18a0/setproctitle-1.3.7-cp312-cp312-win_amd64.whl", hash = "sha256:9888ceb4faea3116cf02a920ff00bfbc8cc899743e4b4ac914b03625bdc3c300", size = 13247, upload-time = "2025-09-05T12:49:49.16Z" }, + { url = "https://files.pythonhosted.org/packages/5d/2f/fcedcade3b307a391b6e17c774c6261a7166aed641aee00ed2aad96c63ce/setproctitle-1.3.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:c3736b2a423146b5e62230502e47e08e68282ff3b69bcfe08a322bee73407922", size = 18047, upload-time = "2025-09-05T12:49:50.271Z" }, + { url = "https://files.pythonhosted.org/packages/23/ae/afc141ca9631350d0a80b8f287aac79a76f26b6af28fd8bf92dae70dc2c5/setproctitle-1.3.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3384e682b158d569e85a51cfbde2afd1ab57ecf93ea6651fe198d0ba451196ee", size = 13073, upload-time = "2025-09-05T12:49:51.46Z" }, + { url = "https://files.pythonhosted.org/packages/87/ed/0a4f00315bc02510395b95eec3d4aa77c07192ee79f0baae77ea7b9603d8/setproctitle-1.3.7-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:0564a936ea687cd24dffcea35903e2a20962aa6ac20e61dd3a207652401492dd", size = 33284, upload-time = "2025-09-05T12:49:52.741Z" }, + { url = "https://files.pythonhosted.org/packages/fc/e4/adf3c4c0a2173cb7920dc9df710bcc67e9bcdbf377e243b7a962dc31a51a/setproctitle-1.3.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:a5d1cb3f81531f0eb40e13246b679a1bdb58762b170303463cb06ecc296f26d0", size = 34104, upload-time = "2025-09-05T12:49:54.416Z" }, + { url = "https://files.pythonhosted.org/packages/52/4f/6daf66394152756664257180439d37047aa9a1cfaa5e4f5ed35e93d1dc06/setproctitle-1.3.7-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:a7d159e7345f343b44330cbba9194169b8590cb13dae940da47aa36a72aa9929", size = 35982, upload-time = "2025-09-05T12:49:56.295Z" }, + { url = "https://files.pythonhosted.org/packages/1b/62/f2c0595403cf915db031f346b0e3b2c0096050e90e0be658a64f44f4278a/setproctitle-1.3.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0b5074649797fd07c72ca1f6bff0406f4a42e1194faac03ecaab765ce605866f", size = 33150, upload-time = "2025-09-05T12:49:58.025Z" }, + { url = "https://files.pythonhosted.org/packages/a0/29/10dd41cde849fb2f9b626c846b7ea30c99c81a18a5037a45cc4ba33c19a7/setproctitle-1.3.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:61e96febced3f61b766115381d97a21a6265a0f29188a791f6df7ed777aef698", size = 34463, upload-time = "2025-09-05T12:49:59.424Z" }, + { url = "https://files.pythonhosted.org/packages/71/3c/cedd8eccfaf15fb73a2c20525b68c9477518917c9437737fa0fda91e378f/setproctitle-1.3.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:047138279f9463f06b858e579cc79580fbf7a04554d24e6bddf8fe5dddbe3d4c", size = 32848, upload-time = "2025-09-05T12:50:01.107Z" }, + { url = "https://files.pythonhosted.org/packages/d1/3e/0a0e27d1c9926fecccfd1f91796c244416c70bf6bca448d988638faea81d/setproctitle-1.3.7-cp313-cp313-win32.whl", hash = "sha256:7f47accafac7fe6535ba8ba9efd59df9d84a6214565108d0ebb1199119c9cbbd", size = 12544, upload-time = "2025-09-05T12:50:15.81Z" }, + { url = "https://files.pythonhosted.org/packages/36/1b/6bf4cb7acbbd5c846ede1c3f4d6b4ee52744d402e43546826da065ff2ab7/setproctitle-1.3.7-cp313-cp313-win_amd64.whl", hash = "sha256:fe5ca35aeec6dc50cabab9bf2d12fbc9067eede7ff4fe92b8f5b99d92e21263f", size = 13235, upload-time = "2025-09-05T12:50:16.89Z" }, + { url = "https://files.pythonhosted.org/packages/e6/a4/d588d3497d4714750e3eaf269e9e8985449203d82b16b933c39bd3fc52a1/setproctitle-1.3.7-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:10e92915c4b3086b1586933a36faf4f92f903c5554f3c34102d18c7d3f5378e9", size = 18058, upload-time = "2025-09-05T12:50:02.501Z" }, + { url = "https://files.pythonhosted.org/packages/05/77/7637f7682322a7244e07c373881c7e982567e2cb1dd2f31bd31481e45500/setproctitle-1.3.7-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:de879e9c2eab637f34b1a14c4da1e030c12658cdc69ee1b3e5be81b380163ce5", size = 13072, upload-time = "2025-09-05T12:50:03.601Z" }, + { url = "https://files.pythonhosted.org/packages/52/09/f366eca0973cfbac1470068d1313fa3fe3de4a594683385204ec7f1c4101/setproctitle-1.3.7-cp313-cp313t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:c18246d88e227a5b16248687514f95642505000442165f4b7db354d39d0e4c29", size = 34490, upload-time = "2025-09-05T12:50:04.948Z" }, + { url = "https://files.pythonhosted.org/packages/71/36/611fc2ed149fdea17c3677e1d0df30d8186eef9562acc248682b91312706/setproctitle-1.3.7-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7081f193dab22df2c36f9fc6d113f3793f83c27891af8fe30c64d89d9a37e152", size = 35267, upload-time = "2025-09-05T12:50:06.015Z" }, + { url = "https://files.pythonhosted.org/packages/88/a4/64e77d0671446bd5a5554387b69e1efd915274686844bea733714c828813/setproctitle-1.3.7-cp313-cp313t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:9cc9b901ce129350637426a89cfd650066a4adc6899e47822e2478a74023ff7c", size = 37376, upload-time = "2025-09-05T12:50:07.484Z" }, + { url = "https://files.pythonhosted.org/packages/89/bc/ad9c664fe524fb4a4b2d3663661a5c63453ce851736171e454fa2cdec35c/setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:80e177eff2d1ec172188d0d7fd9694f8e43d3aab76a6f5f929bee7bf7894e98b", size = 33963, upload-time = "2025-09-05T12:50:09.056Z" }, + { url = "https://files.pythonhosted.org/packages/ab/01/a36de7caf2d90c4c28678da1466b47495cbbad43badb4e982d8db8167ed4/setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_ppc64le.whl", hash = "sha256:23e520776c445478a67ee71b2a3c1ffdafbe1f9f677239e03d7e2cc635954e18", size = 35550, upload-time = "2025-09-05T12:50:10.791Z" }, + { url = "https://files.pythonhosted.org/packages/dd/68/17e8aea0ed5ebc17fbf03ed2562bfab277c280e3625850c38d92a7b5fcd9/setproctitle-1.3.7-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:5fa1953126a3b9bd47049d58c51b9dac72e78ed120459bd3aceb1bacee72357c", size = 33727, upload-time = "2025-09-05T12:50:12.032Z" }, + { url = "https://files.pythonhosted.org/packages/b2/33/90a3bf43fe3a2242b4618aa799c672270250b5780667898f30663fd94993/setproctitle-1.3.7-cp313-cp313t-win32.whl", hash = "sha256:4a5e212bf438a4dbeece763f4962ad472c6008ff6702e230b4f16a037e2f6f29", size = 12549, upload-time = "2025-09-05T12:50:13.074Z" }, + { url = "https://files.pythonhosted.org/packages/0b/0e/50d1f07f3032e1f23d814ad6462bc0a138f369967c72494286b8a5228e40/setproctitle-1.3.7-cp313-cp313t-win_amd64.whl", hash = "sha256:cf2727b733e90b4f874bac53e3092aa0413fe1ea6d4f153f01207e6ce65034d9", size = 13243, upload-time = "2025-09-05T12:50:14.146Z" }, + { url = "https://files.pythonhosted.org/packages/89/c7/43ac3a98414f91d1b86a276bc2f799ad0b4b010e08497a95750d5bc42803/setproctitle-1.3.7-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:80c36c6a87ff72eabf621d0c79b66f3bdd0ecc79e873c1e9f0651ee8bf215c63", size = 18052, upload-time = "2025-09-05T12:50:17.928Z" }, + { url = "https://files.pythonhosted.org/packages/cd/2c/dc258600a25e1a1f04948073826bebc55e18dbd99dc65a576277a82146fa/setproctitle-1.3.7-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:b53602371a52b91c80aaf578b5ada29d311d12b8a69c0c17fbc35b76a1fd4f2e", size = 13071, upload-time = "2025-09-05T12:50:19.061Z" }, + { url = "https://files.pythonhosted.org/packages/ab/26/8e3bb082992f19823d831f3d62a89409deb6092e72fc6940962983ffc94f/setproctitle-1.3.7-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:fcb966a6c57cf07cc9448321a08f3be6b11b7635be502669bc1d8745115d7e7f", size = 33180, upload-time = "2025-09-05T12:50:20.395Z" }, + { url = "https://files.pythonhosted.org/packages/f1/af/ae692a20276d1159dd0cf77b0bcf92cbb954b965655eb4a69672099bb214/setproctitle-1.3.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:46178672599b940368d769474fe13ecef1b587d58bb438ea72b9987f74c56ea5", size = 34043, upload-time = "2025-09-05T12:50:22.454Z" }, + { url = "https://files.pythonhosted.org/packages/34/b2/6a092076324dd4dac1a6d38482bedebbff5cf34ef29f58585ec76e47bc9d/setproctitle-1.3.7-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:7f9e9e3ff135cbcc3edd2f4cf29b139f4aca040d931573102742db70ff428c17", size = 35892, upload-time = "2025-09-05T12:50:23.937Z" }, + { url = "https://files.pythonhosted.org/packages/1c/1a/8836b9f28cee32859ac36c3df85aa03e1ff4598d23ea17ca2e96b5845a8f/setproctitle-1.3.7-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:14c7eba8d90c93b0e79c01f0bd92a37b61983c27d6d7d5a3b5defd599113d60e", size = 32898, upload-time = "2025-09-05T12:50:25.617Z" }, + { url = "https://files.pythonhosted.org/packages/ef/22/8fabdc24baf42defb599714799d8445fe3ae987ec425a26ec8e80ea38f8e/setproctitle-1.3.7-cp314-cp314-musllinux_1_2_ppc64le.whl", hash = "sha256:9e64e98077fb30b6cf98073d6c439cd91deb8ebbf8fc62d9dbf52bd38b0c6ac0", size = 34308, upload-time = "2025-09-05T12:50:26.827Z" }, + { url = "https://files.pythonhosted.org/packages/15/1b/b9bee9de6c8cdcb3b3a6cb0b3e773afdb86bbbc1665a3bfa424a4294fda2/setproctitle-1.3.7-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:b91387cc0f02a00ac95dcd93f066242d3cca10ff9e6153de7ee07069c6f0f7c8", size = 32536, upload-time = "2025-09-05T12:50:28.5Z" }, + { url = "https://files.pythonhosted.org/packages/37/0c/75e5f2685a5e3eda0b39a8b158d6d8895d6daf3ba86dec9e3ba021510272/setproctitle-1.3.7-cp314-cp314-win32.whl", hash = "sha256:52b054a61c99d1b72fba58b7f5486e04b20fefc6961cd76722b424c187f362ed", size = 12731, upload-time = "2025-09-05T12:50:43.955Z" }, + { url = "https://files.pythonhosted.org/packages/d2/ae/acddbce90d1361e1786e1fb421bc25baeb0c22ef244ee5d0176511769ec8/setproctitle-1.3.7-cp314-cp314-win_amd64.whl", hash = "sha256:5818e4080ac04da1851b3ec71e8a0f64e3748bf9849045180566d8b736702416", size = 13464, upload-time = "2025-09-05T12:50:45.057Z" }, + { url = "https://files.pythonhosted.org/packages/01/6d/20886c8ff2e6d85e3cabadab6aab9bb90acaf1a5cfcb04d633f8d61b2626/setproctitle-1.3.7-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:6fc87caf9e323ac426910306c3e5d3205cd9f8dcac06d233fcafe9337f0928a3", size = 18062, upload-time = "2025-09-05T12:50:29.78Z" }, + { url = "https://files.pythonhosted.org/packages/9a/60/26dfc5f198715f1343b95c2f7a1c16ae9ffa45bd89ffd45a60ed258d24ea/setproctitle-1.3.7-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:6134c63853d87a4897ba7d5cc0e16abfa687f6c66fc09f262bb70d67718f2309", size = 13075, upload-time = "2025-09-05T12:50:31.604Z" }, + { url = "https://files.pythonhosted.org/packages/21/9c/980b01f50d51345dd513047e3ba9e96468134b9181319093e61db1c47188/setproctitle-1.3.7-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:1403d2abfd32790b6369916e2313dffbe87d6b11dca5bbd898981bcde48e7a2b", size = 34744, upload-time = "2025-09-05T12:50:32.777Z" }, + { url = "https://files.pythonhosted.org/packages/86/b4/82cd0c86e6d1c4538e1a7eb908c7517721513b801dff4ba3f98ef816a240/setproctitle-1.3.7-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e7c5bfe4228ea22373e3025965d1a4116097e555ee3436044f5c954a5e63ac45", size = 35589, upload-time = "2025-09-05T12:50:34.13Z" }, + { url = "https://files.pythonhosted.org/packages/8a/4f/9f6b2a7417fd45673037554021c888b31247f7594ff4bd2239918c5cd6d0/setproctitle-1.3.7-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl", hash = "sha256:585edf25e54e21a94ccb0fe81ad32b9196b69ebc4fc25f81da81fb8a50cca9e4", size = 37698, upload-time = "2025-09-05T12:50:35.524Z" }, + { url = "https://files.pythonhosted.org/packages/20/92/927b7d4744aac214d149c892cb5fa6dc6f49cfa040cb2b0a844acd63dcaf/setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:96c38cdeef9036eb2724c2210e8d0b93224e709af68c435d46a4733a3675fee1", size = 34201, upload-time = "2025-09-05T12:50:36.697Z" }, + { url = "https://files.pythonhosted.org/packages/0a/0c/fd4901db5ba4b9d9013e62f61d9c18d52290497f956745cd3e91b0d80f90/setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_ppc64le.whl", hash = "sha256:45e3ef48350abb49cf937d0a8ba15e42cee1e5ae13ca41a77c66d1abc27a5070", size = 35801, upload-time = "2025-09-05T12:50:38.314Z" }, + { url = "https://files.pythonhosted.org/packages/e7/e3/54b496ac724e60e61cc3447f02690105901ca6d90da0377dffe49ff99fc7/setproctitle-1.3.7-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:1fae595d032b30dab4d659bece20debd202229fce12b55abab978b7f30783d73", size = 33958, upload-time = "2025-09-05T12:50:39.841Z" }, + { url = "https://files.pythonhosted.org/packages/ea/a8/c84bb045ebf8c6fdc7f7532319e86f8380d14bbd3084e6348df56bdfe6fd/setproctitle-1.3.7-cp314-cp314t-win32.whl", hash = "sha256:02432f26f5d1329ab22279ff863c83589894977063f59e6c4b4845804a08f8c2", size = 12745, upload-time = "2025-09-05T12:50:41.377Z" }, + { url = "https://files.pythonhosted.org/packages/08/b6/3a5a4f9952972791a9114ac01dfc123f0df79903577a3e0a7a404a695586/setproctitle-1.3.7-cp314-cp314t-win_amd64.whl", hash = "sha256:cbc388e3d86da1f766d8fc2e12682e446064c01cea9f88a88647cfe7c011de6a", size = 13469, upload-time = "2025-09-05T12:50:42.67Z" }, + { url = "https://files.pythonhosted.org/packages/34/8a/aff5506ce89bc3168cb492b18ba45573158d528184e8a9759a05a09088a9/setproctitle-1.3.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:eb440c5644a448e6203935ed60466ec8d0df7278cd22dc6cf782d07911bcbea6", size = 12654, upload-time = "2025-09-05T12:51:17.141Z" }, + { url = "https://files.pythonhosted.org/packages/41/89/5b6f2faedd6ced3d3c085a5efbd91380fb1f61f4c12bc42acad37932f4e9/setproctitle-1.3.7-pp310-pypy310_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:502b902a0e4c69031b87870ff4986c290ebbb12d6038a70639f09c331b18efb2", size = 14284, upload-time = "2025-09-05T12:51:18.393Z" }, + { url = "https://files.pythonhosted.org/packages/0a/c0/4312fed3ca393a29589603fd48f17937b4ed0638b923bac75a728382e730/setproctitle-1.3.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f6f268caeabb37ccd824d749e7ce0ec6337c4ed954adba33ec0d90cc46b0ab78", size = 13282, upload-time = "2025-09-05T12:51:19.703Z" }, + { url = "https://files.pythonhosted.org/packages/c3/5b/5e1c117ac84e3cefcf8d7a7f6b2461795a87e20869da065a5c087149060b/setproctitle-1.3.7-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:b1cac6a4b0252b8811d60b6d8d0f157c0fdfed379ac89c25a914e6346cf355a1", size = 12587, upload-time = "2025-09-05T12:51:21.195Z" }, + { url = "https://files.pythonhosted.org/packages/73/02/b9eadc226195dcfa90eed37afe56b5dd6fa2f0e5220ab8b7867b8862b926/setproctitle-1.3.7-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f1704c9e041f2b1dc38f5be4552e141e1432fba3dd52c72eeffd5bc2db04dc65", size = 14286, upload-time = "2025-09-05T12:51:22.61Z" }, + { url = "https://files.pythonhosted.org/packages/28/26/1be1d2a53c2a91ec48fa2ff4a409b395f836798adf194d99de9c059419ea/setproctitle-1.3.7-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:b08b61976ffa548bd5349ce54404bf6b2d51bd74d4f1b241ed1b0f25bce09c3a", size = 13282, upload-time = "2025-09-05T12:51:24.094Z" }, +] + [[package]] name = "setuptools" version = "80.9.0" @@ -8357,8 +10337,8 @@ name = "shapely" version = "2.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4d/bc/0989043118a27cccb4e906a46b7565ce36ca7b57f5a18b78f4f1b0f72d9d/shapely-2.1.2.tar.gz", hash = "sha256:2ed4ecb28320a433db18a5bf029986aa8afcfd740745e78847e330d5d94922a9", size = 315489, upload-time = "2025-09-24T13:51:41.432Z" } wheels = [ @@ -8486,8 +10466,8 @@ dependencies = [ { name = "cymem" }, { name = "jinja2" }, { name = "murmurhash" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "preshed" }, { name = "pydantic" }, @@ -8622,6 +10602,19 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/95/81/6ea10ef6228ce4438a240c803639f7ccf5eae3469fbc015f33bd84aa8df1/srsly-2.5.2-cp314-cp314t-win_amd64.whl", hash = "sha256:8e2b9058623c44b07441eb0d711dfdf6302f917f0634d0a294cae37578dcf899", size = 676105, upload-time = "2025-11-17T14:10:43.633Z" }, ] +[[package]] +name = "sse-starlette" +version = "3.1.2" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, + { name = "starlette" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/da/34/f5df66cb383efdbf4f2db23cabb27f51b1dcb737efaf8a558f6f1d195134/sse_starlette-3.1.2.tar.gz", hash = "sha256:55eff034207a83a0eb86de9a68099bd0157838f0b8b999a1b742005c71e33618", size = 26303, upload-time = "2025-12-31T08:02:20.023Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b7/95/8c4b76eec9ae574474e5d2997557cebf764bcd3586458956c30631ae08f4/sse_starlette-3.1.2-py3-none-any.whl", hash = "sha256:cd800dd349f4521b317b9391d3796fa97b71748a4da9b9e00aafab32dda375c8", size = 12484, upload-time = "2025-12-31T08:02:18.894Z" }, +] + [[package]] name = "stack-data" version = "0.6.3" @@ -8642,7 +10635,7 @@ version = "0.50.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "anyio" }, - { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.13' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/ba/b8/73a0e6a6e079a9d9cfa64113d771e421640b6f679a52eeb9b32f72d871a1/starlette-0.50.0.tar.gz", hash = "sha256:a2a17b22203254bcbc2e1f926d2d55f3f9497f769416b3190768befe598fa3ca", size = 2646985, upload-time = "2025-11-01T15:25:27.516Z" } wheels = [ @@ -8659,8 +10652,8 @@ dependencies = [ { name = "cachetools" }, { name = "click" }, { name = "gitpython" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "pandas" }, { name = "pillow" }, @@ -8679,6 +10672,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/d0/d4/cdafd4cc940937410f465ca7a77dd34237182c2ddece624e08db959496f8/streamlit-1.52.1-py3-none-any.whl", hash = "sha256:97fee2c3421d350fd65548e45a20f506ec1b651d78f95ecacbc0c2f9f838081c", size = 9024748, upload-time = "2025-12-05T18:55:39.713Z" }, ] +[[package]] +name = "supervisor" +version = "4.3.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/a9/b5/37e7a3706de436a8a2d75334711dad1afb4ddffab09f25e31d89e467542f/supervisor-4.3.0.tar.gz", hash = "sha256:4a2bf149adf42997e1bb44b70c43b613275ec9852c3edacca86a9166b27e945e", size = 468912, upload-time = "2025-08-23T18:25:02.418Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/0e/65/5e726c372da8a5e35022a94388b12252710aad0c2351699c3d76ae8dba78/supervisor-4.3.0-py2.py3-none-any.whl", hash = "sha256:0bcb763fddafba410f35cbde226aa7f8514b9fb82eb05a0c85f6588d1c13f8db", size = 320736, upload-time = "2025-08-23T18:25:00.767Z" }, +] + [[package]] name = "sympy" version = "1.14.0" @@ -8761,8 +10763,8 @@ dependencies = [ { name = "confection" }, { name = "cymem" }, { name = "murmurhash" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "packaging" }, { name = "preshed" }, { name = "pydantic" }, @@ -8846,11 +10848,11 @@ version = "2025.10.16" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')", "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", @@ -8937,11 +10939,11 @@ version = "0.4.12" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux'", "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux'", "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux')", "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin'", @@ -8958,10 +10960,10 @@ resolution-markers = [ "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux')", ] dependencies = [ - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a9/12/34f304a4b913069058f63613bf52d003b1f9af76586c25bc5577455ac4d6/timm-0.4.12.tar.gz", hash = "sha256:b14be70dbd4528b5ca8657cf5bc2672c7918c3d9ebfbffe80f4785b54e884b1e", size = 307439, upload-time = "2021-06-30T16:31:02.19Z" } wheels = [ @@ -8985,13 +10987,15 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra != 'extra-4-mteb-blip2'" }, - { name = "pyyaml", marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra != 'extra-4-mteb-blip2'" }, - { name = "safetensors", marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra != 'extra-4-mteb-blip2'" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra != 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra != 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra != 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra != 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm')" }, + { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or extra != 'extra-4-mteb-blip2'" }, + { name = "pyyaml", marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or extra != 'extra-4-mteb-blip2'" }, + { name = "safetensors", marker = "extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-llama-embed-nemotron' or extra == 'extra-4-mteb-llm2vec' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-pylate' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or extra != 'extra-4-mteb-blip2'" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c5/9d/e4670765d1c033f97096c760b3b907eeb659cf80f3678640e5f060b04c6c/timm-1.0.22.tar.gz", hash = "sha256:14fd74bcc17db3856b1a47d26fb305576c98579ab9d02b36714a5e6b25cde422", size = 2382998, upload-time = "2025-11-05T04:06:09.377Z" } wheels = [ @@ -9015,7 +11019,7 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, + { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/48/04/2071c150f374aab6d5e92aaec38d0f3c368d227dd9e0469a1f0966ac68d1/tokenizers-0.19.1.tar.gz", hash = "sha256:ee59e6680ed0fdbe6b724cf38bd70400a0c1dd623b07ac729087270caeac88e3", size = 321039, upload-time = "2024-04-17T21:40:41.849Z" } wheels = [ @@ -9081,7 +11085,7 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, + { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c2/2f/402986d0823f8d7ca139d969af2917fefaa9b947d1fb32f6168c509f2492/tokenizers-0.21.4.tar.gz", hash = "sha256:fa23f85fbc9a02ec5c6978da172cdcbac23498c3ca9f3645c5c68740ac007880", size = 351253, upload-time = "2025-07-28T15:48:54.325Z" } wheels = [ @@ -9106,109 +11110,119 @@ name = "tokenizers" version = "0.22.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1c/46/fb6854cec3278fbfa4a75b50232c77622bc517ac886156e6afbfa4d8fc6e/tokenizers-0.22.1.tar.gz", hash = "sha256:61de6522785310a309b3407bac22d99c4db5dba349935e99e4d15ea2226af2d9", size = 363123, upload-time = "2025-09-19T09:49:23.424Z" } wheels = [ @@ -9300,127 +11314,39 @@ name = "torch" version = "2.8.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "filelock", marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "fsspec", marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "jinja2", marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cublas-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cuda-cupti-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cuda-nvrtc-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cuda-runtime-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cudnn-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cufft-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cufile-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-curand-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusolver-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusparse-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusparselt-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nccl-cu12", version = "2.27.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nvjitlink-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nvtx-cu12", marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "setuptools", marker = "(python_full_version >= '3.12' and python_full_version < '3.14') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "sympy", marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "typing-extensions", marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and sys_platform != 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform != 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform != 'linux'", + "python_full_version < '3.11' and sys_platform == 'linux'", + "python_full_version < '3.11' and sys_platform != 'linux'", +] +dependencies = [ + { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "fsspec", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "jinja2", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cublas-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-cupti-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-runtime-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cudnn-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cufft-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cufile-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-curand-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusolver-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparse-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparselt-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nccl-cu12", version = "2.27.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvjitlink-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvtx-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "setuptools", marker = "(python_full_version == '3.12.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "sympy", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "triton", version = "3.4.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/63/28/110f7274254f1b8476c561dada127173f994afa2b1ffc044efb773c15650/torch-2.8.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:0be92c08b44009d4131d1ff7a8060d10bafdb7ddcb7359ef8d8c5169007ea905", size = 102052793, upload-time = "2025-08-06T14:53:15.852Z" }, @@ -9445,60 +11371,207 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/04/6e/650bb7f28f771af0cb791b02348db8b7f5f64f40f6829ee82aa6ce99aabe/torch-2.8.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:7b677e17f5a3e69fdef7eb3b9da72622f8d322692930297e4ccb52fefc6c8211", size = 73632395, upload-time = "2025-08-06T14:55:28.645Z" }, ] +[[package]] +name = "torch" +version = "2.9.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "fsspec", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "jinja2", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "networkx", version = "3.4.2", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cublas-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-cupti-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-runtime-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cudnn-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cufft-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cufile-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-curand-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusolver-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparse-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparselt-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nccl-cu12", version = "2.27.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvjitlink-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvshmem-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvtx-cu12", marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "setuptools", marker = "(python_full_version == '3.12.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.12' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "sympy", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "triton", version = "3.5.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "typing-extensions", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/bb/86/245c240d2138c17ed572c943c289056c2721abab70810d772c6bf5495b28/torch-2.9.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:030bbfe367379ae6a4ae4042b6c44da25383343b8b3c68abaa9c7231efbaf2dd", size = 104213554, upload-time = "2025-10-15T15:45:59.798Z" }, + { url = "https://files.pythonhosted.org/packages/58/1d/fd1e88ae0948825efcab7dd66d12bec23f05d4d38ed81573c8d453c14c06/torch-2.9.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:51cb63902182a78e90886e8068befd8ea102af4b00e420263591a3d70c7d3c6c", size = 899795167, upload-time = "2025-10-15T15:47:12.695Z" }, + { url = "https://files.pythonhosted.org/packages/63/5a/496197b45c14982bef4e079b24c61dc108e3ab0d0cc9718dba9f54f45a46/torch-2.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:3f6aad4d2f0ee2248bac25339d74858ff846c3969b27d14ac235821f055af83d", size = 109310314, upload-time = "2025-10-15T15:46:16.633Z" }, + { url = "https://files.pythonhosted.org/packages/58/b0/2b4e647b0fc706e88eb6c253d05511865578f5f67b55fad639bf3272a4a1/torch-2.9.0-cp310-none-macosx_11_0_arm64.whl", hash = "sha256:413e1654c9203733138858780e184d9fc59442f0b3b209e16f39354eb893db9b", size = 74452019, upload-time = "2025-10-15T15:46:04.296Z" }, + { url = "https://files.pythonhosted.org/packages/58/fe/334225e6330e672b36aef23d77451fa906ea12881570c08638a91331a212/torch-2.9.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:c596708b5105d0b199215acf0c9be7c1db5f1680d88eddadf4b75a299259a677", size = 104230578, upload-time = "2025-10-15T15:46:08.182Z" }, + { url = "https://files.pythonhosted.org/packages/05/cc/49566caaa218872ec9a2912456f470ff92649894a4bc2e5274aa9ef87c4a/torch-2.9.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:51de31219c97c51cf4bf2be94d622e3deb5dcc526c6dc00e97c17eaec0fc1d67", size = 899815990, upload-time = "2025-10-15T15:48:03.336Z" }, + { url = "https://files.pythonhosted.org/packages/74/25/e9ab21d5925b642d008f139d4a3c9664fc9ee1faafca22913c080cc4c0a5/torch-2.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:dd515c70059afd95f48b8192733764c08ca37a1d19803af6401b5ecad7c8676e", size = 109313698, upload-time = "2025-10-15T15:46:12.425Z" }, + { url = "https://files.pythonhosted.org/packages/b3/b7/205ef3e94de636feffd64b28bb59a0dfac0771221201b9871acf9236f5ca/torch-2.9.0-cp311-none-macosx_11_0_arm64.whl", hash = "sha256:614a185e4986326d526a91210c8fc1397e76e8cfafa78baf6296a790e53a9eec", size = 74463678, upload-time = "2025-10-15T15:46:29.779Z" }, + { url = "https://files.pythonhosted.org/packages/d1/d3/3985739f3b8e88675127bf70f82b3a48ae083e39cda56305dbd90398fec0/torch-2.9.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:e5f7af1dc4c0a7c4a260c2534f41ddaf209714f7c89145e644c44712fbd6b642", size = 104107898, upload-time = "2025-10-15T15:46:20.883Z" }, + { url = "https://files.pythonhosted.org/packages/a5/4b/f4bb2e6c25d0272f798cd6d7a04ed315da76cec68c602d87040c7847287f/torch-2.9.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:01cff95ecd9a212ea2f141db28acccdceb6a4c54f64e6c51091146f5e2a772c6", size = 899738273, upload-time = "2025-10-15T15:50:04.188Z" }, + { url = "https://files.pythonhosted.org/packages/66/11/c1c5ba6691cda6279087c35bd626536e4fd29521fe740abf5008377a9a02/torch-2.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:4582b162f541651f0cb184d3e291c05c2f556c7117c64a9873e2ee158d40062b", size = 109280887, upload-time = "2025-10-15T15:46:26.228Z" }, + { url = "https://files.pythonhosted.org/packages/dd/5f/b85bd8c05312d71de9402bf5868d217c38827cfd09d8f8514e5be128a52b/torch-2.9.0-cp312-none-macosx_11_0_arm64.whl", hash = "sha256:33f58e9a102a91259af289d50525c30323b5c9ae1d31322b6447c0814da68695", size = 74478983, upload-time = "2025-10-15T15:46:39.406Z" }, + { url = "https://files.pythonhosted.org/packages/c2/1c/90eb13833cdf4969ea9707586d7b57095c3b6e2b223a7256bf111689bcb8/torch-2.9.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:c30a17fc83eeab346913e237c64b15b5ba6407fff812f6c541e322e19bc9ea0e", size = 104111330, upload-time = "2025-10-15T15:46:35.238Z" }, + { url = "https://files.pythonhosted.org/packages/0e/21/2254c54b8d523592c25ef4434769aa23e29b1e6bf5f4c0ad9e27bf442927/torch-2.9.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:8f25033b8667b57857dfd01458fbf2a9e6a6df1f8def23aef0dc46292f6aa642", size = 899750243, upload-time = "2025-10-15T15:48:57.459Z" }, + { url = "https://files.pythonhosted.org/packages/b7/a5/5cb94fa4fd1e78223455c23c200f30f6dc10c6d4a2bcc8f6e7f2a2588370/torch-2.9.0-cp313-cp313-win_amd64.whl", hash = "sha256:d037f1b4ffd25013be4a7bf3651a0a910c68554956c7b2c92ebe87c76475dece", size = 109284513, upload-time = "2025-10-15T15:46:45.061Z" }, + { url = "https://files.pythonhosted.org/packages/66/e8/fc414d8656250ee46120b44836ffbb3266343db424b3e18ca79ebbf69d4f/torch-2.9.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e4e5b5cba837a2a8d1a497ba9a58dae46fa392593eaa13b871c42f71847503a5", size = 74830362, upload-time = "2025-10-15T15:46:48.983Z" }, + { url = "https://files.pythonhosted.org/packages/ed/5f/9474c98fc5ae0cd04b9466035428cd360e6611a86b8352a0fc2fa504acdc/torch-2.9.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:64693568f5dc4dbd5f880a478b1cea0201cc6b510d91d1bc54fea86ac5d1a637", size = 104144940, upload-time = "2025-10-15T15:47:29.076Z" }, + { url = "https://files.pythonhosted.org/packages/2d/5a/8e0c1cf57830172c109d4bd6be2708cabeaf550983eee7029291322447a0/torch-2.9.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:f8ed31ddd7d10bfb3fbe0b9fe01b1243577f13d75e6f4a0839a283915ce3791e", size = 899744054, upload-time = "2025-10-15T15:48:29.864Z" }, + { url = "https://files.pythonhosted.org/packages/6d/28/82c28b30fcb4b7c9cdd995763d18bbb830d6521356712faebbad92ffa61d/torch-2.9.0-cp313-cp313t-win_amd64.whl", hash = "sha256:eff527d4e4846e6f70d2afd8058b73825761203d66576a7e04ea2ecfebcb4ab8", size = 109517546, upload-time = "2025-10-15T15:47:33.395Z" }, + { url = "https://files.pythonhosted.org/packages/ff/c3/a91f96ec74347fa5fd24453fa514bc61c61ecc79196fa760b012a1873d96/torch-2.9.0-cp313-none-macosx_11_0_arm64.whl", hash = "sha256:f8877779cf56d1ce431a7636703bdb13307f5960bb1af49716d8b179225e0e6a", size = 74480732, upload-time = "2025-10-15T15:47:38.002Z" }, + { url = "https://files.pythonhosted.org/packages/5c/73/9f70af34b334a7e0ef496ceec96b7ec767bd778ea35385ce6f77557534d1/torch-2.9.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:7e614fae699838038d888729f82b687c03413c5989ce2a9481f9a7e7a396e0bb", size = 74433037, upload-time = "2025-10-15T15:47:41.894Z" }, + { url = "https://files.pythonhosted.org/packages/b7/84/37cf88625901934c97109e583ecc21777d21c6f54cda97a7e5bbad1ee2f2/torch-2.9.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:dfb5b8cd310ba3436c7e14e8b7833ef658cf3045e50d2bdaed23c8fc517065eb", size = 104116482, upload-time = "2025-10-15T15:47:46.266Z" }, + { url = "https://files.pythonhosted.org/packages/56/8e/ca8b17866943a8d4f4664d402ea84210aa274588b4c5d89918f5caa24eec/torch-2.9.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:b3d29524993a478e46f5d598b249cd824b7ed98d7fba538bd9c4cde6c803948f", size = 899746916, upload-time = "2025-10-15T15:50:40.294Z" }, + { url = "https://files.pythonhosted.org/packages/43/65/3b17c0fbbdab6501c5b320a52a648628d0d44e7379f64e27d9eef701b6bf/torch-2.9.0-cp314-cp314-win_amd64.whl", hash = "sha256:71c7578984f5ec0eb645eb4816ac8435fcf3e3e2ae1901bcd2f519a9cafb5125", size = 109275151, upload-time = "2025-10-15T15:49:20.715Z" }, + { url = "https://files.pythonhosted.org/packages/83/36/74f8c051f785500396e42f93542422422dfd874a174f21f8d955d36e5d64/torch-2.9.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:71d9309aee457bbe0b164bce2111cd911c4ed4e847e65d5077dbbcd3aba6befc", size = 74823353, upload-time = "2025-10-15T15:49:16.59Z" }, + { url = "https://files.pythonhosted.org/packages/62/51/dc3b4e2f9ba98ae27238f0153ca098bf9340b2dafcc67fde645d496dfc2a/torch-2.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:c08fb654d783899e204a32cca758a7ce8a45b2d78eeb89517cc937088316f78e", size = 104140340, upload-time = "2025-10-15T15:50:19.67Z" }, + { url = "https://files.pythonhosted.org/packages/c0/8d/b00657f8141ac16af7bb6cda2e67de18499a3263b78d516b9a93fcbc98e3/torch-2.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:ec8feb0099b2daa5728fbc7abb0b05730fd97e0f359ff8bda09865aaa7bd7d4b", size = 899731750, upload-time = "2025-10-15T15:49:36.673Z" }, + { url = "https://files.pythonhosted.org/packages/fc/29/bd361e0cbb2c79ce6450f42643aaf6919956f89923a50571b0ebfe92d142/torch-2.9.0-cp314-cp314t-win_amd64.whl", hash = "sha256:695ba920f234ad4170c9c50e28d56c848432f8f530e6bc7f88fcb15ddf338e75", size = 109503850, upload-time = "2025-10-15T15:50:24.118Z" }, +] + [[package]] name = "torch" version = "2.9.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "filelock", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "fsspec", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "jinja2", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cublas-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cuda-cupti-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cuda-nvrtc-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cuda-runtime-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cudnn-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cufft-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cufile-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-curand-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusolver-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusparse-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-cusparselt-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nccl-cu12", version = "2.27.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nvjitlink-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nvshmem-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "nvidia-nvtx-cu12", marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "setuptools", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "sympy", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "triton", version = "3.5.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "typing-extensions", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "filelock", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "fsspec", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "jinja2", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "networkx", version = "3.6.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "nvidia-cublas-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-cupti-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-nvrtc-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cuda-runtime-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cudnn-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cufft-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cufile-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-curand-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusolver-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparse-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-cusparselt-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nccl-cu12", version = "2.27.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvjitlink-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvshmem-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "nvidia-nvtx-cu12", marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "setuptools", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "sympy", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "triton", version = "3.5.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and platform_machine == 'x86_64' and sys_platform == 'linux' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (platform_machine != 'x86_64' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "typing-extensions", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/5f/56/9577683b23072075ed2e40d725c52c2019d71a972fab8e083763da8e707e/torch-2.9.1-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1cc208435f6c379f9b8fdfd5ceb5be1e3b72a6bdf1cb46c0d2812aa73472db9e", size = 104207681, upload-time = "2025-11-12T15:19:56.48Z" }, @@ -9531,113 +11604,63 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/db/2b/f7818f6ec88758dfd21da46b6cd46af9d1b3433e53ddbb19ad1e0da17f9b/torch-2.9.1-cp314-cp314t-win_amd64.whl", hash = "sha256:c88d3299ddeb2b35dcc31753305612db485ab6f1823e37fb29451c8b2732b87e", size = 111163659, upload-time = "2025-11-12T15:23:20.009Z" }, ] +[[package]] +name = "torchaudio" +version = "2.9.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" } }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/78/aa/7fce684dc0e21f8ea3ecf4a9f37253f8fa0b51aa0973202b58f33b9dc031/torchaudio-2.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:214d2e8bec2b204ac3f552f3dceae51550e06a91c5863d5dc341d81691ef655e", size = 806922, upload-time = "2025-10-15T15:51:53.069Z" }, + { url = "https://files.pythonhosted.org/packages/0b/c2/212181b1df762487462b3a092f6a9ae6ba87df02df71bb2121c100b13b8d/torchaudio-2.9.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1e84e45f74bf5b208b5ce59b36f26ec1e5f63596542c3ebee6edeadf85e73563", size = 473802, upload-time = "2025-10-15T15:51:55.626Z" }, + { url = "https://files.pythonhosted.org/packages/39/27/75184741da9aa1e94ec136319781e1275a560d1c311a293cc22aba747863/torchaudio-2.9.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:905f2c916e392b6dde375c002abe98f6fc64705fdf1192c90a6df2de235305f3", size = 2055464, upload-time = "2025-10-15T15:51:57.996Z" }, + { url = "https://files.pythonhosted.org/packages/43/af/f12349d7cb325b9b36452192953eb8c4ca9a6c28c8335c2d2f5e576be7f3/torchaudio-2.9.0-cp310-cp310-win_amd64.whl", hash = "sha256:4ed556da9de16f69ccbe804df510ae8fefdf995cbdc2fcf26ea7532d25463326", size = 663878, upload-time = "2025-10-15T15:52:07.274Z" }, + { url = "https://files.pythonhosted.org/packages/d5/a2/7696b9579ad0c40b78ce2774fb24875c43257f3d0d24540e1cfa946c13b4/torchaudio-2.9.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:662eb49ab25e1a2b7367bb072a8ad05c8a4b650ebbe7090a5af1a1eb1d40767c", size = 808368, upload-time = "2025-10-15T15:51:56.56Z" }, + { url = "https://files.pythonhosted.org/packages/55/1a/48d528cae6050b9a5f07c1c942b547143237e9f080f4a2ccb80ba88486df/torchaudio-2.9.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:914f1408142bdeda1ca9f834dd04967625fccc75893bd1504a018a13a04f1b66", size = 475720, upload-time = "2025-10-15T15:51:59.111Z" }, + { url = "https://files.pythonhosted.org/packages/f0/41/7aba77bc89d06df993c1519b66b7e0b09661d297d0eb8c044ab2c5af665f/torchaudio-2.9.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:86b15ce1d74814d5ca14bfac0d3b33f325c8cac4a6f09dcc5b82748133a96792", size = 2058688, upload-time = "2025-10-15T15:52:01.885Z" }, + { url = "https://files.pythonhosted.org/packages/96/64/93944c24d7ec76dff3315f9aaf382e86d09fa2c865942c3d6b48666e5b1d/torchaudio-2.9.0-cp311-cp311-win_amd64.whl", hash = "sha256:840487d748128ded45bd65b213b55db701ad047544e77ae3c57ea48f55623a77", size = 664692, upload-time = "2025-10-15T15:52:02.908Z" }, + { url = "https://files.pythonhosted.org/packages/b7/63/3c0ede3aa3d19a8a6698ddd107fa88660549360b51bf8ce2717cd498d800/torchaudio-2.9.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ab4cbcccfd873b0fb41fcb39c9869e59ef84bb95b093f6f58e2d05172a7500d2", size = 809116, upload-time = "2025-10-15T15:52:00.911Z" }, + { url = "https://files.pythonhosted.org/packages/be/d5/25e58745defe9d05893d3cba5c0e1a76aeaac503ac5ec4d9f83c871df71c/torchaudio-2.9.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:7f93388b6e536c14d6015b6f75277a8b45efc532f61b35adc1ed06c98a86003e", size = 476020, upload-time = "2025-10-15T15:51:59.967Z" }, + { url = "https://files.pythonhosted.org/packages/f0/9c/58b8b49dfba2ae85e41ca86b0c52de45bbbea01987490de219c99c523a58/torchaudio-2.9.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:508318a2130b40ad51378f90caf8727a4bd3ac2b296f2b90c900b44e6068a940", size = 2059901, upload-time = "2025-10-15T15:51:54.634Z" }, + { url = "https://files.pythonhosted.org/packages/d7/eb/58b05f75d12f69ccc460893a20c999da082e063082120ed06e05cca3a053/torchaudio-2.9.0-cp312-cp312-win_amd64.whl", hash = "sha256:82117e3a605f2959dc09b4cd8a11178d6e92727d5f85e5d4f9fe47502f84ee96", size = 665350, upload-time = "2025-10-15T15:52:08.384Z" }, + { url = "https://files.pythonhosted.org/packages/6c/66/974371d4e4042d186931b72365817d9d3a509f2bc570888a48612448c060/torchaudio-2.9.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:5549c25db4c2da306e179e9aa99980e7f5b1826a8d2d7de08125f3943a5620b2", size = 809149, upload-time = "2025-10-15T15:52:16.133Z" }, + { url = "https://files.pythonhosted.org/packages/09/61/8f7b875a2d879666f2f121e458817703e5499988a86105d2a25afecb9987/torchaudio-2.9.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:1eb0d1dac8cefbc4a54afb21aac72a1c25a91f73e9c3bd85f6684930a4a1be5d", size = 475699, upload-time = "2025-10-15T15:52:06.349Z" }, + { url = "https://files.pythonhosted.org/packages/26/db/10ba200f90b76f7b859f46b5ba30cdded69f71bcb0fe3c59bb215532cd2b/torchaudio-2.9.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:266d304dd4ed738a10148b020e3d066e81272ee851f6f92193fe549df96af868", size = 2060349, upload-time = "2025-10-15T15:52:09.329Z" }, + { url = "https://files.pythonhosted.org/packages/be/53/5f9adbea55e48f91532ee4f041283900939ee5cb6bc1395587214e67a629/torchaudio-2.9.0-cp313-cp313-win_amd64.whl", hash = "sha256:7d3926129389d934aa048bd6c6f68fbf3ef26828ebbbbeac99794ea00e90dc1c", size = 665310, upload-time = "2025-10-15T15:52:05.101Z" }, + { url = "https://files.pythonhosted.org/packages/e3/41/88b989aab1e11134d858350196fcf3afd4c2a6821d74efb3c1b9ab23b8cf/torchaudio-2.9.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:967d664477fb91dffad82ef64ea3695801c0cc35304baec71be875b569440872", size = 813491, upload-time = "2025-10-15T15:52:10.346Z" }, + { url = "https://files.pythonhosted.org/packages/1a/c1/8d0481fc921cb72d6cadbacd338fa71db0052e8fdb1bf33127c694bbf257/torchaudio-2.9.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:276871d6f5fed5268a87c5da303a13ca2e06b9d29a4c44663b960f0a2e2f46d7", size = 477749, upload-time = "2025-10-15T15:52:04.189Z" }, + { url = "https://files.pythonhosted.org/packages/cf/d3/d085cd76413b9f3f792e61933235d982caf5cdbdf60f0e4fdae71879becc/torchaudio-2.9.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:3d5657d929d6ca07b08cfa005988f2ea8caacf9af42f20bc7eff10f88812ce30", size = 2062165, upload-time = "2025-10-15T15:52:12.784Z" }, + { url = "https://files.pythonhosted.org/packages/f2/41/d9876f5b19b4b2f98a6131d1a98ee6d5d8f707c01311bbba7cc3bb02f4bf/torchaudio-2.9.0-cp313-cp313t-win_amd64.whl", hash = "sha256:3fe9cac0c2ee713e07f8c88d09528d55e0fa74987b0122e27911dfb720f39054", size = 669260, upload-time = "2025-10-15T15:52:13.8Z" }, + { url = "https://files.pythonhosted.org/packages/97/ad/db50c49d73d1904152bbaaaa281e03a41ec519dd6a9df48cc69ea5cd48b9/torchaudio-2.9.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:3fa41447a21103fcde930b4ad2bd2634565a0becff1a5425535b4f0116c0d5df", size = 810532, upload-time = "2025-10-15T15:52:17.197Z" }, + { url = "https://files.pythonhosted.org/packages/a8/00/aa8ed83a169a87af72d6cdc17e0350f418b3cba3bd7397b0cca873274789/torchaudio-2.9.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:69f46f21bd67e90ade33a7d0f0cf98270cd61b98f5f8249d3893be0a16b3e31f", size = 475864, upload-time = "2025-10-15T15:52:11.446Z" }, + { url = "https://files.pythonhosted.org/packages/4b/bb/7ca64ed0556afa08d3a7a47c887ee9b1c4f3eebd193baf47505b6fac479c/torchaudio-2.9.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:631b0f43564a25e27e615b217454c334f52162679f39ae10b9fa7562ed587dfc", size = 2060360, upload-time = "2025-10-15T15:52:14.992Z" }, + { url = "https://files.pythonhosted.org/packages/63/13/4407b79ddedc9ea95d88fa54c3758df21f0117683fceba4bacd98ceaa772/torchaudio-2.9.0-cp314-cp314-win_amd64.whl", hash = "sha256:ed6df9f14431e13498b984dc87df1aabb2156b9ce0ce7268ce4a61650197310a", size = 665048, upload-time = "2025-10-15T15:52:19.116Z" }, + { url = "https://files.pythonhosted.org/packages/7d/1a/d3cd6b67b5c68ff4211be923978d1d7c10ea2f44f826d4cd15b775f52c11/torchaudio-2.9.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:93358d8f2f24969ba3f368f4eec33295df830af54836c7fd3336740228f9af16", size = 813499, upload-time = "2025-10-15T15:52:20.412Z" }, + { url = "https://files.pythonhosted.org/packages/ab/65/a35a182519b40dcd2cedaf5fdcac6f724ae2451c534dfcece6ff5f85f983/torchaudio-2.9.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:742143d9d62769bc4b9a2977ca4f4720e0a5e922bdc5df585c155e0a1f545461", size = 477752, upload-time = "2025-10-15T15:52:18.14Z" }, + { url = "https://files.pythonhosted.org/packages/6f/1c/30272b71ae08817eaca00bb856ebef25dd44041329579903c1915b57f0c9/torchaudio-2.9.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:0a234634e1142fb2652c49e935a98b4d9656fd0af9e4aa14b1b05a80c3cf8e78", size = 2062173, upload-time = "2025-10-15T15:52:22.724Z" }, + { url = "https://files.pythonhosted.org/packages/b9/d6/d007f6bc55a16a86e64e9bba295b90485011cc6a113d8f56b503b4f34a7d/torchaudio-2.9.0-cp314-cp314t-win_amd64.whl", hash = "sha256:cbf5d6da8fd2ed545c78218b39fd6aacaa4dd5e265c5f85b248a2fac223f0bd6", size = 669272, upload-time = "2025-10-15T15:52:21.696Z" }, +] + [[package]] name = "torchvision" version = "0.23.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "pillow", marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and sys_platform != 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform != 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform != 'linux'", + "python_full_version < '3.11' and sys_platform == 'linux'", + "python_full_version < '3.11' and sys_platform != 'linux'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "pillow", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/4d/49/5ad5c3ff4920be0adee9eb4339b4fb3b023a0fc55b9ed8dbc73df92946b8/torchvision-0.23.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7266871daca00ad46d1c073e55d972179d12a58fa5c9adec9a3db9bbed71284a", size = 1856885, upload-time = "2025-08-06T14:57:55.024Z" }, @@ -9662,40 +11685,167 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/6e/f5/b5a2d841a8d228b5dbda6d524704408e19e7ca6b7bb0f24490e081da1fa1/torchvision-0.23.0-cp313-cp313t-win_amd64.whl", hash = "sha256:b9e2dabf0da9c8aa9ea241afb63a8f3e98489e706b22ac3f30416a1be377153b", size = 1527667, upload-time = "2025-08-06T14:58:14.446Z" }, ] +[[package]] +name = "torchvision" +version = "0.24.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "pillow", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/63/5b/1404eeab00819df71a30e916c2081654366741f7838fcc4fff86b7bd9e7e/torchvision-0.24.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5e8d5e667deff87bd66d26df6d225f46224bb0782d4f3f8f5d2f3068b5fd4492", size = 1891723, upload-time = "2025-10-15T15:51:08.5Z" }, + { url = "https://files.pythonhosted.org/packages/88/e3/1b003ecd52bd721f8304aeb66691edfbc2002747ec83d36188ad6abab506/torchvision-0.24.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:a110a51c75e89807a8382b0d8034f5e180fb9319570be3389ffd3d4ac4fd57a9", size = 2418988, upload-time = "2025-10-15T15:51:25.195Z" }, + { url = "https://files.pythonhosted.org/packages/56/2e/3c19a35e62da0f606baf8f6e2ceeab1eb66aaa2f84c6528538b06b416d54/torchvision-0.24.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:81d5b12a6df1bb2cc8bdbad837b637d6ea446f2866e6d94f1b5d478856331be3", size = 8046769, upload-time = "2025-10-15T15:51:15.221Z" }, + { url = "https://files.pythonhosted.org/packages/e0/1d/e7ab614a1ace820a2366eab1532679fbe81bd9501ffd6a1b7be14936366d/torchvision-0.24.0-cp310-cp310-win_amd64.whl", hash = "sha256:0839dbb305d34671f5a64f558782095134b04bbeff8b90f11eb80515d7d50092", size = 3686529, upload-time = "2025-10-15T15:51:20.982Z" }, + { url = "https://files.pythonhosted.org/packages/a3/17/54ed2ec6944ea972b461a86424c8c7f98835982c90cbc45bf59bd962863a/torchvision-0.24.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f771cf918351ad509a28488be475f3e9cc71a750d6b1467842bfb64863a5e986", size = 1891719, upload-time = "2025-10-15T15:51:10.384Z" }, + { url = "https://files.pythonhosted.org/packages/f8/07/0cd6776eee784742ad3cb2bfd3295383d84cb2f9e87386119333d1587f0f/torchvision-0.24.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:bbd63bf4ebff84c48c50123eba90526cc9f794fe45bc9f5dd07cec19e8c62bce", size = 2420513, upload-time = "2025-10-15T15:51:18.087Z" }, + { url = "https://files.pythonhosted.org/packages/1a/f4/6026c08011ddcefcbc14161c5aa9dce55c35c6b045e04ef0952e88bf4594/torchvision-0.24.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:78fe414b3bb6dbf7e6f6da6f733ba96881f6b29a9b997228de7c5f603e5ed940", size = 8048018, upload-time = "2025-10-15T15:51:13.579Z" }, + { url = "https://files.pythonhosted.org/packages/2f/b4/362b4e67ed87cee0fb4f8f0363a852eaeef527968bf62c07ed56f764d729/torchvision-0.24.0-cp311-cp311-win_amd64.whl", hash = "sha256:629584b94e52f32a6278f2a35d85eeaae95fcc38730fcb765064f26c3c96df5d", size = 4027686, upload-time = "2025-10-15T15:51:19.189Z" }, + { url = "https://files.pythonhosted.org/packages/47/ef/81e4e69e02e2c4650b30e8c11c8974f946682a30e0ab7e9803a831beff76/torchvision-0.24.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:c61d40bcd2e2451e932902a702ad495ba1ec6f279e90b1e15cef2bb55dc911e2", size = 1891726, upload-time = "2025-10-15T15:51:16.977Z" }, + { url = "https://files.pythonhosted.org/packages/00/7b/e3809b3302caea9a12c13f3adebe4fef127188438e719fd6c8dc93db1da6/torchvision-0.24.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:b0531d1483fc322d7da0d83be52f0df860a75114ab87dbeeb9de765feaeda843", size = 2419495, upload-time = "2025-10-15T15:51:11.885Z" }, + { url = "https://files.pythonhosted.org/packages/7e/e6/7324ead6793075a8c75c56abeed1236d1750de16a5613cfe2ddad164a92a/torchvision-0.24.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:26b9dd9c083f8e5f7ac827de6d5b88c615d9c582dc87666770fbdf16887e4c25", size = 8050480, upload-time = "2025-10-15T15:51:24.012Z" }, + { url = "https://files.pythonhosted.org/packages/3e/ad/3c56fcd2a0d6e8afa80e115b5ade4302232ec99655220a51d05709819523/torchvision-0.24.0-cp312-cp312-win_amd64.whl", hash = "sha256:060b7c50ed4b3fb0316b08e2e31bfd874ec2f63ef5ae02f81e54341ca4e88703", size = 4292225, upload-time = "2025-10-15T15:51:27.699Z" }, + { url = "https://files.pythonhosted.org/packages/4f/b5/b2008e4b77a8d6aada828dd0f6a438d8f94befa23fdd2d62fa0ac6e60113/torchvision-0.24.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:84d79cfc6457310107ce4d712de7a3d388b24484bc9aeded4a76d8f8e3a2813d", size = 1891722, upload-time = "2025-10-15T15:51:28.854Z" }, + { url = "https://files.pythonhosted.org/packages/8f/02/e2f6b0ff93ca4db5751ac9c5be43f13d5e53d9e9412324f464dca1775027/torchvision-0.24.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:fec12a269cf80f6b0b71471c8d498cd3bdd9d8e892c425bf39fecb604852c3b0", size = 2371478, upload-time = "2025-10-15T15:51:37.842Z" }, + { url = "https://files.pythonhosted.org/packages/77/85/42e5fc4f716ec7b73cf1f32eeb5c77961be4d4054b26cd6a5ff97f20c966/torchvision-0.24.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:7323a9be5e3da695605753f501cdc87824888c5655d27735cdeaa9986b45884c", size = 8050200, upload-time = "2025-10-15T15:51:46.276Z" }, + { url = "https://files.pythonhosted.org/packages/93/c2/48cb0b6b26276d2120b1e0dbc877579a748eae02b4091a7522ce54f6d5e1/torchvision-0.24.0-cp313-cp313-win_amd64.whl", hash = "sha256:08cad8b204196e945f0b2d73adee952d433db1c03645851d52b22a45f1015b13", size = 4309939, upload-time = "2025-10-15T15:51:39.002Z" }, + { url = "https://files.pythonhosted.org/packages/7d/d7/3dd10830b047eeb46ae6b465474258d7b4fbb7d8872dca69bd42449f5c82/torchvision-0.24.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ab956a6e588623353e0f20d4b03eb1656cb4a3c75ca4dd8b4e32e01bc43271a", size = 2028355, upload-time = "2025-10-15T15:51:22.384Z" }, + { url = "https://files.pythonhosted.org/packages/f7/cf/2d7e43409089ce7070f5336161f9216d58653ee1cb26bcb5d6c84cc2de36/torchvision-0.24.0-cp313-cp313t-manylinux_2_28_aarch64.whl", hash = "sha256:b1b3db80609c32a088554e8e94b4fc31f1033fe5bb4ac0673ec49c3eb03fb4da", size = 2374466, upload-time = "2025-10-15T15:51:35.382Z" }, + { url = "https://files.pythonhosted.org/packages/e9/30/8f7c328fd7e0a9665da4b6b56b1c627665c18470bfe62f3729ad3eda9aec/torchvision-0.24.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:e6635f100d455c80b43f297df4b8585a76c6a2e114802f6567ddd28d7b5479b0", size = 8217068, upload-time = "2025-10-15T15:51:36.623Z" }, + { url = "https://files.pythonhosted.org/packages/55/a2/b6f9e40e2904574c80b3bb872c66af20bbd642053e7c8e1b9e99ab396535/torchvision-0.24.0-cp313-cp313t-win_amd64.whl", hash = "sha256:4ce158bbdc3a9086034bced0b5212888bd5b251fee6d08a9eff151d30b4b228a", size = 4273912, upload-time = "2025-10-15T15:51:33.866Z" }, + { url = "https://files.pythonhosted.org/packages/1b/24/790a39645cc8c71bf442d54a76da9bda5caeb2a44c5f7e02498649cd99d4/torchvision-0.24.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:4bdfc85a5ed706421555f32cdc5e3ddb6d40bf65ef03a274ce3c176393e2904b", size = 2028335, upload-time = "2025-10-15T15:51:26.252Z" }, + { url = "https://files.pythonhosted.org/packages/b0/d7/69479a066ea773653e88eda99031e38681e9094046f87cb957af5036db0e/torchvision-0.24.0-cp314-cp314-manylinux_2_28_aarch64.whl", hash = "sha256:73576a9c4a593223fbae85a64e8bbd77049abd1101893ecf3c5e981284fd58b4", size = 2371609, upload-time = "2025-10-15T15:51:29.859Z" }, + { url = "https://files.pythonhosted.org/packages/46/64/3c7fdb3771ec992b9445a1f7a969466b23ce2cdb14e09303b3db351a0655/torchvision-0.24.0-cp314-cp314-manylinux_2_28_x86_64.whl", hash = "sha256:dd565b1b06666ff399d0801d4d1824fa570c0167a179ca700a5be232527b3c62", size = 8214918, upload-time = "2025-10-15T15:51:41.465Z" }, + { url = "https://files.pythonhosted.org/packages/58/51/abc416bc34d574ad479af738e413d9ebf93027ee92d0f4ae38f966b818f7/torchvision-0.24.0-cp314-cp314-win_amd64.whl", hash = "sha256:eb45d12ac48d757738788fd3fb8e88e647d6b2ab2424134ca87556efc72d81b5", size = 4257776, upload-time = "2025-10-15T15:51:42.642Z" }, + { url = "https://files.pythonhosted.org/packages/08/f7/261d1353c611820541ecd43046b89da3f1ae998dc786e4288b890a009883/torchvision-0.24.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:68120e7e03c31900e499a10bb7fdd63cfd67f0054c9fa108e7e27f9cd372f315", size = 2028359, upload-time = "2025-10-15T15:51:32.119Z" }, + { url = "https://files.pythonhosted.org/packages/a2/fd/615d8a86db1578345de7fa1edaf476fbcf4f057bf7e4fd898306b620c487/torchvision-0.24.0-cp314-cp314t-manylinux_2_28_aarch64.whl", hash = "sha256:64e54494043eecf9f57a9881c6fdea49c62282782e737c002ae8b1639e6ea80e", size = 2374469, upload-time = "2025-10-15T15:51:40.19Z" }, + { url = "https://files.pythonhosted.org/packages/04/98/bac11e8fdbf00d6c398246ff2781370aa72c99f2ac685c01ce79354c9a32/torchvision-0.24.0-cp314-cp314t-manylinux_2_28_x86_64.whl", hash = "sha256:75ef9546323b321a451239d886f0cb528f7e98bb294da47a3200effd4e572064", size = 8217060, upload-time = "2025-10-15T15:51:45.033Z" }, + { url = "https://files.pythonhosted.org/packages/47/6f/9fba8abc468c904570699eceeb51588f9622172b8fffa4ab11bcf15598c2/torchvision-0.24.0-cp314-cp314t-win_amd64.whl", hash = "sha256:2efb617667950814fc8bb9437e5893861b3616e214285be33cbc364a3f42c599", size = 4358490, upload-time = "2025-10-15T15:51:43.884Z" }, +] + [[package]] name = "torchvision" version = "0.24.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "pillow", marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "pillow", marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/f7/09/d51aadf8591138e08b74c64a6eb783630c7a31ca2634416277115a9c3a2b/torchvision-0.24.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ded5e625788572e4e1c4d155d1bbc48805c113794100d70e19c76e39e4d53465", size = 1891441, upload-time = "2025-11-12T15:25:01.687Z" }, @@ -9752,7 +11902,7 @@ name = "tqdm" version = "4.67.1" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "colorama", marker = "sys_platform == 'win32' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737, upload-time = "2024-11-24T20:12:22.481Z" } wheels = [ @@ -9785,17 +11935,17 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "filelock", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "packaging", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "pyyaml", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "regex", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "requests", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "safetensors", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "tqdm", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, + { name = "filelock", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "packaging", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "pyyaml", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "regex", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "requests", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "safetensors", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "tqdm", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/f8/a3/81de49357a3c6ac4421d48d9662b53293838f217baf3f3bb9eb55f89fab6/transformers-4.44.2.tar.gz", hash = "sha256:36aa17cc92ee154058e426d951684a2dab48751b35b49437896f898931270826", size = 8110312, upload-time = "2024-08-22T16:56:33.522Z" } wheels = [ @@ -9804,12 +11954,12 @@ wheels = [ [package.optional-dependencies] torch-vision = [ - { name = "pillow", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] vision = [ - { name = "pillow", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, ] [[package]] @@ -9829,17 +11979,17 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "filelock", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "packaging", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "pyyaml", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "regex", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "requests", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "safetensors", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "tqdm", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, + { name = "filelock", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "huggingface-hub", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "packaging", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "pyyaml", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "regex", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "requests", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "safetensors", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "tqdm", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/38/75/6ebdae4d6f4574f47139a070445245537e43482d006f615af8e23d5bf05e/transformers-4.51.0.tar.gz", hash = "sha256:2d302563ff6c2cc2d0e88ef352cf059f9a21ce18102fd43662bb1246f70b8a84", size = 8925571, upload-time = "2025-04-05T20:08:55.21Z" } wheels = [ @@ -9848,12 +11998,12 @@ wheels = [ [package.optional-dependencies] torch-vision = [ - { name = "pillow", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] vision = [ - { name = "pillow", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, ] [[package]] @@ -9869,17 +12019,17 @@ resolution-markers = [ "python_full_version < '3.11' and sys_platform != 'linux'", ] dependencies = [ - { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "huggingface-hub", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "packaging", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "regex", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "requests", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "safetensors", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "filelock", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "huggingface-hub", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "packaging", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "pyyaml", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "regex", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "requests", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "safetensors", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "tqdm", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e5/82/0bcfddd134cdf53440becb5e738257cc3cf34cf229d63b57bfd288e6579f/transformers-4.56.2.tar.gz", hash = "sha256:5e7c623e2d7494105c726dd10f6f90c2c99a55ebe86eef7233765abd0cb1c529", size = 9844296, upload-time = "2025-09-19T15:16:26.778Z" } wheels = [ @@ -9888,11 +12038,11 @@ wheels = [ [package.optional-dependencies] torch-vision = [ - { name = "pillow", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] vision = [ - { name = "pillow", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] [[package]] @@ -9900,113 +12050,123 @@ name = "transformers" version = "4.57.3" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "filelock", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "huggingface-hub", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm')" }, - { name = "packaging", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "pyyaml", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "regex", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "requests", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "safetensors", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "tqdm", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "filelock", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "huggingface-hub", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm')" }, + { name = "packaging", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "pyyaml", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "regex", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "requests", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "safetensors", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "tqdm", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/dd/70/d42a739e8dfde3d92bb2fff5819cbf331fe9657323221e79415cd5eb65ee/transformers-4.57.3.tar.gz", hash = "sha256:df4945029aaddd7c09eec5cad851f30662f8bd1746721b34cc031d70c65afebc", size = 10139680, upload-time = "2025-11-25T15:51:30.139Z" } wheels = [ @@ -10015,12 +12175,13 @@ wheels = [ [package.optional-dependencies] torch-vision = [ - { name = "pillow", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, - { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, + { name = "pillow", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "torchvision", version = "0.23.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "torchvision", version = "0.24.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] vision = [ - { name = "pillow", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, + { name = "pillow", marker = "(python_full_version >= '3.13' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec') or extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or extra == 'extra-4-mteb-model2vec' or extra == 'extra-4-mteb-sauerkrautlm-colpali' or extra == 'extra-4-mteb-timm' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate')" }, ] [[package]] @@ -10029,8 +12190,8 @@ version = "2.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cbor" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d4/71/7b62e2e56de6cdf0c648f0033a9faa41b8f712bacd71968af96277185400/trec-car-tools-2.6.tar.gz", hash = "sha256:2fce2de120224fd569b151d5bed358a4ed334e643889b9e3dfe3e5a3d15d21c8", size = 7513, upload-time = "2022-02-01T16:37:20.451Z" } wheels = [ @@ -10042,53 +12203,13 @@ name = "triton" version = "3.4.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "setuptools", marker = "(python_full_version < '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.14' and platform_machine == 'aarch64' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version < '3.11' and sys_platform == 'linux'", +] +dependencies = [ + { name = "setuptools", marker = "(python_full_version < '3.13' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and sys_platform == 'linux' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (sys_platform != 'linux' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/62/ee/0ee5f64a87eeda19bbad9bc54ae5ca5b98186ed00055281fd40fb4beb10e/triton-3.4.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7ff2785de9bc02f500e085420273bb5cc9c9bb767584a4aa28d6e360cec70128", size = 155430069, upload-time = "2025-07-30T19:58:21.715Z" }, @@ -10098,22 +12219,83 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/20/63/8cb444ad5cdb25d999b7d647abac25af0ee37d292afc009940c05b82dda0/triton-3.4.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7936b18a3499ed62059414d7df563e6c163c5e16c3773678a3ee3d417865035d", size = 155659780, upload-time = "2025-07-30T19:58:51.171Z" }, ] +[[package]] +name = "triton" +version = "3.5.0" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +wheels = [ + { url = "https://files.pythonhosted.org/packages/dd/22/507b6f58a35e05e84381630b2dc2a3cee1a7a2a7eaf4cba857c638a18a24/triton-3.5.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6f90de6a6566bb619b4c0adc9855729e1b1b5e26533fca1bf6206e96b6d277a3", size = 159827599, upload-time = "2025-10-15T19:15:43.87Z" }, + { url = "https://files.pythonhosted.org/packages/0b/eb/09e31d107a5d00eb281aa7e6635ca463e9bca86515944e399480eadb71f8/triton-3.5.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:d5d3b3d480debf24eaa739623c9a42446b0b77f95593d30eb1f64cd2278cc1f0", size = 170333110, upload-time = "2025-10-13T16:37:49.588Z" }, + { url = "https://files.pythonhosted.org/packages/79/f9/b6f60f978397c616fd8dacca2305759fe4f80d397b20ef72534803244bd5/triton-3.5.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:8457b22148defefdcb7fa8144b05ce211b9faefad650a1ce85b23df488d5549c", size = 159926731, upload-time = "2025-10-15T19:15:49.682Z" }, + { url = "https://files.pythonhosted.org/packages/3d/78/949a04391c21956c816523678f0e5fa308eb5b1e7622d88c4e4ef5fceca0/triton-3.5.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:f34bfa21c5b3a203c0f0eab28dcc1e49bd1f67d22724e77fb6665a659200a4ec", size = 170433488, upload-time = "2025-10-13T16:37:57.132Z" }, + { url = "https://files.pythonhosted.org/packages/87/9b/30988039e1e84df7554fba24e6a734d2d0e847af33cabdf9b532b3c51456/triton-3.5.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7da21fccceafc163e3a5e857abe34351ef76345af06cabf9637a914742671f0b", size = 159946647, upload-time = "2025-10-15T19:15:56.325Z" }, + { url = "https://files.pythonhosted.org/packages/f5/3a/e991574f3102147b642e49637e0281e9bb7c4ba254edb2bab78247c85e01/triton-3.5.0-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c9e71db82261c4ffa3921cd050cd5faa18322d2d405c30eb56084afaff3b0833", size = 170476535, upload-time = "2025-10-13T16:38:05.18Z" }, + { url = "https://files.pythonhosted.org/packages/cd/85/e37f1197acb04c8f3d83851d23d5d6ed5060ef74580668b112e23fdfa203/triton-3.5.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:188da5b81fa2f8322c27fec1627703eac24cb9bb7ab0dfbe9925973bc1b070d3", size = 159958970, upload-time = "2025-10-15T19:16:01.717Z" }, + { url = "https://files.pythonhosted.org/packages/6c/29/10728de8a6e932e517c10773486b8e99f85d1b1d9dd87d9a9616e1fef4a1/triton-3.5.0-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:e6bb9aa5519c084a333acdba443789e50012a4b851cd486c54f0b8dc2a8d3a12", size = 170487289, upload-time = "2025-10-13T16:38:11.662Z" }, + { url = "https://files.pythonhosted.org/packages/b8/1d/38258f05010ac17a7b058c022911c9cae6526e149b7397134a048cf5a6c2/triton-3.5.0-cp313-cp313t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:03127d9b33aaf979c856676b394bc059ec1d68cb6da68ae03f62dd8ad77a04ae", size = 160073012, upload-time = "2025-10-15T19:16:07.477Z" }, + { url = "https://files.pythonhosted.org/packages/5c/38/db80e48b9220c9bce872b0f616ad0446cdf554a40b85c7865cbca99ab3c2/triton-3.5.0-cp313-cp313t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c83f2343e1a220a716c7b3ab9fccfcbe3ad4020d189549200e2d2e8d5868bed9", size = 170577179, upload-time = "2025-10-13T16:38:17.865Z" }, + { url = "https://files.pythonhosted.org/packages/91/fe/8f5771d00227f4eb1ee034f218ed427102b989366d2275fe3b3c105a3921/triton-3.5.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:468936651d383f4a6d10068d34a627505e13af55be5d002b9f27b987e7a5f0ac", size = 159957460, upload-time = "2025-10-15T19:16:12.626Z" }, + { url = "https://files.pythonhosted.org/packages/ff/60/1810655d1d856c9a4fcc90ee8966d85f552d98c53a6589f95ab2cbe27bb8/triton-3.5.0-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:da0fa67ccd76c3dcfb0bffe1b1c57c685136a6bd33d141c24d9655d4185b1289", size = 170487949, upload-time = "2025-10-13T16:38:24.881Z" }, + { url = "https://files.pythonhosted.org/packages/78/59/99edd103958fe6e42b50b9ad8ce4f223ddf4ccf475259cf7d2b53381dc6c/triton-3.5.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c7ceef21410229ac23173a28eee5cfc0e37c1dfdb8b4bc11ecda2e3ecec7c686", size = 160075629, upload-time = "2025-10-15T19:16:18.746Z" }, + { url = "https://files.pythonhosted.org/packages/fb/b7/1dec8433ac604c061173d0589d99217fe7bf90a70bdc375e745d044b8aad/triton-3.5.0-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:317fe477ea8fd4524a6a8c499fb0a36984a56d0b75bf9c9cb6133a1c56d5a6e7", size = 170580176, upload-time = "2025-10-13T16:38:31.14Z" }, +] + [[package]] name = "triton" version = "3.5.1" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", ] wheels = [ { url = "https://files.pythonhosted.org/packages/d9/2e/f95e673222afa2c7f0c687d8913e98fcf2589ef0b1405de76894e37fe18f/triton-3.5.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:f63e34dcb32d7bd3a1d0195f60f30d2aee8b08a69a0424189b71017e23dfc3d2", size = 159821655, upload-time = "2025-11-11T17:51:44.09Z" }, @@ -10223,8 +12405,8 @@ name = "types-networkx" version = "3.6.1.20251220" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/07/e3/dcc20d645dc0631b0df263959b8dde49dc47ad3c0537d8958bfefe692380/types_networkx-3.6.1.20251220.tar.gz", hash = "sha256:caf95e0d7777b969e50ceeb2c430d9d4dfe6b7bdee43c42dc9879a2d4408a790", size = 73500, upload-time = "2025-12-20T03:07:47.933Z" } wheels = [ @@ -10368,8 +12550,8 @@ name = "types-tensorflow" version = "2.18.0.20251008" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and extra != 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "types-protobuf" }, { name = "types-requests" }, ] @@ -10554,13 +12736,68 @@ source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "click" }, { name = "h11" }, - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/cb/ce/f06b84e2697fef4688ca63bdb2fdf113ca0a3be33f94488f2cadb690b0cf/uvicorn-0.38.0.tar.gz", hash = "sha256:fd97093bdd120a2609fc0d3afe931d4d4ad688b6e75f0f929fde1bc36fe0e91d", size = 80605, upload-time = "2025-10-18T13:46:44.63Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/ee/d9/d88e73ca598f4f6ff671fb5fde8a32925c2e08a637303a1d12883c7305fa/uvicorn-0.38.0-py3-none-any.whl", hash = "sha256:48c0afd214ceb59340075b4a052ea1ee91c16fbc2a9b1469cca0e54566977b02", size = 68109, upload-time = "2025-10-18T13:46:42.958Z" }, ] +[package.optional-dependencies] +standard = [ + { name = "colorama", marker = "sys_platform == 'win32'" }, + { name = "httptools" }, + { name = "python-dotenv" }, + { name = "pyyaml" }, + { name = "uvloop", marker = "platform_python_implementation != 'PyPy' and sys_platform != 'cygwin' and sys_platform != 'win32'" }, + { name = "watchfiles" }, + { name = "websockets" }, +] + +[[package]] +name = "uvloop" +version = "0.22.1" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/06/f0/18d39dbd1971d6d62c4629cc7fa67f74821b0dc1f5a77af43719de7936a7/uvloop-0.22.1.tar.gz", hash = "sha256:6c84bae345b9147082b17371e3dd5d42775bddce91f885499017f4607fdaf39f", size = 2443250, upload-time = "2025-10-16T22:17:19.342Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/eb/14/ecceb239b65adaaf7fde510aa8bd534075695d1e5f8dadfa32b5723d9cfb/uvloop-0.22.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:ef6f0d4cc8a9fa1f6a910230cd53545d9a14479311e87e3cb225495952eb672c", size = 1343335, upload-time = "2025-10-16T22:16:11.43Z" }, + { url = "https://files.pythonhosted.org/packages/ba/ae/6f6f9af7f590b319c94532b9567409ba11f4fa71af1148cab1bf48a07048/uvloop-0.22.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7cd375a12b71d33d46af85a3343b35d98e8116134ba404bd657b3b1d15988792", size = 742903, upload-time = "2025-10-16T22:16:12.979Z" }, + { url = "https://files.pythonhosted.org/packages/09/bd/3667151ad0702282a1f4d5d29288fce8a13c8b6858bf0978c219cd52b231/uvloop-0.22.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:ac33ed96229b7790eb729702751c0e93ac5bc3bcf52ae9eccbff30da09194b86", size = 3648499, upload-time = "2025-10-16T22:16:14.451Z" }, + { url = "https://files.pythonhosted.org/packages/b3/f6/21657bb3beb5f8c57ce8be3b83f653dd7933c2fd00545ed1b092d464799a/uvloop-0.22.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:481c990a7abe2c6f4fc3d98781cc9426ebd7f03a9aaa7eb03d3bfc68ac2a46bd", size = 3700133, upload-time = "2025-10-16T22:16:16.272Z" }, + { url = "https://files.pythonhosted.org/packages/09/e0/604f61d004ded805f24974c87ddd8374ef675644f476f01f1df90e4cdf72/uvloop-0.22.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a592b043a47ad17911add5fbd087c76716d7c9ccc1d64ec9249ceafd735f03c2", size = 3512681, upload-time = "2025-10-16T22:16:18.07Z" }, + { url = "https://files.pythonhosted.org/packages/bb/ce/8491fd370b0230deb5eac69c7aae35b3be527e25a911c0acdffb922dc1cd/uvloop-0.22.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:1489cf791aa7b6e8c8be1c5a080bae3a672791fcb4e9e12249b05862a2ca9cec", size = 3615261, upload-time = "2025-10-16T22:16:19.596Z" }, + { url = "https://files.pythonhosted.org/packages/c7/d5/69900f7883235562f1f50d8184bb7dd84a2fb61e9ec63f3782546fdbd057/uvloop-0.22.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:c60ebcd36f7b240b30788554b6f0782454826a0ed765d8430652621b5de674b9", size = 1352420, upload-time = "2025-10-16T22:16:21.187Z" }, + { url = "https://files.pythonhosted.org/packages/a8/73/c4e271b3bce59724e291465cc936c37758886a4868787da0278b3b56b905/uvloop-0.22.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3b7f102bf3cb1995cfeaee9321105e8f5da76fdb104cdad8986f85461a1b7b77", size = 748677, upload-time = "2025-10-16T22:16:22.558Z" }, + { url = "https://files.pythonhosted.org/packages/86/94/9fb7fad2f824d25f8ecac0d70b94d0d48107ad5ece03769a9c543444f78a/uvloop-0.22.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:53c85520781d84a4b8b230e24a5af5b0778efdb39142b424990ff1ef7c48ba21", size = 3753819, upload-time = "2025-10-16T22:16:23.903Z" }, + { url = "https://files.pythonhosted.org/packages/74/4f/256aca690709e9b008b7108bc85fba619a2bc37c6d80743d18abad16ee09/uvloop-0.22.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:56a2d1fae65fd82197cb8c53c367310b3eabe1bbb9fb5a04d28e3e3520e4f702", size = 3804529, upload-time = "2025-10-16T22:16:25.246Z" }, + { url = "https://files.pythonhosted.org/packages/7f/74/03c05ae4737e871923d21a76fe28b6aad57f5c03b6e6bfcfa5ad616013e4/uvloop-0.22.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:40631b049d5972c6755b06d0bfe8233b1bd9a8a6392d9d1c45c10b6f9e9b2733", size = 3621267, upload-time = "2025-10-16T22:16:26.819Z" }, + { url = "https://files.pythonhosted.org/packages/75/be/f8e590fe61d18b4a92070905497aec4c0e64ae1761498cad09023f3f4b3e/uvloop-0.22.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:535cc37b3a04f6cd2c1ef65fa1d370c9a35b6695df735fcff5427323f2cd5473", size = 3723105, upload-time = "2025-10-16T22:16:28.252Z" }, + { url = "https://files.pythonhosted.org/packages/3d/ff/7f72e8170be527b4977b033239a83a68d5c881cc4775fca255c677f7ac5d/uvloop-0.22.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:fe94b4564e865d968414598eea1a6de60adba0c040ba4ed05ac1300de402cd42", size = 1359936, upload-time = "2025-10-16T22:16:29.436Z" }, + { url = "https://files.pythonhosted.org/packages/c3/c6/e5d433f88fd54d81ef4be58b2b7b0cea13c442454a1db703a1eea0db1a59/uvloop-0.22.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:51eb9bd88391483410daad430813d982010f9c9c89512321f5b60e2cddbdddd6", size = 752769, upload-time = "2025-10-16T22:16:30.493Z" }, + { url = "https://files.pythonhosted.org/packages/24/68/a6ac446820273e71aa762fa21cdcc09861edd3536ff47c5cd3b7afb10eeb/uvloop-0.22.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:700e674a166ca5778255e0e1dc4e9d79ab2acc57b9171b79e65feba7184b3370", size = 4317413, upload-time = "2025-10-16T22:16:31.644Z" }, + { url = "https://files.pythonhosted.org/packages/5f/6f/e62b4dfc7ad6518e7eff2516f680d02a0f6eb62c0c212e152ca708a0085e/uvloop-0.22.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:7b5b1ac819a3f946d3b2ee07f09149578ae76066d70b44df3fa990add49a82e4", size = 4426307, upload-time = "2025-10-16T22:16:32.917Z" }, + { url = "https://files.pythonhosted.org/packages/90/60/97362554ac21e20e81bcef1150cb2a7e4ffdaf8ea1e5b2e8bf7a053caa18/uvloop-0.22.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:e047cc068570bac9866237739607d1313b9253c3051ad84738cbb095be0537b2", size = 4131970, upload-time = "2025-10-16T22:16:34.015Z" }, + { url = "https://files.pythonhosted.org/packages/99/39/6b3f7d234ba3964c428a6e40006340f53ba37993f46ed6e111c6e9141d18/uvloop-0.22.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:512fec6815e2dd45161054592441ef76c830eddaad55c8aa30952e6fe1ed07c0", size = 4296343, upload-time = "2025-10-16T22:16:35.149Z" }, + { url = "https://files.pythonhosted.org/packages/89/8c/182a2a593195bfd39842ea68ebc084e20c850806117213f5a299dfc513d9/uvloop-0.22.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:561577354eb94200d75aca23fbde86ee11be36b00e52a4eaf8f50fb0c86b7705", size = 1358611, upload-time = "2025-10-16T22:16:36.833Z" }, + { url = "https://files.pythonhosted.org/packages/d2/14/e301ee96a6dc95224b6f1162cd3312f6d1217be3907b79173b06785f2fe7/uvloop-0.22.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1cdf5192ab3e674ca26da2eada35b288d2fa49fdd0f357a19f0e7c4e7d5077c8", size = 751811, upload-time = "2025-10-16T22:16:38.275Z" }, + { url = "https://files.pythonhosted.org/packages/b7/02/654426ce265ac19e2980bfd9ea6590ca96a56f10c76e63801a2df01c0486/uvloop-0.22.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6e2ea3d6190a2968f4a14a23019d3b16870dd2190cd69c8180f7c632d21de68d", size = 4288562, upload-time = "2025-10-16T22:16:39.375Z" }, + { url = "https://files.pythonhosted.org/packages/15/c0/0be24758891ef825f2065cd5db8741aaddabe3e248ee6acc5e8a80f04005/uvloop-0.22.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:0530a5fbad9c9e4ee3f2b33b148c6a64d47bbad8000ea63704fa8260f4cf728e", size = 4366890, upload-time = "2025-10-16T22:16:40.547Z" }, + { url = "https://files.pythonhosted.org/packages/d2/53/8369e5219a5855869bcee5f4d317f6da0e2c669aecf0ef7d371e3d084449/uvloop-0.22.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:bc5ef13bbc10b5335792360623cc378d52d7e62c2de64660616478c32cd0598e", size = 4119472, upload-time = "2025-10-16T22:16:41.694Z" }, + { url = "https://files.pythonhosted.org/packages/f8/ba/d69adbe699b768f6b29a5eec7b47dd610bd17a69de51b251126a801369ea/uvloop-0.22.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:1f38ec5e3f18c8a10ded09742f7fb8de0108796eb673f30ce7762ce1b8550cad", size = 4239051, upload-time = "2025-10-16T22:16:43.224Z" }, + { url = "https://files.pythonhosted.org/packages/90/cd/b62bdeaa429758aee8de8b00ac0dd26593a9de93d302bff3d21439e9791d/uvloop-0.22.1-cp314-cp314-macosx_10_13_universal2.whl", hash = "sha256:3879b88423ec7e97cd4eba2a443aa26ed4e59b45e6b76aabf13fe2f27023a142", size = 1362067, upload-time = "2025-10-16T22:16:44.503Z" }, + { url = "https://files.pythonhosted.org/packages/0d/f8/a132124dfda0777e489ca86732e85e69afcd1ff7686647000050ba670689/uvloop-0.22.1-cp314-cp314-macosx_10_13_x86_64.whl", hash = "sha256:4baa86acedf1d62115c1dc6ad1e17134476688f08c6efd8a2ab076e815665c74", size = 752423, upload-time = "2025-10-16T22:16:45.968Z" }, + { url = "https://files.pythonhosted.org/packages/a3/94/94af78c156f88da4b3a733773ad5ba0b164393e357cc4bd0ab2e2677a7d6/uvloop-0.22.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:297c27d8003520596236bdb2335e6b3f649480bd09e00d1e3a99144b691d2a35", size = 4272437, upload-time = "2025-10-16T22:16:47.451Z" }, + { url = "https://files.pythonhosted.org/packages/b5/35/60249e9fd07b32c665192cec7af29e06c7cd96fa1d08b84f012a56a0b38e/uvloop-0.22.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:c1955d5a1dd43198244d47664a5858082a3239766a839b2102a269aaff7a4e25", size = 4292101, upload-time = "2025-10-16T22:16:49.318Z" }, + { url = "https://files.pythonhosted.org/packages/02/62/67d382dfcb25d0a98ce73c11ed1a6fba5037a1a1d533dcbb7cab033a2636/uvloop-0.22.1-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:b31dc2fccbd42adc73bc4e7cdbae4fc5086cf378979e53ca5d0301838c5682c6", size = 4114158, upload-time = "2025-10-16T22:16:50.517Z" }, + { url = "https://files.pythonhosted.org/packages/f0/7a/f1171b4a882a5d13c8b7576f348acfe6074d72eaf52cccef752f748d4a9f/uvloop-0.22.1-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:93f617675b2d03af4e72a5333ef89450dfaa5321303ede6e67ba9c9d26878079", size = 4177360, upload-time = "2025-10-16T22:16:52.646Z" }, + { url = "https://files.pythonhosted.org/packages/79/7b/b01414f31546caf0919da80ad57cbfe24c56b151d12af68cee1b04922ca8/uvloop-0.22.1-cp314-cp314t-macosx_10_13_universal2.whl", hash = "sha256:37554f70528f60cad66945b885eb01f1bb514f132d92b6eeed1c90fd54ed6289", size = 1454790, upload-time = "2025-10-16T22:16:54.355Z" }, + { url = "https://files.pythonhosted.org/packages/d4/31/0bb232318dd838cad3fa8fb0c68c8b40e1145b32025581975e18b11fab40/uvloop-0.22.1-cp314-cp314t-macosx_10_13_x86_64.whl", hash = "sha256:b76324e2dc033a0b2f435f33eb88ff9913c156ef78e153fb210e03c13da746b3", size = 796783, upload-time = "2025-10-16T22:16:55.906Z" }, + { url = "https://files.pythonhosted.org/packages/42/38/c9b09f3271a7a723a5de69f8e237ab8e7803183131bc57c890db0b6bb872/uvloop-0.22.1-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:badb4d8e58ee08dad957002027830d5c3b06aea446a6a3744483c2b3b745345c", size = 4647548, upload-time = "2025-10-16T22:16:57.008Z" }, + { url = "https://files.pythonhosted.org/packages/c1/37/945b4ca0ac27e3dc4952642d4c900edd030b3da6c9634875af6e13ae80e5/uvloop-0.22.1-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:b91328c72635f6f9e0282e4a57da7470c7350ab1c9f48546c0f2866205349d21", size = 4467065, upload-time = "2025-10-16T22:16:58.206Z" }, + { url = "https://files.pythonhosted.org/packages/97/cc/48d232f33d60e2e2e0b42f4e73455b146b76ebe216487e862700457fbf3c/uvloop-0.22.1-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:daf620c2995d193449393d6c62131b3fbd40a63bf7b307a1527856ace637fe88", size = 4328384, upload-time = "2025-10-16T22:16:59.36Z" }, + { url = "https://files.pythonhosted.org/packages/e4/16/c1fd27e9549f3c4baf1dc9c20c456cd2f822dbf8de9f463824b0c0357e06/uvloop-0.22.1-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:6cde23eeda1a25c75b2e07d39970f3374105d5eafbaab2a4482be82f272d5a5e", size = 4296730, upload-time = "2025-10-16T22:17:00.744Z" }, +] + [[package]] name = "validators" version = "0.35.0" @@ -10590,13 +12827,85 @@ dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, - { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "typing-extensions", marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/20/28/e6f1a6f655d620846bd9df527390ecc26b3805a0c5989048c210e22c5ca9/virtualenv-20.35.4.tar.gz", hash = "sha256:643d3914d73d3eeb0c552cbb12d7e82adf0e504dbf86a3182f8771a153a1971c", size = 6028799, upload-time = "2025-10-29T06:57:40.511Z" } wheels = [ { url = "https://files.pythonhosted.org/packages/79/0c/c05523fa3181fdf0c9c52a6ba91a23fbf3246cc095f26f6516f9c60e6771/virtualenv-20.35.4-py3-none-any.whl", hash = "sha256:c21c9cede36c9753eeade68ba7d523529f228a403463376cf821eaae2b650f1b", size = 6005095, upload-time = "2025-10-29T06:57:37.598Z" }, ] +[[package]] +name = "vllm" +version = "0.13.0" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "aiohttp" }, + { name = "anthropic" }, + { name = "blake3" }, + { name = "cachetools" }, + { name = "cbor2" }, + { name = "cloudpickle" }, + { name = "compressed-tensors" }, + { name = "depyf" }, + { name = "diskcache" }, + { name = "einops" }, + { name = "fastapi", extra = ["standard"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "filelock" }, + { name = "flashinfer-python" }, + { name = "gguf" }, + { name = "ijson" }, + { name = "lark" }, + { name = "llguidance", marker = "platform_machine == 'aarch64' or platform_machine == 'arm64' or platform_machine == 'ppc64le' or platform_machine == 's390x' or platform_machine == 'x86_64'" }, + { name = "lm-format-enforcer" }, + { name = "mcp" }, + { name = "mistral-common", extra = ["image"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "model-hosting-container-standards" }, + { name = "msgspec" }, + { name = "ninja" }, + { name = "numba" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "openai" }, + { name = "openai-harmony" }, + { name = "opencv-python-headless", version = "4.12.0.88", source = { registry = "https://pypi.org/simple" } }, + { name = "outlines-core" }, + { name = "partial-json-parser" }, + { name = "pillow" }, + { name = "prometheus-client" }, + { name = "prometheus-fastapi-instrumentator" }, + { name = "protobuf" }, + { name = "psutil" }, + { name = "py-cpuinfo" }, + { name = "pybase64" }, + { name = "pydantic" }, + { name = "python-json-logger" }, + { name = "pyyaml" }, + { name = "pyzmq" }, + { name = "ray", extra = ["cgraph"], marker = "(extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "regex" }, + { name = "requests" }, + { name = "scipy", version = "1.15.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "scipy", version = "1.16.3", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "sentencepiece" }, + { name = "setproctitle" }, + { name = "setuptools", marker = "python_full_version >= '3.12'" }, + { name = "six", marker = "python_full_version >= '3.12'" }, + { name = "tiktoken" }, + { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" } }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" } }, + { name = "torchaudio" }, + { name = "torchvision", version = "0.24.0", source = { registry = "https://pypi.org/simple" } }, + { name = "tqdm" }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" } }, + { name = "typing-extensions" }, + { name = "watchfiles" }, + { name = "xgrammar", marker = "platform_machine == 'aarch64' or platform_machine == 'arm64' or platform_machine == 'ppc64le' or platform_machine == 's390x' or platform_machine == 'x86_64'" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/11/12/b922f96778d07df1c28dfa9a81fbc9706c13c5d0a4e8d154060818a79705/vllm-0.13.0.tar.gz", hash = "sha256:4ad43db45fef37114b550d03a4f423fb3fa3a31d8bc09ee810ef8b9cdcd4b5fe", size = 17828199, upload-time = "2025-12-19T03:30:32.741Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/42/82/e6194ac86862c50e9ff3f58ab3eb63d71604f96723bead2fcc610821197f/vllm-0.13.0-cp38-abi3-manylinux_2_31_aarch64.whl", hash = "sha256:464b722c5c5d67a39593ada4a228f7558e860a732cb74a3bfa61c1b442b57581", size = 442031402, upload-time = "2025-12-19T03:31:07.026Z" }, + { url = "https://files.pythonhosted.org/packages/46/ae/36f87f514811c1389ff1a16e4e5b0b55f25ce782eb0eff2d7eaa92ff7deb/vllm-0.13.0-cp38-abi3-manylinux_2_31_x86_64.whl", hash = "sha256:12b3d0a3b91c32a0091349de64b464f1c3d499a5b3a5d0ec387fef94ed5df6ee", size = 474942618, upload-time = "2025-12-19T03:31:35.593Z" }, +] + [[package]] name = "volcengine-python-sdk" version = "3.0.2" @@ -10625,15 +12934,15 @@ dependencies = [ { name = "aiohttp" }, { name = "aiolimiter" }, { name = "langchain-text-splitters" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (python_full_version < '3.14' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and python_full_version < '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "pillow" }, { name = "pydantic" }, { name = "requests" }, { name = "tenacity" }, - { name = "tokenizers", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm')" }, - { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec')" }, + { name = "tokenizers", version = "0.19.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llm2vec' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.21.4", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-llama-embed-nemotron' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm')" }, + { name = "tokenizers", version = "0.22.1", source = { registry = "https://pypi.org/simple" }, marker = "extra == 'extra-4-mteb-blip2' or extra == 'extra-4-mteb-colpali-engine' or extra == 'extra-4-mteb-colqwen3' or extra == 'extra-4-mteb-jina-v4' or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/51/9b/e40f90793c1d03610b6109852791f752fcb257989a96701258278f874e00/voyageai-0.3.5.tar.gz", hash = "sha256:963e0d71611af529fa0e496db232a4f660b5f73bce7af1ab288a7f59df7512da", size = 20414, upload-time = "2025-09-11T00:28:26.29Z" } wheels = [ @@ -10645,8 +12954,8 @@ name = "voyager" version = "2.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, ] wheels = [ { url = "https://files.pythonhosted.org/packages/f7/64/80a925f5c2ee746e5308ad75012cf08fc8ef898c42175be2dc4c2267b637/voyager-2.1.0-cp310-cp310-macosx_10_13_universal2.whl", hash = "sha256:c70aa494c86a3fca738c7608234b5b894fc866ff911040183bfa2cc9db732b18", size = 693980, upload-time = "2024-12-13T19:50:31.035Z" }, @@ -10757,6 +13066,109 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/33/e8/e40370e6d74ddba47f002a32919d91310d6074130fe4e17dabcafc15cbf1/watchdog-6.0.0-py3-none-win_ia64.whl", hash = "sha256:a1914259fa9e1454315171103c6a30961236f508b9b623eae470268bbcc6a22f", size = 79067, upload-time = "2024-11-01T14:07:11.845Z" }, ] +[[package]] +name = "watchfiles" +version = "1.1.1" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "anyio" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/c2/c9/8869df9b2a2d6c59d79220a4db37679e74f807c559ffe5265e08b227a210/watchfiles-1.1.1.tar.gz", hash = "sha256:a173cb5c16c4f40ab19cecf48a534c409f7ea983ab8fed0741304a1c0a31b3f2", size = 94440, upload-time = "2025-10-14T15:06:21.08Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/a7/1a/206e8cf2dd86fddf939165a57b4df61607a1e0add2785f170a3f616b7d9f/watchfiles-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:eef58232d32daf2ac67f42dea51a2c80f0d03379075d44a587051e63cc2e368c", size = 407318, upload-time = "2025-10-14T15:04:18.753Z" }, + { url = "https://files.pythonhosted.org/packages/b3/0f/abaf5262b9c496b5dad4ed3c0e799cbecb1f8ea512ecb6ddd46646a9fca3/watchfiles-1.1.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:03fa0f5237118a0c5e496185cafa92878568b652a2e9a9382a5151b1a0380a43", size = 394478, upload-time = "2025-10-14T15:04:20.297Z" }, + { url = "https://files.pythonhosted.org/packages/b1/04/9cc0ba88697b34b755371f5ace8d3a4d9a15719c07bdc7bd13d7d8c6a341/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8ca65483439f9c791897f7db49202301deb6e15fe9f8fe2fed555bf986d10c31", size = 449894, upload-time = "2025-10-14T15:04:21.527Z" }, + { url = "https://files.pythonhosted.org/packages/d2/9c/eda4615863cd8621e89aed4df680d8c3ec3da6a4cf1da113c17decd87c7f/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f0ab1c1af0cb38e3f598244c17919fb1a84d1629cc08355b0074b6d7f53138ac", size = 459065, upload-time = "2025-10-14T15:04:22.795Z" }, + { url = "https://files.pythonhosted.org/packages/84/13/f28b3f340157d03cbc8197629bc109d1098764abe1e60874622a0be5c112/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3bc570d6c01c206c46deb6e935a260be44f186a2f05179f52f7fcd2be086a94d", size = 488377, upload-time = "2025-10-14T15:04:24.138Z" }, + { url = "https://files.pythonhosted.org/packages/86/93/cfa597fa9389e122488f7ffdbd6db505b3b915ca7435ecd7542e855898c2/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e84087b432b6ac94778de547e08611266f1f8ffad28c0ee4c82e028b0fc5966d", size = 595837, upload-time = "2025-10-14T15:04:25.057Z" }, + { url = "https://files.pythonhosted.org/packages/57/1e/68c1ed5652b48d89fc24d6af905d88ee4f82fa8bc491e2666004e307ded1/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:620bae625f4cb18427b1bb1a2d9426dc0dd5a5ba74c7c2cdb9de405f7b129863", size = 473456, upload-time = "2025-10-14T15:04:26.497Z" }, + { url = "https://files.pythonhosted.org/packages/d5/dc/1a680b7458ffa3b14bb64878112aefc8f2e4f73c5af763cbf0bd43100658/watchfiles-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:544364b2b51a9b0c7000a4b4b02f90e9423d97fbbf7e06689236443ebcad81ab", size = 455614, upload-time = "2025-10-14T15:04:27.539Z" }, + { url = "https://files.pythonhosted.org/packages/61/a5/3d782a666512e01eaa6541a72ebac1d3aae191ff4a31274a66b8dd85760c/watchfiles-1.1.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:bbe1ef33d45bc71cf21364df962af171f96ecaeca06bd9e3d0b583efb12aec82", size = 630690, upload-time = "2025-10-14T15:04:28.495Z" }, + { url = "https://files.pythonhosted.org/packages/9b/73/bb5f38590e34687b2a9c47a244aa4dd50c56a825969c92c9c5fc7387cea1/watchfiles-1.1.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:1a0bb430adb19ef49389e1ad368450193a90038b5b752f4ac089ec6942c4dff4", size = 622459, upload-time = "2025-10-14T15:04:29.491Z" }, + { url = "https://files.pythonhosted.org/packages/f1/ac/c9bb0ec696e07a20bd58af5399aeadaef195fb2c73d26baf55180fe4a942/watchfiles-1.1.1-cp310-cp310-win32.whl", hash = "sha256:3f6d37644155fb5beca5378feb8c1708d5783145f2a0f1c4d5a061a210254844", size = 272663, upload-time = "2025-10-14T15:04:30.435Z" }, + { url = "https://files.pythonhosted.org/packages/11/a0/a60c5a7c2ec59fa062d9a9c61d02e3b6abd94d32aac2d8344c4bdd033326/watchfiles-1.1.1-cp310-cp310-win_amd64.whl", hash = "sha256:a36d8efe0f290835fd0f33da35042a1bb5dc0e83cbc092dcf69bce442579e88e", size = 287453, upload-time = "2025-10-14T15:04:31.53Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f8/2c5f479fb531ce2f0564eda479faecf253d886b1ab3630a39b7bf7362d46/watchfiles-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:f57b396167a2565a4e8b5e56a5a1c537571733992b226f4f1197d79e94cf0ae5", size = 406529, upload-time = "2025-10-14T15:04:32.899Z" }, + { url = "https://files.pythonhosted.org/packages/fe/cd/f515660b1f32f65df671ddf6f85bfaca621aee177712874dc30a97397977/watchfiles-1.1.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:421e29339983e1bebc281fab40d812742268ad057db4aee8c4d2bce0af43b741", size = 394384, upload-time = "2025-10-14T15:04:33.761Z" }, + { url = "https://files.pythonhosted.org/packages/7b/c3/28b7dc99733eab43fca2d10f55c86e03bd6ab11ca31b802abac26b23d161/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6e43d39a741e972bab5d8100b5cdacf69db64e34eb19b6e9af162bccf63c5cc6", size = 448789, upload-time = "2025-10-14T15:04:34.679Z" }, + { url = "https://files.pythonhosted.org/packages/4a/24/33e71113b320030011c8e4316ccca04194bf0cbbaeee207f00cbc7d6b9f5/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f537afb3276d12814082a2e9b242bdcf416c2e8fd9f799a737990a1dbe906e5b", size = 460521, upload-time = "2025-10-14T15:04:35.963Z" }, + { url = "https://files.pythonhosted.org/packages/f4/c3/3c9a55f255aa57b91579ae9e98c88704955fa9dac3e5614fb378291155df/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2cd9e04277e756a2e2d2543d65d1e2166d6fd4c9b183f8808634fda23f17b14", size = 488722, upload-time = "2025-10-14T15:04:37.091Z" }, + { url = "https://files.pythonhosted.org/packages/49/36/506447b73eb46c120169dc1717fe2eff07c234bb3232a7200b5f5bd816e9/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5f3f58818dc0b07f7d9aa7fe9eb1037aecb9700e63e1f6acfed13e9fef648f5d", size = 596088, upload-time = "2025-10-14T15:04:38.39Z" }, + { url = "https://files.pythonhosted.org/packages/82/ab/5f39e752a9838ec4d52e9b87c1e80f1ee3ccdbe92e183c15b6577ab9de16/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bb9f66367023ae783551042d31b1d7fd422e8289eedd91f26754a66f44d5cff", size = 472923, upload-time = "2025-10-14T15:04:39.666Z" }, + { url = "https://files.pythonhosted.org/packages/af/b9/a419292f05e302dea372fa7e6fda5178a92998411f8581b9830d28fb9edb/watchfiles-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aebfd0861a83e6c3d1110b78ad54704486555246e542be3e2bb94195eabb2606", size = 456080, upload-time = "2025-10-14T15:04:40.643Z" }, + { url = "https://files.pythonhosted.org/packages/b0/c3/d5932fd62bde1a30c36e10c409dc5d54506726f08cb3e1d8d0ba5e2bc8db/watchfiles-1.1.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:5fac835b4ab3c6487b5dbad78c4b3724e26bcc468e886f8ba8cc4306f68f6701", size = 629432, upload-time = "2025-10-14T15:04:41.789Z" }, + { url = "https://files.pythonhosted.org/packages/f7/77/16bddd9779fafb795f1a94319dc965209c5641db5bf1edbbccace6d1b3c0/watchfiles-1.1.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:399600947b170270e80134ac854e21b3ccdefa11a9529a3decc1327088180f10", size = 623046, upload-time = "2025-10-14T15:04:42.718Z" }, + { url = "https://files.pythonhosted.org/packages/46/ef/f2ecb9a0f342b4bfad13a2787155c6ee7ce792140eac63a34676a2feeef2/watchfiles-1.1.1-cp311-cp311-win32.whl", hash = "sha256:de6da501c883f58ad50db3a32ad397b09ad29865b5f26f64c24d3e3281685849", size = 271473, upload-time = "2025-10-14T15:04:43.624Z" }, + { url = "https://files.pythonhosted.org/packages/94/bc/f42d71125f19731ea435c3948cad148d31a64fccde3867e5ba4edee901f9/watchfiles-1.1.1-cp311-cp311-win_amd64.whl", hash = "sha256:35c53bd62a0b885bf653ebf6b700d1bf05debb78ad9292cf2a942b23513dc4c4", size = 287598, upload-time = "2025-10-14T15:04:44.516Z" }, + { url = "https://files.pythonhosted.org/packages/57/c9/a30f897351f95bbbfb6abcadafbaca711ce1162f4db95fc908c98a9165f3/watchfiles-1.1.1-cp311-cp311-win_arm64.whl", hash = "sha256:57ca5281a8b5e27593cb7d82c2ac927ad88a96ed406aa446f6344e4328208e9e", size = 277210, upload-time = "2025-10-14T15:04:45.883Z" }, + { url = "https://files.pythonhosted.org/packages/74/d5/f039e7e3c639d9b1d09b07ea412a6806d38123f0508e5f9b48a87b0a76cc/watchfiles-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:8c89f9f2f740a6b7dcc753140dd5e1ab9215966f7a3530d0c0705c83b401bd7d", size = 404745, upload-time = "2025-10-14T15:04:46.731Z" }, + { url = "https://files.pythonhosted.org/packages/a5/96/a881a13aa1349827490dab2d363c8039527060cfcc2c92cc6d13d1b1049e/watchfiles-1.1.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bd404be08018c37350f0d6e34676bd1e2889990117a2b90070b3007f172d0610", size = 391769, upload-time = "2025-10-14T15:04:48.003Z" }, + { url = "https://files.pythonhosted.org/packages/4b/5b/d3b460364aeb8da471c1989238ea0e56bec24b6042a68046adf3d9ddb01c/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8526e8f916bb5b9a0a777c8317c23ce65de259422bba5b31325a6fa6029d33af", size = 449374, upload-time = "2025-10-14T15:04:49.179Z" }, + { url = "https://files.pythonhosted.org/packages/b9/44/5769cb62d4ed055cb17417c0a109a92f007114a4e07f30812a73a4efdb11/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2edc3553362b1c38d9f06242416a5d8e9fe235c204a4072e988ce2e5bb1f69f6", size = 459485, upload-time = "2025-10-14T15:04:50.155Z" }, + { url = "https://files.pythonhosted.org/packages/19/0c/286b6301ded2eccd4ffd0041a1b726afda999926cf720aab63adb68a1e36/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:30f7da3fb3f2844259cba4720c3fc7138eb0f7b659c38f3bfa65084c7fc7abce", size = 488813, upload-time = "2025-10-14T15:04:51.059Z" }, + { url = "https://files.pythonhosted.org/packages/c7/2b/8530ed41112dd4a22f4dcfdb5ccf6a1baad1ff6eed8dc5a5f09e7e8c41c7/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f8979280bdafff686ba5e4d8f97840f929a87ed9cdf133cbbd42f7766774d2aa", size = 594816, upload-time = "2025-10-14T15:04:52.031Z" }, + { url = "https://files.pythonhosted.org/packages/ce/d2/f5f9fb49489f184f18470d4f99f4e862a4b3e9ac2865688eb2099e3d837a/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dcc5c24523771db3a294c77d94771abcfcb82a0e0ee8efd910c37c59ec1b31bb", size = 475186, upload-time = "2025-10-14T15:04:53.064Z" }, + { url = "https://files.pythonhosted.org/packages/cf/68/5707da262a119fb06fbe214d82dd1fe4a6f4af32d2d14de368d0349eb52a/watchfiles-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db5d7ae38ff20153d542460752ff397fcf5c96090c1230803713cf3147a6803", size = 456812, upload-time = "2025-10-14T15:04:55.174Z" }, + { url = "https://files.pythonhosted.org/packages/66/ab/3cbb8756323e8f9b6f9acb9ef4ec26d42b2109bce830cc1f3468df20511d/watchfiles-1.1.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:28475ddbde92df1874b6c5c8aaeb24ad5be47a11f87cde5a28ef3835932e3e94", size = 630196, upload-time = "2025-10-14T15:04:56.22Z" }, + { url = "https://files.pythonhosted.org/packages/78/46/7152ec29b8335f80167928944a94955015a345440f524d2dfe63fc2f437b/watchfiles-1.1.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:36193ed342f5b9842edd3532729a2ad55c4160ffcfa3700e0d54be496b70dd43", size = 622657, upload-time = "2025-10-14T15:04:57.521Z" }, + { url = "https://files.pythonhosted.org/packages/0a/bf/95895e78dd75efe9a7f31733607f384b42eb5feb54bd2eb6ed57cc2e94f4/watchfiles-1.1.1-cp312-cp312-win32.whl", hash = "sha256:859e43a1951717cc8de7f4c77674a6d389b106361585951d9e69572823f311d9", size = 272042, upload-time = "2025-10-14T15:04:59.046Z" }, + { url = "https://files.pythonhosted.org/packages/87/0a/90eb755f568de2688cb220171c4191df932232c20946966c27a59c400850/watchfiles-1.1.1-cp312-cp312-win_amd64.whl", hash = "sha256:91d4c9a823a8c987cce8fa2690923b069966dabb196dd8d137ea2cede885fde9", size = 288410, upload-time = "2025-10-14T15:05:00.081Z" }, + { url = "https://files.pythonhosted.org/packages/36/76/f322701530586922fbd6723c4f91ace21364924822a8772c549483abed13/watchfiles-1.1.1-cp312-cp312-win_arm64.whl", hash = "sha256:a625815d4a2bdca61953dbba5a39d60164451ef34c88d751f6c368c3ea73d404", size = 278209, upload-time = "2025-10-14T15:05:01.168Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/f750b29225fe77139f7ae5de89d4949f5a99f934c65a1f1c0b248f26f747/watchfiles-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:130e4876309e8686a5e37dba7d5e9bc77e6ed908266996ca26572437a5271e18", size = 404321, upload-time = "2025-10-14T15:05:02.063Z" }, + { url = "https://files.pythonhosted.org/packages/2b/f9/f07a295cde762644aa4c4bb0f88921d2d141af45e735b965fb2e87858328/watchfiles-1.1.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:5f3bde70f157f84ece3765b42b4a52c6ac1a50334903c6eaf765362f6ccca88a", size = 391783, upload-time = "2025-10-14T15:05:03.052Z" }, + { url = "https://files.pythonhosted.org/packages/bc/11/fc2502457e0bea39a5c958d86d2cb69e407a4d00b85735ca724bfa6e0d1a/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:14e0b1fe858430fc0251737ef3824c54027bedb8c37c38114488b8e131cf8219", size = 449279, upload-time = "2025-10-14T15:05:04.004Z" }, + { url = "https://files.pythonhosted.org/packages/e3/1f/d66bc15ea0b728df3ed96a539c777acfcad0eb78555ad9efcaa1274688f0/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f27db948078f3823a6bb3b465180db8ebecf26dd5dae6f6180bd87383b6b4428", size = 459405, upload-time = "2025-10-14T15:05:04.942Z" }, + { url = "https://files.pythonhosted.org/packages/be/90/9f4a65c0aec3ccf032703e6db02d89a157462fbb2cf20dd415128251cac0/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:059098c3a429f62fc98e8ec62b982230ef2c8df68c79e826e37b895bc359a9c0", size = 488976, upload-time = "2025-10-14T15:05:05.905Z" }, + { url = "https://files.pythonhosted.org/packages/37/57/ee347af605d867f712be7029bb94c8c071732a4b44792e3176fa3c612d39/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bfb5862016acc9b869bb57284e6cb35fdf8e22fe59f7548858e2f971d045f150", size = 595506, upload-time = "2025-10-14T15:05:06.906Z" }, + { url = "https://files.pythonhosted.org/packages/a8/78/cc5ab0b86c122047f75e8fc471c67a04dee395daf847d3e59381996c8707/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:319b27255aacd9923b8a276bb14d21a5f7ff82564c744235fc5eae58d95422ae", size = 474936, upload-time = "2025-10-14T15:05:07.906Z" }, + { url = "https://files.pythonhosted.org/packages/62/da/def65b170a3815af7bd40a3e7010bf6ab53089ef1b75d05dd5385b87cf08/watchfiles-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c755367e51db90e75b19454b680903631d41f9e3607fbd941d296a020c2d752d", size = 456147, upload-time = "2025-10-14T15:05:09.138Z" }, + { url = "https://files.pythonhosted.org/packages/57/99/da6573ba71166e82d288d4df0839128004c67d2778d3b566c138695f5c0b/watchfiles-1.1.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:c22c776292a23bfc7237a98f791b9ad3144b02116ff10d820829ce62dff46d0b", size = 630007, upload-time = "2025-10-14T15:05:10.117Z" }, + { url = "https://files.pythonhosted.org/packages/a8/51/7439c4dd39511368849eb1e53279cd3454b4a4dbace80bab88feeb83c6b5/watchfiles-1.1.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:3a476189be23c3686bc2f4321dd501cb329c0a0469e77b7b534ee10129ae6374", size = 622280, upload-time = "2025-10-14T15:05:11.146Z" }, + { url = "https://files.pythonhosted.org/packages/95/9c/8ed97d4bba5db6fdcdb2b298d3898f2dd5c20f6b73aee04eabe56c59677e/watchfiles-1.1.1-cp313-cp313-win32.whl", hash = "sha256:bf0a91bfb5574a2f7fc223cf95eeea79abfefa404bf1ea5e339c0c1560ae99a0", size = 272056, upload-time = "2025-10-14T15:05:12.156Z" }, + { url = "https://files.pythonhosted.org/packages/1f/f3/c14e28429f744a260d8ceae18bf58c1d5fa56b50d006a7a9f80e1882cb0d/watchfiles-1.1.1-cp313-cp313-win_amd64.whl", hash = "sha256:52e06553899e11e8074503c8e716d574adeeb7e68913115c4b3653c53f9bae42", size = 288162, upload-time = "2025-10-14T15:05:13.208Z" }, + { url = "https://files.pythonhosted.org/packages/dc/61/fe0e56c40d5cd29523e398d31153218718c5786b5e636d9ae8ae79453d27/watchfiles-1.1.1-cp313-cp313-win_arm64.whl", hash = "sha256:ac3cc5759570cd02662b15fbcd9d917f7ecd47efe0d6b40474eafd246f91ea18", size = 277909, upload-time = "2025-10-14T15:05:14.49Z" }, + { url = "https://files.pythonhosted.org/packages/79/42/e0a7d749626f1e28c7108a99fb9bf524b501bbbeb9b261ceecde644d5a07/watchfiles-1.1.1-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:563b116874a9a7ce6f96f87cd0b94f7faf92d08d0021e837796f0a14318ef8da", size = 403389, upload-time = "2025-10-14T15:05:15.777Z" }, + { url = "https://files.pythonhosted.org/packages/15/49/08732f90ce0fbbc13913f9f215c689cfc9ced345fb1bcd8829a50007cc8d/watchfiles-1.1.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3ad9fe1dae4ab4212d8c91e80b832425e24f421703b5a42ef2e4a1e215aff051", size = 389964, upload-time = "2025-10-14T15:05:16.85Z" }, + { url = "https://files.pythonhosted.org/packages/27/0d/7c315d4bd5f2538910491a0393c56bf70d333d51bc5b34bee8e68e8cea19/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce70f96a46b894b36eba678f153f052967a0d06d5b5a19b336ab0dbbd029f73e", size = 448114, upload-time = "2025-10-14T15:05:17.876Z" }, + { url = "https://files.pythonhosted.org/packages/c3/24/9e096de47a4d11bc4df41e9d1e61776393eac4cb6eb11b3e23315b78b2cc/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:cb467c999c2eff23a6417e58d75e5828716f42ed8289fe6b77a7e5a91036ca70", size = 460264, upload-time = "2025-10-14T15:05:18.962Z" }, + { url = "https://files.pythonhosted.org/packages/cc/0f/e8dea6375f1d3ba5fcb0b3583e2b493e77379834c74fd5a22d66d85d6540/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:836398932192dae4146c8f6f737d74baeac8b70ce14831a239bdb1ca882fc261", size = 487877, upload-time = "2025-10-14T15:05:20.094Z" }, + { url = "https://files.pythonhosted.org/packages/ac/5b/df24cfc6424a12deb41503b64d42fbea6b8cb357ec62ca84a5a3476f654a/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:743185e7372b7bc7c389e1badcc606931a827112fbbd37f14c537320fca08620", size = 595176, upload-time = "2025-10-14T15:05:21.134Z" }, + { url = "https://files.pythonhosted.org/packages/8f/b5/853b6757f7347de4e9b37e8cc3289283fb983cba1ab4d2d7144694871d9c/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:afaeff7696e0ad9f02cbb8f56365ff4686ab205fcf9c4c5b6fdfaaa16549dd04", size = 473577, upload-time = "2025-10-14T15:05:22.306Z" }, + { url = "https://files.pythonhosted.org/packages/e1/f7/0a4467be0a56e80447c8529c9fce5b38eab4f513cb3d9bf82e7392a5696b/watchfiles-1.1.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f7eb7da0eb23aa2ba036d4f616d46906013a68caf61b7fdbe42fc8b25132e77", size = 455425, upload-time = "2025-10-14T15:05:23.348Z" }, + { url = "https://files.pythonhosted.org/packages/8e/e0/82583485ea00137ddf69bc84a2db88bd92ab4a6e3c405e5fb878ead8d0e7/watchfiles-1.1.1-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:831a62658609f0e5c64178211c942ace999517f5770fe9436be4c2faeba0c0ef", size = 628826, upload-time = "2025-10-14T15:05:24.398Z" }, + { url = "https://files.pythonhosted.org/packages/28/9a/a785356fccf9fae84c0cc90570f11702ae9571036fb25932f1242c82191c/watchfiles-1.1.1-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:f9a2ae5c91cecc9edd47e041a930490c31c3afb1f5e6d71de3dc671bfaca02bf", size = 622208, upload-time = "2025-10-14T15:05:25.45Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f4/0872229324ef69b2c3edec35e84bd57a1289e7d3fe74588048ed8947a323/watchfiles-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl", hash = "sha256:d1715143123baeeaeadec0528bb7441103979a1d5f6fd0e1f915383fea7ea6d5", size = 404315, upload-time = "2025-10-14T15:05:26.501Z" }, + { url = "https://files.pythonhosted.org/packages/7b/22/16d5331eaed1cb107b873f6ae1b69e9ced582fcf0c59a50cd84f403b1c32/watchfiles-1.1.1-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:39574d6370c4579d7f5d0ad940ce5b20db0e4117444e39b6d8f99db5676c52fd", size = 390869, upload-time = "2025-10-14T15:05:27.649Z" }, + { url = "https://files.pythonhosted.org/packages/b2/7e/5643bfff5acb6539b18483128fdc0ef2cccc94a5b8fbda130c823e8ed636/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7365b92c2e69ee952902e8f70f3ba6360d0d596d9299d55d7d386df84b6941fb", size = 449919, upload-time = "2025-10-14T15:05:28.701Z" }, + { url = "https://files.pythonhosted.org/packages/51/2e/c410993ba5025a9f9357c376f48976ef0e1b1aefb73b97a5ae01a5972755/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bfff9740c69c0e4ed32416f013f3c45e2ae42ccedd1167ef2d805c000b6c71a5", size = 460845, upload-time = "2025-10-14T15:05:30.064Z" }, + { url = "https://files.pythonhosted.org/packages/8e/a4/2df3b404469122e8680f0fcd06079317e48db58a2da2950fb45020947734/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b27cf2eb1dda37b2089e3907d8ea92922b673c0c427886d4edc6b94d8dfe5db3", size = 489027, upload-time = "2025-10-14T15:05:31.064Z" }, + { url = "https://files.pythonhosted.org/packages/ea/84/4587ba5b1f267167ee715b7f66e6382cca6938e0a4b870adad93e44747e6/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:526e86aced14a65a5b0ec50827c745597c782ff46b571dbfe46192ab9e0b3c33", size = 595615, upload-time = "2025-10-14T15:05:32.074Z" }, + { url = "https://files.pythonhosted.org/packages/6a/0f/c6988c91d06e93cd0bb3d4a808bcf32375ca1904609835c3031799e3ecae/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:04e78dd0b6352db95507fd8cb46f39d185cf8c74e4cf1e4fbad1d3df96faf510", size = 474836, upload-time = "2025-10-14T15:05:33.209Z" }, + { url = "https://files.pythonhosted.org/packages/b4/36/ded8aebea91919485b7bbabbd14f5f359326cb5ec218cd67074d1e426d74/watchfiles-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c85794a4cfa094714fb9c08d4a218375b2b95b8ed1666e8677c349906246c05", size = 455099, upload-time = "2025-10-14T15:05:34.189Z" }, + { url = "https://files.pythonhosted.org/packages/98/e0/8c9bdba88af756a2fce230dd365fab2baf927ba42cd47521ee7498fd5211/watchfiles-1.1.1-cp314-cp314-musllinux_1_1_aarch64.whl", hash = "sha256:74d5012b7630714b66be7b7b7a78855ef7ad58e8650c73afc4c076a1f480a8d6", size = 630626, upload-time = "2025-10-14T15:05:35.216Z" }, + { url = "https://files.pythonhosted.org/packages/2a/84/a95db05354bf2d19e438520d92a8ca475e578c647f78f53197f5a2f17aaf/watchfiles-1.1.1-cp314-cp314-musllinux_1_1_x86_64.whl", hash = "sha256:8fbe85cb3201c7d380d3d0b90e63d520f15d6afe217165d7f98c9c649654db81", size = 622519, upload-time = "2025-10-14T15:05:36.259Z" }, + { url = "https://files.pythonhosted.org/packages/1d/ce/d8acdc8de545de995c339be67711e474c77d643555a9bb74a9334252bd55/watchfiles-1.1.1-cp314-cp314-win32.whl", hash = "sha256:3fa0b59c92278b5a7800d3ee7733da9d096d4aabcfabb9a928918bd276ef9b9b", size = 272078, upload-time = "2025-10-14T15:05:37.63Z" }, + { url = "https://files.pythonhosted.org/packages/c4/c9/a74487f72d0451524be827e8edec251da0cc1fcf111646a511ae752e1a3d/watchfiles-1.1.1-cp314-cp314-win_amd64.whl", hash = "sha256:c2047d0b6cea13b3316bdbafbfa0c4228ae593d995030fda39089d36e64fc03a", size = 287664, upload-time = "2025-10-14T15:05:38.95Z" }, + { url = "https://files.pythonhosted.org/packages/df/b8/8ac000702cdd496cdce998c6f4ee0ca1f15977bba51bdf07d872ebdfc34c/watchfiles-1.1.1-cp314-cp314-win_arm64.whl", hash = "sha256:842178b126593addc05acf6fce960d28bc5fae7afbaa2c6c1b3a7b9460e5be02", size = 277154, upload-time = "2025-10-14T15:05:39.954Z" }, + { url = "https://files.pythonhosted.org/packages/47/a8/e3af2184707c29f0f14b1963c0aace6529f9d1b8582d5b99f31bbf42f59e/watchfiles-1.1.1-cp314-cp314t-macosx_10_12_x86_64.whl", hash = "sha256:88863fbbc1a7312972f1c511f202eb30866370ebb8493aef2812b9ff28156a21", size = 403820, upload-time = "2025-10-14T15:05:40.932Z" }, + { url = "https://files.pythonhosted.org/packages/c0/ec/e47e307c2f4bd75f9f9e8afbe3876679b18e1bcec449beca132a1c5ffb2d/watchfiles-1.1.1-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:55c7475190662e202c08c6c0f4d9e345a29367438cf8e8037f3155e10a88d5a5", size = 390510, upload-time = "2025-10-14T15:05:41.945Z" }, + { url = "https://files.pythonhosted.org/packages/d5/a0/ad235642118090f66e7b2f18fd5c42082418404a79205cdfca50b6309c13/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3f53fa183d53a1d7a8852277c92b967ae99c2d4dcee2bfacff8868e6e30b15f7", size = 448408, upload-time = "2025-10-14T15:05:43.385Z" }, + { url = "https://files.pythonhosted.org/packages/df/85/97fa10fd5ff3332ae17e7e40e20784e419e28521549780869f1413742e9d/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6aae418a8b323732fa89721d86f39ec8f092fc2af67f4217a2b07fd3e93c6101", size = 458968, upload-time = "2025-10-14T15:05:44.404Z" }, + { url = "https://files.pythonhosted.org/packages/47/c2/9059c2e8966ea5ce678166617a7f75ecba6164375f3b288e50a40dc6d489/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f096076119da54a6080e8920cbdaac3dbee667eb91dcc5e5b78840b87415bd44", size = 488096, upload-time = "2025-10-14T15:05:45.398Z" }, + { url = "https://files.pythonhosted.org/packages/94/44/d90a9ec8ac309bc26db808a13e7bfc0e4e78b6fc051078a554e132e80160/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:00485f441d183717038ed2e887a7c868154f216877653121068107b227a2f64c", size = 596040, upload-time = "2025-10-14T15:05:46.502Z" }, + { url = "https://files.pythonhosted.org/packages/95/68/4e3479b20ca305cfc561db3ed207a8a1c745ee32bf24f2026a129d0ddb6e/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a55f3e9e493158d7bfdb60a1165035f1cf7d320914e7b7ea83fe22c6023b58fc", size = 473847, upload-time = "2025-10-14T15:05:47.484Z" }, + { url = "https://files.pythonhosted.org/packages/4f/55/2af26693fd15165c4ff7857e38330e1b61ab8c37d15dc79118cdba115b7a/watchfiles-1.1.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c91ed27800188c2ae96d16e3149f199d62f86c7af5f5f4d2c61a3ed8cd3666c", size = 455072, upload-time = "2025-10-14T15:05:48.928Z" }, + { url = "https://files.pythonhosted.org/packages/66/1d/d0d200b10c9311ec25d2273f8aad8c3ef7cc7ea11808022501811208a750/watchfiles-1.1.1-cp314-cp314t-musllinux_1_1_aarch64.whl", hash = "sha256:311ff15a0bae3714ffb603e6ba6dbfba4065ab60865d15a6ec544133bdb21099", size = 629104, upload-time = "2025-10-14T15:05:49.908Z" }, + { url = "https://files.pythonhosted.org/packages/e3/bd/fa9bb053192491b3867ba07d2343d9f2252e00811567d30ae8d0f78136fe/watchfiles-1.1.1-cp314-cp314t-musllinux_1_1_x86_64.whl", hash = "sha256:a916a2932da8f8ab582f242c065f5c81bed3462849ca79ee357dd9551b0e9b01", size = 622112, upload-time = "2025-10-14T15:05:50.941Z" }, + { url = "https://files.pythonhosted.org/packages/ba/4c/a888c91e2e326872fa4705095d64acd8aa2fb9c1f7b9bd0588f33850516c/watchfiles-1.1.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:17ef139237dfced9da49fb7f2232c86ca9421f666d78c264c7ffca6601d154c3", size = 409611, upload-time = "2025-10-14T15:06:05.809Z" }, + { url = "https://files.pythonhosted.org/packages/1e/c7/5420d1943c8e3ce1a21c0a9330bcf7edafb6aa65d26b21dbb3267c9e8112/watchfiles-1.1.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:672b8adf25b1a0d35c96b5888b7b18699d27d4194bac8beeae75be4b7a3fc9b2", size = 396889, upload-time = "2025-10-14T15:06:07.035Z" }, + { url = "https://files.pythonhosted.org/packages/0c/e5/0072cef3804ce8d3aaddbfe7788aadff6b3d3f98a286fdbee9fd74ca59a7/watchfiles-1.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77a13aea58bc2b90173bc69f2a90de8e282648939a00a602e1dc4ee23e26b66d", size = 451616, upload-time = "2025-10-14T15:06:08.072Z" }, + { url = "https://files.pythonhosted.org/packages/83/4e/b87b71cbdfad81ad7e83358b3e447fedd281b880a03d64a760fe0a11fc2e/watchfiles-1.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b495de0bb386df6a12b18335a0285dda90260f51bdb505503c02bcd1ce27a8b", size = 458413, upload-time = "2025-10-14T15:06:09.209Z" }, + { url = "https://files.pythonhosted.org/packages/d3/8e/e500f8b0b77be4ff753ac94dc06b33d8f0d839377fee1b78e8c8d8f031bf/watchfiles-1.1.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl", hash = "sha256:db476ab59b6765134de1d4fe96a1a9c96ddf091683599be0f26147ea1b2e4b88", size = 408250, upload-time = "2025-10-14T15:06:10.264Z" }, + { url = "https://files.pythonhosted.org/packages/bd/95/615e72cd27b85b61eec764a5ca51bd94d40b5adea5ff47567d9ebc4d275a/watchfiles-1.1.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:89eef07eee5e9d1fda06e38822ad167a044153457e6fd997f8a858ab7564a336", size = 396117, upload-time = "2025-10-14T15:06:11.28Z" }, + { url = "https://files.pythonhosted.org/packages/c9/81/e7fe958ce8a7fb5c73cc9fb07f5aeaf755e6aa72498c57d760af760c91f8/watchfiles-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce19e06cbda693e9e7686358af9cd6f5d61312ab8b00488bc36f5aabbaf77e24", size = 450493, upload-time = "2025-10-14T15:06:12.321Z" }, + { url = "https://files.pythonhosted.org/packages/6e/d4/ed38dd3b1767193de971e694aa544356e63353c33a85d948166b5ff58b9e/watchfiles-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3e6f39af2eab0118338902798b5aa6664f46ff66bc0280de76fca67a7f262a49", size = 457546, upload-time = "2025-10-14T15:06:13.372Z" }, +] + [[package]] name = "wcwidth" version = "0.2.14" @@ -10792,8 +13204,8 @@ version = "1.0.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "braceexpand" }, - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and extra == 'extra-4-mteb-blip2') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, { name = "pyyaml" }, ] sdist = { url = "https://files.pythonhosted.org/packages/5a/3a/68800d92e065cf4750ebecf973b13979c0c929b439e1293012938862038d/webdataset-1.0.2.tar.gz", hash = "sha256:7f0498be827cfa46cc5430a58768a24e2c6a410676a61be1838f53d61afdaab4", size = 80090, upload-time = "2025-06-19T23:26:21.945Z" } @@ -10810,6 +13222,74 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774, upload-time = "2017-04-05T20:21:32.581Z" }, ] +[[package]] +name = "websockets" +version = "16.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/04/24/4b2031d72e840ce4c1ccb255f693b15c334757fc50023e4db9537080b8c4/websockets-16.0.tar.gz", hash = "sha256:5f6261a5e56e8d5c42a4497b364ea24d94d9563e8fbd44e78ac40879c60179b5", size = 179346, upload-time = "2026-01-10T09:23:47.181Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/20/74/221f58decd852f4b59cc3354cccaf87e8ef695fede361d03dc9a7396573b/websockets-16.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:04cdd5d2d1dacbad0a7bf36ccbcd3ccd5a30ee188f2560b7a62a30d14107b31a", size = 177343, upload-time = "2026-01-10T09:22:21.28Z" }, + { url = "https://files.pythonhosted.org/packages/19/0f/22ef6107ee52ab7f0b710d55d36f5a5d3ef19e8a205541a6d7ffa7994e5a/websockets-16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:8ff32bb86522a9e5e31439a58addbb0166f0204d64066fb955265c4e214160f0", size = 175021, upload-time = "2026-01-10T09:22:22.696Z" }, + { url = "https://files.pythonhosted.org/packages/10/40/904a4cb30d9b61c0e278899bf36342e9b0208eb3c470324a9ecbaac2a30f/websockets-16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:583b7c42688636f930688d712885cf1531326ee05effd982028212ccc13e5957", size = 175320, upload-time = "2026-01-10T09:22:23.94Z" }, + { url = "https://files.pythonhosted.org/packages/9d/2f/4b3ca7e106bc608744b1cdae041e005e446124bebb037b18799c2d356864/websockets-16.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:7d837379b647c0c4c2355c2499723f82f1635fd2c26510e1f587d89bc2199e72", size = 183815, upload-time = "2026-01-10T09:22:25.469Z" }, + { url = "https://files.pythonhosted.org/packages/86/26/d40eaa2a46d4302becec8d15b0fc5e45bdde05191e7628405a19cf491ccd/websockets-16.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:df57afc692e517a85e65b72e165356ed1df12386ecb879ad5693be08fac65dde", size = 185054, upload-time = "2026-01-10T09:22:27.101Z" }, + { url = "https://files.pythonhosted.org/packages/b0/ba/6500a0efc94f7373ee8fefa8c271acdfd4dca8bd49a90d4be7ccabfc397e/websockets-16.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:2b9f1e0d69bc60a4a87349d50c09a037a2607918746f07de04df9e43252c77a3", size = 184565, upload-time = "2026-01-10T09:22:28.293Z" }, + { url = "https://files.pythonhosted.org/packages/04/b4/96bf2cee7c8d8102389374a2616200574f5f01128d1082f44102140344cc/websockets-16.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:335c23addf3d5e6a8633f9f8eda77efad001671e80b95c491dd0924587ece0b3", size = 183848, upload-time = "2026-01-10T09:22:30.394Z" }, + { url = "https://files.pythonhosted.org/packages/02/8e/81f40fb00fd125357814e8c3025738fc4ffc3da4b6b4a4472a82ba304b41/websockets-16.0-cp310-cp310-win32.whl", hash = "sha256:37b31c1623c6605e4c00d466c9d633f9b812ea430c11c8a278774a1fde1acfa9", size = 178249, upload-time = "2026-01-10T09:22:32.083Z" }, + { url = "https://files.pythonhosted.org/packages/b4/5f/7e40efe8df57db9b91c88a43690ac66f7b7aa73a11aa6a66b927e44f26fa/websockets-16.0-cp310-cp310-win_amd64.whl", hash = "sha256:8e1dab317b6e77424356e11e99a432b7cb2f3ec8c5ab4dabbcee6add48f72b35", size = 178685, upload-time = "2026-01-10T09:22:33.345Z" }, + { url = "https://files.pythonhosted.org/packages/f2/db/de907251b4ff46ae804ad0409809504153b3f30984daf82a1d84a9875830/websockets-16.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:31a52addea25187bde0797a97d6fc3d2f92b6f72a9370792d65a6e84615ac8a8", size = 177340, upload-time = "2026-01-10T09:22:34.539Z" }, + { url = "https://files.pythonhosted.org/packages/f3/fa/abe89019d8d8815c8781e90d697dec52523fb8ebe308bf11664e8de1877e/websockets-16.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:417b28978cdccab24f46400586d128366313e8a96312e4b9362a4af504f3bbad", size = 175022, upload-time = "2026-01-10T09:22:36.332Z" }, + { url = "https://files.pythonhosted.org/packages/58/5d/88ea17ed1ded2079358b40d31d48abe90a73c9e5819dbcde1606e991e2ad/websockets-16.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:af80d74d4edfa3cb9ed973a0a5ba2b2a549371f8a741e0800cb07becdd20f23d", size = 175319, upload-time = "2026-01-10T09:22:37.602Z" }, + { url = "https://files.pythonhosted.org/packages/d2/ae/0ee92b33087a33632f37a635e11e1d99d429d3d323329675a6022312aac2/websockets-16.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:08d7af67b64d29823fed316505a89b86705f2b7981c07848fb5e3ea3020c1abe", size = 184631, upload-time = "2026-01-10T09:22:38.789Z" }, + { url = "https://files.pythonhosted.org/packages/c8/c5/27178df583b6c5b31b29f526ba2da5e2f864ecc79c99dae630a85d68c304/websockets-16.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:7be95cfb0a4dae143eaed2bcba8ac23f4892d8971311f1b06f3c6b78952ee70b", size = 185870, upload-time = "2026-01-10T09:22:39.893Z" }, + { url = "https://files.pythonhosted.org/packages/87/05/536652aa84ddc1c018dbb7e2c4cbcd0db884580bf8e95aece7593fde526f/websockets-16.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d6297ce39ce5c2e6feb13c1a996a2ded3b6832155fcfc920265c76f24c7cceb5", size = 185361, upload-time = "2026-01-10T09:22:41.016Z" }, + { url = "https://files.pythonhosted.org/packages/6d/e2/d5332c90da12b1e01f06fb1b85c50cfc489783076547415bf9f0a659ec19/websockets-16.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1c1b30e4f497b0b354057f3467f56244c603a79c0d1dafce1d16c283c25f6e64", size = 184615, upload-time = "2026-01-10T09:22:42.442Z" }, + { url = "https://files.pythonhosted.org/packages/77/fb/d3f9576691cae9253b51555f841bc6600bf0a983a461c79500ace5a5b364/websockets-16.0-cp311-cp311-win32.whl", hash = "sha256:5f451484aeb5cafee1ccf789b1b66f535409d038c56966d6101740c1614b86c6", size = 178246, upload-time = "2026-01-10T09:22:43.654Z" }, + { url = "https://files.pythonhosted.org/packages/54/67/eaff76b3dbaf18dcddabc3b8c1dba50b483761cccff67793897945b37408/websockets-16.0-cp311-cp311-win_amd64.whl", hash = "sha256:8d7f0659570eefb578dacde98e24fb60af35350193e4f56e11190787bee77dac", size = 178684, upload-time = "2026-01-10T09:22:44.941Z" }, + { url = "https://files.pythonhosted.org/packages/84/7b/bac442e6b96c9d25092695578dda82403c77936104b5682307bd4deb1ad4/websockets-16.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:71c989cbf3254fbd5e84d3bff31e4da39c43f884e64f2551d14bb3c186230f00", size = 177365, upload-time = "2026-01-10T09:22:46.787Z" }, + { url = "https://files.pythonhosted.org/packages/b0/fe/136ccece61bd690d9c1f715baaeefd953bb2360134de73519d5df19d29ca/websockets-16.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:8b6e209ffee39ff1b6d0fa7bfef6de950c60dfb91b8fcead17da4ee539121a79", size = 175038, upload-time = "2026-01-10T09:22:47.999Z" }, + { url = "https://files.pythonhosted.org/packages/40/1e/9771421ac2286eaab95b8575b0cb701ae3663abf8b5e1f64f1fd90d0a673/websockets-16.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:86890e837d61574c92a97496d590968b23c2ef0aeb8a9bc9421d174cd378ae39", size = 175328, upload-time = "2026-01-10T09:22:49.809Z" }, + { url = "https://files.pythonhosted.org/packages/18/29/71729b4671f21e1eaa5d6573031ab810ad2936c8175f03f97f3ff164c802/websockets-16.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:9b5aca38b67492ef518a8ab76851862488a478602229112c4b0d58d63a7a4d5c", size = 184915, upload-time = "2026-01-10T09:22:51.071Z" }, + { url = "https://files.pythonhosted.org/packages/97/bb/21c36b7dbbafc85d2d480cd65df02a1dc93bf76d97147605a8e27ff9409d/websockets-16.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:e0334872c0a37b606418ac52f6ab9cfd17317ac26365f7f65e203e2d0d0d359f", size = 186152, upload-time = "2026-01-10T09:22:52.224Z" }, + { url = "https://files.pythonhosted.org/packages/4a/34/9bf8df0c0cf88fa7bfe36678dc7b02970c9a7d5e065a3099292db87b1be2/websockets-16.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:a0b31e0b424cc6b5a04b8838bbaec1688834b2383256688cf47eb97412531da1", size = 185583, upload-time = "2026-01-10T09:22:53.443Z" }, + { url = "https://files.pythonhosted.org/packages/47/88/4dd516068e1a3d6ab3c7c183288404cd424a9a02d585efbac226cb61ff2d/websockets-16.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:485c49116d0af10ac698623c513c1cc01c9446c058a4e61e3bf6c19dff7335a2", size = 184880, upload-time = "2026-01-10T09:22:55.033Z" }, + { url = "https://files.pythonhosted.org/packages/91/d6/7d4553ad4bf1c0421e1ebd4b18de5d9098383b5caa1d937b63df8d04b565/websockets-16.0-cp312-cp312-win32.whl", hash = "sha256:eaded469f5e5b7294e2bdca0ab06becb6756ea86894a47806456089298813c89", size = 178261, upload-time = "2026-01-10T09:22:56.251Z" }, + { url = "https://files.pythonhosted.org/packages/c3/f0/f3a17365441ed1c27f850a80b2bc680a0fa9505d733fe152fdf5e98c1c0b/websockets-16.0-cp312-cp312-win_amd64.whl", hash = "sha256:5569417dc80977fc8c2d43a86f78e0a5a22fee17565d78621b6bb264a115d4ea", size = 178693, upload-time = "2026-01-10T09:22:57.478Z" }, + { url = "https://files.pythonhosted.org/packages/cc/9c/baa8456050d1c1b08dd0ec7346026668cbc6f145ab4e314d707bb845bf0d/websockets-16.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:878b336ac47938b474c8f982ac2f7266a540adc3fa4ad74ae96fea9823a02cc9", size = 177364, upload-time = "2026-01-10T09:22:59.333Z" }, + { url = "https://files.pythonhosted.org/packages/7e/0c/8811fc53e9bcff68fe7de2bcbe75116a8d959ac699a3200f4847a8925210/websockets-16.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:52a0fec0e6c8d9a784c2c78276a48a2bdf099e4ccc2a4cad53b27718dbfd0230", size = 175039, upload-time = "2026-01-10T09:23:01.171Z" }, + { url = "https://files.pythonhosted.org/packages/aa/82/39a5f910cb99ec0b59e482971238c845af9220d3ab9fa76dd9162cda9d62/websockets-16.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e6578ed5b6981005df1860a56e3617f14a6c307e6a71b4fff8c48fdc50f3ed2c", size = 175323, upload-time = "2026-01-10T09:23:02.341Z" }, + { url = "https://files.pythonhosted.org/packages/bd/28/0a25ee5342eb5d5f297d992a77e56892ecb65e7854c7898fb7d35e9b33bd/websockets-16.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:95724e638f0f9c350bb1c2b0a7ad0e83d9cc0c9259f3ea94e40d7b02a2179ae5", size = 184975, upload-time = "2026-01-10T09:23:03.756Z" }, + { url = "https://files.pythonhosted.org/packages/f9/66/27ea52741752f5107c2e41fda05e8395a682a1e11c4e592a809a90c6a506/websockets-16.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:c0204dc62a89dc9d50d682412c10b3542d748260d743500a85c13cd1ee4bde82", size = 186203, upload-time = "2026-01-10T09:23:05.01Z" }, + { url = "https://files.pythonhosted.org/packages/37/e5/8e32857371406a757816a2b471939d51c463509be73fa538216ea52b792a/websockets-16.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:52ac480f44d32970d66763115edea932f1c5b1312de36df06d6b219f6741eed8", size = 185653, upload-time = "2026-01-10T09:23:06.301Z" }, + { url = "https://files.pythonhosted.org/packages/9b/67/f926bac29882894669368dc73f4da900fcdf47955d0a0185d60103df5737/websockets-16.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6e5a82b677f8f6f59e8dfc34ec06ca6b5b48bc4fcda346acd093694cc2c24d8f", size = 184920, upload-time = "2026-01-10T09:23:07.492Z" }, + { url = "https://files.pythonhosted.org/packages/3c/a1/3d6ccdcd125b0a42a311bcd15a7f705d688f73b2a22d8cf1c0875d35d34a/websockets-16.0-cp313-cp313-win32.whl", hash = "sha256:abf050a199613f64c886ea10f38b47770a65154dc37181bfaff70c160f45315a", size = 178255, upload-time = "2026-01-10T09:23:09.245Z" }, + { url = "https://files.pythonhosted.org/packages/6b/ae/90366304d7c2ce80f9b826096a9e9048b4bb760e44d3b873bb272cba696b/websockets-16.0-cp313-cp313-win_amd64.whl", hash = "sha256:3425ac5cf448801335d6fdc7ae1eb22072055417a96cc6b31b3861f455fbc156", size = 178689, upload-time = "2026-01-10T09:23:10.483Z" }, + { url = "https://files.pythonhosted.org/packages/f3/1d/e88022630271f5bd349ed82417136281931e558d628dd52c4d8621b4a0b2/websockets-16.0-cp314-cp314-macosx_10_15_universal2.whl", hash = "sha256:8cc451a50f2aee53042ac52d2d053d08bf89bcb31ae799cb4487587661c038a0", size = 177406, upload-time = "2026-01-10T09:23:12.178Z" }, + { url = "https://files.pythonhosted.org/packages/f2/78/e63be1bf0724eeb4616efb1ae1c9044f7c3953b7957799abb5915bffd38e/websockets-16.0-cp314-cp314-macosx_10_15_x86_64.whl", hash = "sha256:daa3b6ff70a9241cf6c7fc9e949d41232d9d7d26fd3522b1ad2b4d62487e9904", size = 175085, upload-time = "2026-01-10T09:23:13.511Z" }, + { url = "https://files.pythonhosted.org/packages/bb/f4/d3c9220d818ee955ae390cf319a7c7a467beceb24f05ee7aaaa2414345ba/websockets-16.0-cp314-cp314-macosx_11_0_arm64.whl", hash = "sha256:fd3cb4adb94a2a6e2b7c0d8d05cb94e6f1c81a0cf9dc2694fb65c7e8d94c42e4", size = 175328, upload-time = "2026-01-10T09:23:14.727Z" }, + { url = "https://files.pythonhosted.org/packages/63/bc/d3e208028de777087e6fb2b122051a6ff7bbcca0d6df9d9c2bf1dd869ae9/websockets-16.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:781caf5e8eee67f663126490c2f96f40906594cb86b408a703630f95550a8c3e", size = 185044, upload-time = "2026-01-10T09:23:15.939Z" }, + { url = "https://files.pythonhosted.org/packages/ad/6e/9a0927ac24bd33a0a9af834d89e0abc7cfd8e13bed17a86407a66773cc0e/websockets-16.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:caab51a72c51973ca21fa8a18bd8165e1a0183f1ac7066a182ff27107b71e1a4", size = 186279, upload-time = "2026-01-10T09:23:17.148Z" }, + { url = "https://files.pythonhosted.org/packages/b9/ca/bf1c68440d7a868180e11be653c85959502efd3a709323230314fda6e0b3/websockets-16.0-cp314-cp314-musllinux_1_2_aarch64.whl", hash = "sha256:19c4dc84098e523fd63711e563077d39e90ec6702aff4b5d9e344a60cb3c0cb1", size = 185711, upload-time = "2026-01-10T09:23:18.372Z" }, + { url = "https://files.pythonhosted.org/packages/c4/f8/fdc34643a989561f217bb477cbc47a3a07212cbda91c0e4389c43c296ebf/websockets-16.0-cp314-cp314-musllinux_1_2_x86_64.whl", hash = "sha256:a5e18a238a2b2249c9a9235466b90e96ae4795672598a58772dd806edc7ac6d3", size = 184982, upload-time = "2026-01-10T09:23:19.652Z" }, + { url = "https://files.pythonhosted.org/packages/dd/d1/574fa27e233764dbac9c52730d63fcf2823b16f0856b3329fc6268d6ae4f/websockets-16.0-cp314-cp314-win32.whl", hash = "sha256:a069d734c4a043182729edd3e9f247c3b2a4035415a9172fd0f1b71658a320a8", size = 177915, upload-time = "2026-01-10T09:23:21.458Z" }, + { url = "https://files.pythonhosted.org/packages/8a/f1/ae6b937bf3126b5134ce1f482365fde31a357c784ac51852978768b5eff4/websockets-16.0-cp314-cp314-win_amd64.whl", hash = "sha256:c0ee0e63f23914732c6d7e0cce24915c48f3f1512ec1d079ed01fc629dab269d", size = 178381, upload-time = "2026-01-10T09:23:22.715Z" }, + { url = "https://files.pythonhosted.org/packages/06/9b/f791d1db48403e1f0a27577a6beb37afae94254a8c6f08be4a23e4930bc0/websockets-16.0-cp314-cp314t-macosx_10_15_universal2.whl", hash = "sha256:a35539cacc3febb22b8f4d4a99cc79b104226a756aa7400adc722e83b0d03244", size = 177737, upload-time = "2026-01-10T09:23:24.523Z" }, + { url = "https://files.pythonhosted.org/packages/bd/40/53ad02341fa33b3ce489023f635367a4ac98b73570102ad2cdd770dacc9a/websockets-16.0-cp314-cp314t-macosx_10_15_x86_64.whl", hash = "sha256:b784ca5de850f4ce93ec85d3269d24d4c82f22b7212023c974c401d4980ebc5e", size = 175268, upload-time = "2026-01-10T09:23:25.781Z" }, + { url = "https://files.pythonhosted.org/packages/74/9b/6158d4e459b984f949dcbbb0c5d270154c7618e11c01029b9bbd1bb4c4f9/websockets-16.0-cp314-cp314t-macosx_11_0_arm64.whl", hash = "sha256:569d01a4e7fba956c5ae4fc988f0d4e187900f5497ce46339c996dbf24f17641", size = 175486, upload-time = "2026-01-10T09:23:27.033Z" }, + { url = "https://files.pythonhosted.org/packages/e5/2d/7583b30208b639c8090206f95073646c2c9ffd66f44df967981a64f849ad/websockets-16.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:50f23cdd8343b984957e4077839841146f67a3d31ab0d00e6b824e74c5b2f6e8", size = 185331, upload-time = "2026-01-10T09:23:28.259Z" }, + { url = "https://files.pythonhosted.org/packages/45/b0/cce3784eb519b7b5ad680d14b9673a31ab8dcb7aad8b64d81709d2430aa8/websockets-16.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:152284a83a00c59b759697b7f9e9cddf4e3c7861dd0d964b472b70f78f89e80e", size = 186501, upload-time = "2026-01-10T09:23:29.449Z" }, + { url = "https://files.pythonhosted.org/packages/19/60/b8ebe4c7e89fb5f6cdf080623c9d92789a53636950f7abacfc33fe2b3135/websockets-16.0-cp314-cp314t-musllinux_1_2_aarch64.whl", hash = "sha256:bc59589ab64b0022385f429b94697348a6a234e8ce22544e3681b2e9331b5944", size = 186062, upload-time = "2026-01-10T09:23:31.368Z" }, + { url = "https://files.pythonhosted.org/packages/88/a8/a080593f89b0138b6cba1b28f8df5673b5506f72879322288b031337c0b8/websockets-16.0-cp314-cp314t-musllinux_1_2_x86_64.whl", hash = "sha256:32da954ffa2814258030e5a57bc73a3635463238e797c7375dc8091327434206", size = 185356, upload-time = "2026-01-10T09:23:32.627Z" }, + { url = "https://files.pythonhosted.org/packages/c2/b6/b9afed2afadddaf5ebb2afa801abf4b0868f42f8539bfe4b071b5266c9fe/websockets-16.0-cp314-cp314t-win32.whl", hash = "sha256:5a4b4cc550cb665dd8a47f868c8d04c8230f857363ad3c9caf7a0c3bf8c61ca6", size = 178085, upload-time = "2026-01-10T09:23:33.816Z" }, + { url = "https://files.pythonhosted.org/packages/9f/3e/28135a24e384493fa804216b79a6a6759a38cc4ff59118787b9fb693df93/websockets-16.0-cp314-cp314t-win_amd64.whl", hash = "sha256:b14dc141ed6d2dde437cddb216004bcac6a1df0935d79656387bd41632ba0bbd", size = 178531, upload-time = "2026-01-10T09:23:35.016Z" }, + { url = "https://files.pythonhosted.org/packages/72/07/c98a68571dcf256e74f1f816b8cc5eae6eb2d3d5cfa44d37f801619d9166/websockets-16.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl", hash = "sha256:349f83cd6c9a415428ee1005cadb5c2c56f4389bc06a9af16103c3bc3dcc8b7d", size = 174947, upload-time = "2026-01-10T09:23:36.166Z" }, + { url = "https://files.pythonhosted.org/packages/7e/52/93e166a81e0305b33fe416338be92ae863563fe7bce446b0f687b9df5aea/websockets-16.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl", hash = "sha256:4a1aba3340a8dca8db6eb5a7986157f52eb9e436b74813764241981ca4888f03", size = 175260, upload-time = "2026-01-10T09:23:37.409Z" }, + { url = "https://files.pythonhosted.org/packages/56/0c/2dbf513bafd24889d33de2ff0368190a0e69f37bcfa19009ef819fe4d507/websockets-16.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl", hash = "sha256:f4a32d1bd841d4bcbffdcb3d2ce50c09c3909fbead375ab28d0181af89fd04da", size = 176071, upload-time = "2026-01-10T09:23:39.158Z" }, + { url = "https://files.pythonhosted.org/packages/a5/8f/aea9c71cc92bf9b6cc0f7f70df8f0b420636b6c96ef4feee1e16f80f75dd/websockets-16.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:0298d07ee155e2e9fda5be8a9042200dd2e3bb0b8a38482156576f863a9d457c", size = 176968, upload-time = "2026-01-10T09:23:41.031Z" }, + { url = "https://files.pythonhosted.org/packages/9a/3f/f70e03f40ffc9a30d817eef7da1be72ee4956ba8d7255c399a01b135902a/websockets-16.0-pp311-pypy311_pp73-win_amd64.whl", hash = "sha256:a653aea902e0324b52f1613332ddf50b00c06fdaf7e92624fbf8c77c78fa5767", size = 178735, upload-time = "2026-01-10T09:23:42.259Z" }, + { url = "https://files.pythonhosted.org/packages/6f/28/258ebab549c2bf3e64d2b0217b973467394a9cea8c42f70418ca2c5d0d2e/websockets-16.0-py3-none-any.whl", hash = "sha256:1637db62fad1dc833276dded54215f2c7fa46912301a24bd94d45d46a011ceec", size = 171598, upload-time = "2026-01-10T09:23:45.395Z" }, +] + [[package]] name = "wheel" version = "0.45.1" @@ -10819,6 +13299,15 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/0b/2c/87f3254fd8ffd29e4c02732eee68a83a1d3c346ae39bc6822dcbcb697f2b/wheel-0.45.1-py3-none-any.whl", hash = "sha256:708e7481cc80179af0e556bbf0cc00b8444c7321e2700b8d8580231d13017248", size = 72494, upload-time = "2024-11-23T00:18:21.207Z" }, ] +[[package]] +name = "win32-setctime" +version = "1.2.0" +source = { registry = "https://pypi.org/simple" } +sdist = { url = "https://files.pythonhosted.org/packages/b3/8f/705086c9d734d3b663af0e9bb3d4de6578d08f46b1b101c2442fd9aecaa2/win32_setctime-1.2.0.tar.gz", hash = "sha256:ae1fdf948f5640aae05c511ade119313fb6a30d7eabe25fef9764dca5873c4c0", size = 4867, upload-time = "2024-12-07T15:28:28.314Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/e1/07/c6fe3ad3e685340704d314d765b7912993bcb8dc198f0e7a89382d37974b/win32_setctime-1.2.0-py3-none-any.whl", hash = "sha256:95d644c4e708aba81dc3704a116d8cbc974d70b3bdb8be1d150e36be6e9d1390", size = 4083, upload-time = "2024-12-07T15:28:26.465Z" }, +] + [[package]] name = "wrapt" version = "2.0.1" @@ -10917,107 +13406,19 @@ name = "xformers" version = "0.0.32.post2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.11' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.14') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version == '3.13.*' and sys_platform == 'linux'", + "python_full_version == '3.13.*' and sys_platform != 'linux'", + "python_full_version == '3.12.*' and sys_platform == 'linux'", + "python_full_version == '3.12.*' and sys_platform != 'linux'", + "python_full_version == '3.11.*' and sys_platform == 'linux'", + "python_full_version == '3.11.*' and sys_platform != 'linux'", + "python_full_version < '3.11' and sys_platform == 'linux'", + "python_full_version < '3.11' and sys_platform != 'linux'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.8.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/47/99/68d2e7a17b65a08180d6b120d1d293d5855a0c5999cb30a79fb466b49642/xformers-0.0.32.post2.tar.gz", hash = "sha256:9538be803969c6e1ca16a3ece921e472c24f79970b10be1087a389dcb66e412a", size = 12105990, upload-time = "2025-08-15T11:48:56.584Z" } wheels = [ @@ -11025,39 +13426,140 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/50/19/ea64609a535f87a44cb177dc37c6d6a58f6d540adfff819d565fb0657cf7/xformers-0.0.32.post2-cp39-abi3-win_amd64.whl", hash = "sha256:87fa13f4b406ed640554cea6687d0020b496bd6b446ca17d24f9438a079e6f09", size = 100221079, upload-time = "2025-08-15T11:48:53.234Z" }, ] +[[package]] +name = "xformers" +version = "0.0.33.post1" +source = { registry = "https://pypi.org/simple" } +resolution-markers = [ + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.12.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.12.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.11.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.11.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.11.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version < '3.11' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version < '3.11' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.12.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.12.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.11.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version < '3.11' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.11' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version >= '3.11' and python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.11' and python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.11' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version >= '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version < '3.13' and extra == 'extra-4-mteb-blip2') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali') or extra == 'extra-4-mteb-vllm' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/6f/c1/cd0d6b89da38d8aa174e8eabf29530f8871daf53b886ec6b680ef9d3e71f/xformers-0.0.33.post1.tar.gz", hash = "sha256:e555258249b514ba117b3403523fe0bd7d3e92e930575f0e0dbf5f7db5b42677", size = 14784437, upload-time = "2025-11-13T20:16:14.793Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/39/94/3ad80d1070ddfb280c20a67dfbc094a93579a02910ef41f20631a9b566fe/xformers-0.0.33.post1-cp39-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:a8d72c6272453450eede2ed9aaa14448e6525569e14217573057ded146090db3", size = 122884756, upload-time = "2025-11-13T20:16:04.002Z" }, + { url = "https://files.pythonhosted.org/packages/a9/ef/4f59589fe37e206f5bb6158aa1294cfa0e79d52bca99ea0fd3f5c8a73404/xformers-0.0.33.post1-cp39-abi3-win_amd64.whl", hash = "sha256:e20729ca1647d53f86143bd57451af953bb78e72677548c972cd016238a066e3", size = 105088581, upload-time = "2025-11-13T20:16:11.221Z" }, +] + [[package]] name = "xformers" version = "0.0.33.post2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm')", - "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", - "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm'", -] -dependencies = [ - { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, - { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version >= '3.14' or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm')" }, + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and platform_machine == 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version >= '3.14' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version >= '3.14' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version == '3.13.*' and platform_machine != 'aarch64' and sys_platform == 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "(python_full_version == '3.13.*' and platform_machine != 'arm64' and sys_platform == 'darwin' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'linux' and extra == 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm')", + "python_full_version >= '3.14' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version >= '3.14' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform == 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", + "python_full_version == '3.13.*' and sys_platform != 'linux' and extra != 'extra-4-mteb-blip2' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-colqwen3' and extra != 'extra-4-mteb-jina-v4' and extra != 'extra-4-mteb-llama-embed-nemotron' and extra != 'extra-4-mteb-llm2vec' and extra != 'extra-4-mteb-model2vec' and extra != 'extra-4-mteb-pylate' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-timm' and extra != 'extra-4-mteb-vllm'", +] +dependencies = [ + { name = "numpy", version = "2.3.5", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, + { name = "torch", version = "2.9.1", source = { registry = "https://pypi.org/simple" }, marker = "(python_full_version == '3.13.*' and extra == 'extra-4-mteb-blip2') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colqwen3') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-jina-v4') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-llm2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-model2vec') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-pylate') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-blip2') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-colqwen3') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-jina-v4') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-llm2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-model2vec') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-pylate') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version >= '3.14' and extra == 'extra-4-mteb-timm') or (python_full_version >= '3.14' and extra != 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colpali-engine') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-blip2' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-colqwen3') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-jina-v4') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-colqwen3' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llama-embed-nemotron') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-jina-v4' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-llm2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llama-embed-nemotron' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-model2vec') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-llm2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-pylate') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-model2vec' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-pylate' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-timm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version < '3.13' and extra == 'extra-4-mteb-timm' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-sauerkrautlm-colpali') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-colpali-engine' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra == 'extra-4-mteb-sauerkrautlm-colpali' and extra == 'extra-4-mteb-vllm') or (python_full_version == '3.13.*' and extra != 'extra-4-mteb-colpali-engine' and extra != 'extra-4-mteb-sauerkrautlm-colpali' and extra != 'extra-4-mteb-vllm')" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0b/69/403e963d35f1b0c52a1b3127e0bc4e94e7e50ecee8c6684a8abe40e6638e/xformers-0.0.33.post2.tar.gz", hash = "sha256:647ddf26578d2b8643230467ef1f0fbfef0bbe556a546bd27a70d4855d3433e1", size = 14783914, upload-time = "2025-12-04T18:52:42.572Z" } wheels = [ @@ -11065,6 +13567,42 @@ wheels = [ { url = "https://files.pythonhosted.org/packages/b3/72/057e48a3c2187f74202b3cca97e9f8a844342122909c93314fd641daa5d0/xformers-0.0.33.post2-cp39-abi3-win_amd64.whl", hash = "sha256:4a0a59a0c698a483f13ecad967dbbe71386827985e80cc373bec4cdf9aed59cd", size = 105088221, upload-time = "2025-12-04T18:52:39.699Z" }, ] +[[package]] +name = "xgrammar" +version = "0.1.27" +source = { registry = "https://pypi.org/simple" } +dependencies = [ + { name = "mlx-lm", marker = "platform_machine == 'arm64' and sys_platform == 'darwin'" }, + { name = "ninja" }, + { name = "numpy", version = "2.2.6", source = { registry = "https://pypi.org/simple" } }, + { name = "pydantic" }, + { name = "torch", version = "2.9.0", source = { registry = "https://pypi.org/simple" } }, + { name = "transformers", version = "4.57.3", source = { registry = "https://pypi.org/simple" } }, + { name = "triton", version = "3.5.0", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'x86_64' and sys_platform == 'linux'" }, + { name = "typing-extensions" }, +] +sdist = { url = "https://files.pythonhosted.org/packages/62/e1/b522b1e50fddd773d368c2945ef5ed628aa90c0c972027f9aa5a51d6d4f9/xgrammar-0.1.27.tar.gz", hash = "sha256:40af7bb2891f1633ec7f660723c74a92a963307d283aca9e3b4e53a0feaf1d46", size = 2303435, upload-time = "2025-11-04T03:11:53.512Z" } +wheels = [ + { url = "https://files.pythonhosted.org/packages/b0/55/03a548a116fa5cc716ce70e15240ca61ddaae046ed34c711e63d3d91d047/xgrammar-0.1.27-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:6e3ea7cd74a7d4188744f90878507637ce9ac5f671cb9d1bda9d53305a46889e", size = 664256, upload-time = "2025-11-04T03:11:08.471Z" }, + { url = "https://files.pythonhosted.org/packages/84/a5/45a430a7fb44f70303742c59e7d792ca6d4b7960e9252ec5238f1112bbcd/xgrammar-0.1.27-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:73ca9ec86e81a7f936c5668b7e6dda6929c078d1748b7615c8da504584b6c24a", size = 637358, upload-time = "2025-11-04T03:11:10.975Z" }, + { url = "https://files.pythonhosted.org/packages/cb/2b/3867379f76b97fb7cb03bc0fa1d0f81f19d13df3c313bd22878b636b0f50/xgrammar-0.1.27-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fa8b7cc167737a9b4c3e1012faa7b488cc5b451ea8403c4d77ec1d53b58e9266", size = 8687578, upload-time = "2025-11-04T03:11:13.304Z" }, + { url = "https://files.pythonhosted.org/packages/ae/35/fe718ec90c210ab892a845af6d4e6e876a3d3c7dcc1bacaa98abfec42c0f/xgrammar-0.1.27-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6e0c5899b59c8e45ba3a6f3b9e7fb2ef23243f09b164f724d59c7734173bb3db", size = 8869161, upload-time = "2025-11-04T03:11:15.572Z" }, + { url = "https://files.pythonhosted.org/packages/e8/44/674724714407e0265d088ad40a17d367c00d72d206f2b15d559a644a36dc/xgrammar-0.1.27-cp310-cp310-win_amd64.whl", hash = "sha256:1ce2558992b0ffda65f46772bae94b051d139f0036968853078904bc167d4a8d", size = 709212, upload-time = "2025-11-04T03:11:17.572Z" }, + { url = "https://files.pythonhosted.org/packages/93/bb/e6d30457c99a0ce11247154ecb1f3f9fab5960192a0564c2862ba9b98897/xgrammar-0.1.27-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:c995c71ea94b153eac0e08c36eb82a898d7d71e4b77ce93f3b9fe648bd2d3a04", size = 664112, upload-time = "2025-11-04T03:11:18.932Z" }, + { url = "https://files.pythonhosted.org/packages/7e/81/caab5c46d314c1b005e36c9ec8aef124f7c52619d980f2bbd2d4cf4cd491/xgrammar-0.1.27-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:456f2f74135a414f44413599d90a382f5b22e6b515e4ae7e8938a28f7efacbaa", size = 637181, upload-time = "2025-11-04T03:11:20.29Z" }, + { url = "https://files.pythonhosted.org/packages/a4/29/7f78ed69b5f221206af0b68b0517335f9c09459def5d63065827a79fec74/xgrammar-0.1.27-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed23e6960218e791ecaccbbbb66d7caa5c0ed8636aca85807d81b89ba87a7f33", size = 8674617, upload-time = "2025-11-04T03:11:22.255Z" }, + { url = "https://files.pythonhosted.org/packages/cc/a2/afcce6a59b83644ffe19ffebe8107355febb15d8084ce5316eccd457e3c8/xgrammar-0.1.27-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:02fe3b137d041649b8f7a180a0aa7f3466d47579ce4e9fbdb77208b59621b2ab", size = 8869958, upload-time = "2025-11-04T03:11:24.751Z" }, + { url = "https://files.pythonhosted.org/packages/76/fb/a4a3254041174013ff09e99c298f2bc6c03f34891df458839de7cbb53e4b/xgrammar-0.1.27-cp311-cp311-win_amd64.whl", hash = "sha256:db0c74f7cc4fb2b5d566eee873e4d18920ed5ee0fe500178b412408d0dad3686", size = 709137, upload-time = "2025-11-04T03:11:26.672Z" }, + { url = "https://files.pythonhosted.org/packages/39/b6/09b43e2adff45d30ebcf9110d0ff753f4c96b368adaa2d166df3dee88d5f/xgrammar-0.1.27-cp312-cp312-macosx_10_14_x86_64.whl", hash = "sha256:6404a7714440eb86ab0379d749f33591274eeef04787dc00d61f22069f3ed51d", size = 663319, upload-time = "2025-11-04T03:11:28.682Z" }, + { url = "https://files.pythonhosted.org/packages/88/8b/53eb5c6d0df8df9f6350f182516a5b8c7b8b11d62650300d2c04af2bc4ea/xgrammar-0.1.27-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d01fa9894bc44a7f6a70b0301b59f3e310c0e0e7b7ea4cf5ce190b12d8220dd8", size = 636168, upload-time = "2025-11-04T03:11:30.373Z" }, + { url = "https://files.pythonhosted.org/packages/08/1b/53d30395bb973f13255d3e3a72961f95fdfb4083877c3f93bb626e3d1522/xgrammar-0.1.27-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:906c0601bac9170e1bab77ca985259035ff9c386c347efcb191555eab86e984e", size = 8676340, upload-time = "2025-11-04T03:11:32.203Z" }, + { url = "https://files.pythonhosted.org/packages/48/74/70cfac0171d9f309cfe18c5384330e3edc9466c436b258495fd30ecf29a3/xgrammar-0.1.27-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eb68988a122f544301c496f2cac8ee82960ca7f5b3a42a952b2a00c0a55e6ca5", size = 8870650, upload-time = "2025-11-04T03:11:34.322Z" }, + { url = "https://files.pythonhosted.org/packages/6a/a1/0392aa9c7669c56f7f88e4423b246476a74a72c3bb9db944e1bfc029985e/xgrammar-0.1.27-cp312-cp312-win_amd64.whl", hash = "sha256:3aac335ea052afc8f8dc34b9f2afcb9462a68189423aed9f60b0941db6cfc310", size = 708811, upload-time = "2025-11-04T03:11:36.214Z" }, + { url = "https://files.pythonhosted.org/packages/a4/77/5aee819c00844fb333fa802507182aa19445b347840103a14bd27ed944c4/xgrammar-0.1.27-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:e248488c7c8a8ba175c7d1c5b55a2dd705661bbaa87755a749f9fdda146cbe1e", size = 636084, upload-time = "2025-11-04T03:11:38.192Z" }, + { url = "https://files.pythonhosted.org/packages/23/c2/cd15c44bd6db4411fc733303e0b85033772f3389b32210e6f0ae08f5a2c1/xgrammar-0.1.27-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ac7a307d7a739962c422969cb486aa3994e200bfa6191d9519fdca5224760f0", size = 8870005, upload-time = "2025-11-04T03:11:40.039Z" }, + { url = "https://files.pythonhosted.org/packages/be/45/d3d3dc97c05159d9336fb4b947b22bd074ca259bd291be523c00e5696d24/xgrammar-0.1.27-cp313-cp313-win_amd64.whl", hash = "sha256:37936e04974bcb4c02a69ab734ff530669a43b03b2910c4013233dd074896ac9", size = 708726, upload-time = "2025-11-04T03:11:42.064Z" }, +] + [[package]] name = "xxhash" version = "3.6.0"