10 lines
242 B
Python
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"
|
|
)
|