Spaces:
Running on Zero
Running on Zero
File size: 9,147 Bytes
479248b 090d639 479248b 090d639 f4de321 7b1a0eb 8e0eeee 090d639 479248b 5d9d524 090d639 f4de321 8e0eeee 9e8f6a7 9b0692a 9e8f6a7 8e0eeee 9b0692a 8e0eeee 7b1a0eb 3fa468f 7b1a0eb 8e0eeee 49321ce 235f9d9 49321ce 090d639 892690e 3c9d2f2 892690e 090d639 49321ce 090d639 479248b 090d639 49321ce 3c9d2f2 59b6937 70b9afb 59b6937 49321ce 59b6937 49321ce 59b6937 79ca53e c7d2fe9 79ca53e 87bb93a 79ca53e 87bb93a 79ca53e 87bb93a 79ca53e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | """Tests for the llama.cpp adapter (MiniCPM-V 4.6)."""
from __future__ import annotations
import io
import os
from pathlib import Path
from unittest.mock import MagicMock, patch
import pytest
from PIL import Image
from vivamais.adapters.models.llama_cpp import (
VARIANT,
LlamaCppBackend,
LlamaCppVisionModel,
_configure_cuda_libs,
_flash_attn,
_n_gpu_layers,
_resolve_path,
)
def _dummy_jpeg_bytes() -> bytes:
img = Image.new("RGB", (64, 64), color=(255, 255, 255))
buf = io.BytesIO()
img.save(buf, format="JPEG")
return buf.getvalue()
class TestVariant:
def test_defaults_to_vivamais_finetune_gguf(self) -> None:
assert VARIANT.repo == "marinarosa/minicpmv4.6-vivamais-v1-GGUF"
assert VARIANT.model_file == "MiniCPM-V-4.6-PTBR-v4-Q4_K_M.gguf"
class TestResolvePath:
def test_uses_hint(self) -> None:
assert _resolve_path("/custom/path.gguf", "X", "r", "f") == "/custom/path.gguf"
def test_uses_env_var(self) -> None:
with patch.dict(os.environ, {"TEST_VAR": "/env/path.gguf"}, clear=False):
assert _resolve_path(None, "TEST_VAR", "r", "f") == "/env/path.gguf"
def test_huggingface_download(self) -> None:
with patch("vivamais.adapters.models.llama_cpp.hf_hub_download") as mock:
mock.return_value = "/cache/model.gguf"
result = _resolve_path(None, "MISSING_VAR", "repo", "file.gguf")
mock.assert_called_once_with(repo_id="repo", filename="file.gguf")
assert result == "/cache/model.gguf"
class TestCudaLibConfig:
def test_configure_cuda_libs_noop_without_nvidia_packages(self) -> None:
with patch("vivamais.adapters.models.llama_cpp._cuda_lib_dirs", return_value=[]):
_configure_cuda_libs()
def test_configure_cuda_libs_prepends_ld_library_path(self) -> None:
with patch(
"vivamais.adapters.models.llama_cpp._cuda_lib_dirs",
return_value=["/fake/cuda/lib"],
):
with patch.dict(os.environ, {}, clear=True):
_configure_cuda_libs()
assert os.environ["LD_LIBRARY_PATH"] == "/fake/cuda/lib"
class TestNGpuLayers:
def test_cpu_when_build_lacks_gpu_backend(self) -> None:
with patch.dict(os.environ, {}, clear=True):
with patch(
"vivamais.adapters.models.llama_cpp._gpu_offload_supported",
return_value=False,
):
assert _n_gpu_layers() == 0
def test_full_offload_when_build_has_gpu_backend(self) -> None:
with patch.dict(os.environ, {}, clear=True):
with patch(
"vivamais.adapters.models.llama_cpp._gpu_offload_supported",
return_value=True,
):
assert _n_gpu_layers() == -1
def test_env_override(self) -> None:
with patch.dict(os.environ, {"VIVAMAIS_N_GPU_LAYERS": "32"}, clear=False):
assert _n_gpu_layers() == 32
def test_scoped_env_wins_over_global(self) -> None:
env = {"VIVAMAIS_N_GPU_LAYERS": "32", "VIVAMAIS_VISION_N_GPU_LAYERS": "0"}
with patch.dict(os.environ, env, clear=False):
assert _n_gpu_layers("VIVAMAIS_VISION_N_GPU_LAYERS") == 0
def test_zero_gpu_forces_cpu_even_with_env_override(self) -> None:
env = {"SPACES_ZERO_GPU": "true", "VIVAMAIS_N_GPU_LAYERS": "-1"}
with patch.dict(os.environ, env, clear=False):
assert _n_gpu_layers() == 0
class TestFlashAttn:
def test_on_when_offloaded(self) -> None:
with patch.dict(os.environ, {}, clear=True):
assert _flash_attn(-1) is True
def test_off_on_cpu(self) -> None:
with patch.dict(os.environ, {}, clear=True):
assert _flash_attn(0) is False
def test_env_override(self) -> None:
with patch.dict(os.environ, {"VIVAMAIS_FLASH_ATTN": "0"}, clear=False):
assert _flash_attn(-1) is False
class TestBuildMessages:
def test_build_messages_includes_system_prompt(self) -> None:
backend = LlamaCppBackend()
messages = backend._build_messages(b"img", "task")
assert messages[0]["role"] == "system"
assert messages[1]["role"] == "user"
def test_chat_forwards_messages_and_response_format(self) -> None:
backend = LlamaCppBackend()
backend._ensure_loaded = MagicMock() # type: ignore[method-assign]
fake = MagicMock()
fake.create_chat_completion.return_value = {
"choices": [{"message": {"content": "resposta"}}]
}
backend._llama = fake
messages = [{"role": "user", "content": "oi"}]
out = backend.chat(messages, {"type": "json_object"})
assert out == "resposta"
_, kwargs = fake.create_chat_completion.call_args
assert kwargs["messages"] == messages
assert kwargs["response_format"] == {"type": "json_object"}
def _model_integration_enabled() -> bool:
if os.environ.get("VIVAMAIS_RUN_MODEL_TESTS") != "1":
return False
return (
os.environ.get("VIVAMAIS_MODEL_PATH") is not None
or os.environ.get("VIVAMAIS_MMPROJ_PATH") is not None
or (
Path.home() / ".cache" / "huggingface" / "hub" / "models--openbmb--MiniCPM-V-4.6-gguf"
).exists()
)
@pytest.mark.skipif(
not _model_integration_enabled(),
reason="Set VIVAMAIS_RUN_MODEL_TESTS=1 to run local GGUF integration tests",
)
class TestLlamaCppVisionModelIntegration:
def test_extract_ocr(self) -> None:
from vivamais.adapters.models.llama_cpp import LlamaCppTextModel
backend = LlamaCppBackend(verbose=False)
model = LlamaCppVisionModel(backend)
result = model.extract_ocr(_dummy_jpeg_bytes())
assert isinstance(result, str)
_ = LlamaCppTextModel(backend)
class TestMiniCPM5TextModel:
def _model_with_fake_llama(self, content: str):
from vivamais.adapters.models.llama_cpp import MiniCPM5TextModel
model = MiniCPM5TextModel()
fake = MagicMock()
fake.create_chat_completion.return_value = {"choices": [{"message": {"content": content}}]}
model._llama = fake
return model, fake
def test_generate_json_constrains_grammar_and_temperature(self) -> None:
schema = {"type": "object", "properties": {"ok": {"type": "boolean"}}}
model, fake = self._model_with_fake_llama('{"ok": true}')
out = model.generate_json([{"role": "user", "content": "x"}], schema=schema)
assert out == '{"ok": true}'
_, kwargs = fake.create_chat_completion.call_args
assert kwargs["temperature"] == 0.0
assert kwargs["response_format"] == {
"type": "json_object",
"schema": schema,
}
def test_generate_json_without_schema_uses_json_mode(self) -> None:
model, fake = self._model_with_fake_llama("{}")
model.generate_json([{"role": "user", "content": "x"}])
_, kwargs = fake.create_chat_completion.call_args
assert kwargs["response_format"] == {"type": "json_object"}
def test_generate_strips_reasoning_block(self) -> None:
model, _ = self._model_with_fake_llama("<think>plan</think>Ola!")
assert model.generate([{"role": "user", "content": "q"}]) == "Ola!"
def test_generate_uses_low_temperature_with_room_to_think(self) -> None:
model, fake = self._model_with_fake_llama("Ola!")
model.generate([{"role": "user", "content": "q"}])
_, kwargs = fake.create_chat_completion.call_args
assert kwargs["temperature"] == 0.2
assert kwargs["max_tokens"] == 2048
def test_default_context_window_is_8k(self) -> None:
from vivamais.adapters.models.llama_cpp import MiniCPM5TextModel
with patch.dict(os.environ, {}, clear=True):
assert MiniCPM5TextModel()._n_ctx == 8192
def test_context_window_env_override(self) -> None:
from vivamais.adapters.models.llama_cpp import MiniCPM5TextModel
with patch.dict(os.environ, {"VIVAMAIS_QA_N_CTX": "4096"}, clear=False):
assert MiniCPM5TextModel()._n_ctx == 4096
def _model_with_fake_stream(self, pieces: list[str]):
from vivamais.adapters.models.llama_cpp import MiniCPM5TextModel
model = MiniCPM5TextModel()
fake = MagicMock()
fake.create_chat_completion.return_value = iter(
[{"choices": [{"delta": {"content": p}}]} for p in pieces]
)
model._llama = fake
return model
def test_stream_filters_think_block_split_across_chunks(self) -> None:
model = self._model_with_fake_stream(
["<th", "ink>plano ", "secreto</th", "ink>Ola", " Maria"]
)
chunks = list(model.stream([{"role": "user", "content": "q"}]))
assert "".join(chunks) == "Ola Maria"
assert all("think" not in c for c in chunks)
def test_stream_passes_through_plain_answer(self) -> None:
model = self._model_with_fake_stream(["Ola ", "Maria"])
assert "".join(model.stream([{"role": "user", "content": "q"}])) == "Ola Maria"
|