idiom-finder / tests /conftest.py
Mel Seto
Add verification module that verifies LLM results using CcCEdict and Wikitionary
456f698
raw
history blame contribute delete
211 Bytes
import pytest
from verification.wiktionary_client import WiktionaryClient
@pytest.fixture
def wiktionary_client():
"""Return a real Wiktionary client for integration tests."""
return WiktionaryClient()