ReviewLlama/tests/conftest.py

10 lines
242 B
Python

import pytest
from reviewllama.configs import create_ollama_config
@pytest.fixture
def ollama_config():
return create_ollama_config(
"gemma3:4b", "localhost:11434", "You are a helpful assistant.", 0.0, "nomic-embed-text"
)