Introduction
Welcome to the Mankinds documentation.
Mankinds is an AI systems evaluation platform. It allows you to test and measure the compliance of your systems across different themes: privacy, security, accuracy, etc.
Resources
- SDK: JavaScript/TypeScript and Python SDK documentation
- Knowledge Glossary: Key terms definitions for AI evaluation
Quick Start
Choose your language:
In a few minutes, evaluate your first AI system.
Get an API key
Create an account on app.mankinds.io and generate your API key from settings.
Install the SDK
pip install mankinds-sdk
Configure and use
from mankinds_sdk import MankindsClient
client = MankindsClient(api_key='mk_your_api_key')
# Create a system, generate a dataset, evaluate
system = client.create_system('My Chatbot', '...', endpoint={...})
dataset = client.generate_dataset(system['id'], num_scenarios=10)
result = client.evaluate(system['id'])
print(f"Score: {result['summary']['global_score']}")
See the full SDK guide for the detailed API reference.
Support
For any questions: [email protected]
Was this page helpful?