ReviewLlama/tests/conftest.py

11 lines
242 B
Python
Raw Normal View History

2025-07-14 14:26:56 -04:00
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"
2025-07-14 14:26:56 -04:00
)