e768098d0e
Flake8 Lint / flake8 (push) Waiting to run
Spell check CI / Spell_Check (push) Waiting to run
tools_continuous_delivery / Private PyPI non-main branch release (push) Has been skipped
tools_continuous_delivery / Private PyPI main branch release (push) Failing after 2m42s
Publish Promptflow Doc / Build (push) Has been cancelled
Publish Promptflow Doc / Deploy (push) Has been cancelled
46 lines
1.5 KiB
Python
46 lines
1.5 KiB
Python
import asyncio
|
|
import json
|
|
from pathlib import Path
|
|
from workflow import EvalInput, create_workflow
|
|
|
|
|
|
async def test_single_row():
|
|
"""Smoke test - requires Azure OpenAI credentials in .env"""
|
|
wf = create_workflow()
|
|
result = await wf.run(EvalInput(
|
|
document="The quick brown fox jumps over the lazy dog.",
|
|
summary="A fox jumped over a dog.",
|
|
))
|
|
scores = result.get_outputs()[0]
|
|
assert isinstance(scores, dict)
|
|
assert set(scores.keys()) == {"coherence", "consistency", "fluency", "relevance"}
|
|
for v in scores.values():
|
|
assert isinstance(v, float)
|
|
print(f"PASS: test_single_row (scores={scores})")
|
|
|
|
|
|
async def test_data_jsonl():
|
|
"""Run eval on every row in data.jsonl"""
|
|
data_path = Path(__file__).parent / "data.jsonl"
|
|
rows = [json.loads(line) for line in data_path.read_text(encoding="utf-8").splitlines() if line.strip()]
|
|
wf = create_workflow()
|
|
for i, row in enumerate(rows):
|
|
result = await wf.run(EvalInput(
|
|
document=row["document"],
|
|
summary=row["summary"],
|
|
))
|
|
scores = result.get_outputs()[0]
|
|
assert isinstance(scores, dict), f"Row {i}: expected dict, got {type(scores)}"
|
|
print(f" Row {i}: scores={scores}")
|
|
print(f"PASS: test_data_jsonl ({len(rows)} rows)")
|
|
|
|
|
|
async def main():
|
|
await test_single_row()
|
|
await test_data_jsonl()
|
|
print("\nAll tests passed!")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main())
|