๐ค AI & MACHINE LEARNING
Detect & Correct AI Bias
ZPL gives every AI response a neutrality score from 0.0 to 1.0. Filter biased outputs, balance training data, and monitor model drift โ all with one API.
AIN
0.0 = completely biased ยท 1.0 = perfectly neutral
3
filter modes: analyze, rebalance, strict
Any
language โ Romanian, English, Spanish and more
1 call
per response โ AI self-rates its own neutrality
Live Demo
AIN Score Bias Meter
Type any text and see the ZPL AIN score in real time. Works in any language.
AIN SCORE
0.0 Biased 0.5 Neutral 1.0 Perfect
Type something to analyze...
AIN Score Reference
0.7 โ 1.0
ZPL CERTIFIED
0.4 โ 0.7
BORDERLINE
0.0 โ 0.4
BIASED
Example Scores
0.95 "Climate change has both human and natural causes"
0.55 "Electric cars are generally better for the environment"
0.18 "This product is absolutely the best, no downsides"
Applications
ZPL Across AI & ML Pipelines
๐
Response Filtering Every AI response gets an AIN score. Auto-retry if biased. Works with any LLM via the ZPL AI Proxy.
analyze / rebalance / strict
๐ฆ
Training Data Balance Use ZPL /compute to generate balanced binary labels for imbalanced datasets. Eliminates class bias before training.
Dataset correction
๐
Model Drift Monitoring Run AIN scoring on model outputs weekly. Track neutrality over time โ catch bias drift before it affects users.
Continuous monitoring
๐
Content Moderation Score user-generated content and AI responses for bias. Flag anything below AIN 0.4 for human review.
Auto-flagging
๐
Multilingual Bias AIN scoring works across languages. Romanian, English, Spanish โ ZPL AI self-rates neutrality in any language.
Language agnostic
๐
LLM Comparison Benchmark different LLMs on neutrality. Which model is most balanced on controversial topics? AIN tells you.
Model benchmarking
Code
Integrate ZPL into Your AI Pipeline
Copy # Python โ ZPL bias filter for any LLM output
import requests
def analyze_bias (text: str, api_key: str) -> dict:
"""Score any text for bias using ZPL AIN metric."""
res = requests.post(
"https://zpl-backend.onrender.com/ai/analyze" ,
headers={"X-Api-Key" : api_key},
json={"text" : text}
).json()
return {
"ain_score" : res["ain_score" ],
"certified" : res["zpl_certified" ],
"direction" : res["bias_direction" ] # positive/negative/neutral
}
def zpl_filtered_chat (messages: list, api_key: str, mode="rebalance" ) -> dict:
"""Chat with Groq AI + automatic ZPL bias correction."""
res = requests.post(
"https://zpl-backend.onrender.com/ai/chat" ,
headers={"X-Api-Key" : api_key},
json={
"messages" : messages,
"zpl_options" : {"filter_mode" : mode}
}
).json()
return {
"response" : res["response" ],
"ain_score" : res["zpl_filter" ]["ain_score" ],
"rebalanced" : res["zpl_filter" ]["was_rebalanced" ]
}
Start Detecting AI Bias
Free account โ 50 AI calls + 1,000 analysis calls/month.
PRICING
Simple, Transparent Pricing
Run AI bias detection, AIN scoring, and neutrality filtering at scale โ from prototype to production.
PRO
$29/mo
Best for developers & researchers
โ 600 AI analysis calls/month
โ 35,000 /compute calls
โ AIN score on every response
โ POST /ai/chat endpoint
โ 3 API keys ยท Max N=25
Get Started
MOST POPULAR
STUDIO
$149/mo
For AI teams & production pipelines
โ 6,000 AI analysis calls/month
โ 300,000 /compute calls
โ LLM bias detection pipeline
โ Batch neutrality rebalancing
โ 10 API keys ยท Max N=48
Get Started
ENTERPRISE
$499/mo
Unlimited AI at enterprise scale
โ 50,000 AI calls/month
โ Unlimited /compute + /sweep
โ Custom AI proxy integration
โ SLA + priority support
โ 25 API keys ยท Max N=64
Contact Sales
View all 8 plans โ