Update tests for vector_store_code

This commit is contained in:
Alex Selimov 2025-07-14 14:26:56 -04:00
parent 24bfef99a2
commit 0bff803b91
Signed by: aselimov
GPG key ID: 3DDB9C3E023F1F31
7 changed files with 210 additions and 10 deletions

View file

@ -4,18 +4,10 @@ Unit tests for llm chat client functionality
import pytest
from reviewllama.configs import create_ollama_config
from reviewllama.llm import chat_with_client, create_chat_client
from reviewllama.utilities import is_ollama_available
@pytest.fixture
def ollama_config():
return create_ollama_config(
"gemma3:4b", "localhost:11434", "You are a helpful assistant.", 0.0
)
@pytest.fixture
def chat_client(ollama_config):
return create_chat_client(ollama_config)