11 lines
222 B
Python
11 lines
222 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
|
||
|
)
|