Skip to content

Commit 2965d11

Browse files
committed
Add logo, improve README and SDK README
- Add VerifyWise logo with light/dark mode support - Center-aligned header with tagline and badges - Rewrite SDK README with practical examples for every major feature - Add dark-mode SVG variant for GitHub rendering Made-with: Cursor
1 parent 6238f9f commit 2965d11

File tree

4 files changed

+265
-13
lines changed

4 files changed

+265
-13
lines changed
Lines changed: 5 additions & 0 deletions
Loading

.github/assets/verifywise-logo.svg

Lines changed: 5 additions & 0 deletions
Loading

README.md

Lines changed: 24 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,29 @@
1-
# VerifyWise LLM Evaluation Action
1+
<p align="center">
2+
<a href="https://verifywise.ai">
3+
<picture>
4+
<source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/verifywise-ai/verifywise-eval-action/main/.github/assets/verifywise-logo-dark.svg">
5+
<source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/verifywise-ai/verifywise-eval-action/main/.github/assets/verifywise-logo.svg">
6+
<img alt="VerifyWise" src="https://raw.githubusercontent.com/verifywise-ai/verifywise-eval-action/main/.github/assets/verifywise-logo.svg" width="300">
7+
</picture>
8+
</a>
9+
</p>
10+
11+
<h1 align="center">LLM Evaluation Action</h1>
12+
13+
<p align="center">
14+
<strong>Automatically evaluate your LLMs on every pull request.</strong><br>
15+
Gate merges on correctness, faithfulness, hallucination, toxicity, and bias — enforced in CI.
16+
</p>
17+
18+
<p align="center">
19+
<a href="https://github.com/verifywise-ai/verifywise-eval-action"><img src="https://img.shields.io/badge/GitHub%20Action-VerifyWise%20Eval-green?logo=github" alt="GitHub Action"></a>
20+
<a href="LICENSE"><img src="https://img.shields.io/badge/License-Apache%202.0-blue.svg" alt="License"></a>
21+
<a href="https://pypi.org/project/verifywise/"><img src="https://img.shields.io/pypi/v/verifywise?label=SDK" alt="Python SDK"></a>
22+
</p>
223

3-
[![GitHub Action](https://img.shields.io/badge/GitHub%20Action-VerifyWise%20Eval-green?logo=github)](https://github.com/verifywise-ai/verifywise-eval-action)
4-
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](LICENSE)
5-
[![Python SDK](https://img.shields.io/pypi/v/verifywise?label=SDK)](https://pypi.org/project/verifywise/)
6-
7-
**Automatically evaluate your LLMs on every pull request.** This action connects to [VerifyWise](https://verifywise.ai) — the open-source AI governance platform — to run your models against curated test datasets and block merges when quality drops below your standards.
24+
---
825

9-
> Think of it as unit tests for your LLM: correctness, faithfulness, hallucination, toxicity, bias — measured on every code change, enforced in CI.
26+
This action connects to [VerifyWise](https://verifywise.ai) — the open-source AI governance platform — to run your models against curated test datasets and block merges when quality drops below your standards.
1027

1128
---
1229

0 commit comments

Comments
 (0)