llm-testing

Installation
SKILL.md

LLM Testing Patterns

Test AI applications with deterministic patterns using DeepEval and RAGAS.

Quick Reference

Mock LLM Responses

from unittest.mock import AsyncMock, patch

@pytest.fixture
def mock_llm():
    mock = AsyncMock()
    mock.return_value = {"content": "Mocked response", "confidence": 0.85}
    return mock
Installs
11
GitHub Stars
182
First Seen
Jan 22, 2026
llm-testing — yonatangross/orchestkit