-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathllms.txt
More file actions
39 lines (31 loc) · 1.68 KB
/
llms.txt
File metadata and controls
39 lines (31 loc) · 1.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Tuteliq Python SDK
> Official Python SDK for Tuteliq — AI-powered child safety API for detecting bullying, grooming, and unsafe content.
## What is this?
A Python library for the Tuteliq child safety API. Detect bullying, grooming, self-harm, substance promotion, sexual exploitation, and other harmful content in text, conversations, audio, images, and video. Supports both synchronous and async clients.
## Install
pip install tuteliq
## Quick Start
import os
from tuteliq import Tuteliq
client = Tuteliq(api_key=os.environ["TUTELIQ_API_KEY"])
result = client.detect_unsafe(text="content to check", age_group="13-15")
## Async
from tuteliq import AsyncTuteliq
client = AsyncTuteliq(api_key=os.environ["TUTELIQ_API_KEY"])
result = await client.detect_unsafe(text="content to check", age_group="13-15")
## Key Features
- Sync and async clients
- All 20+ Tuteliq API endpoints
- 16+ detection categories (KOSA compliant)
- Age group calibration (under-10, 10-12, 13-15, 14-17)
- Age verification (Beta) — POST /v1/verification/age (Pro tier+, 5 credits)
- Identity verification (Beta) — POST /v1/verification/identity (Business tier+, 10 credits)
- Automatic retries and error handling
- Python 3.9+
## Supported Languages
27 languages: English (stable), Spanish, Portuguese, Ukrainian, Swedish, Norwegian, Danish, Finnish, German, French, Dutch, Polish, Italian, Turkish, Romanian, Greek, Czech, Hungarian, Bulgarian, Croatian, Slovak, Lithuanian, Latvian, Estonian, Slovenian, Maltese, Irish (beta). Auto-detected, no configuration needed.
## Links
- Website: https://tuteliq.ai
- Documentation: https://docs.tuteliq.ai
- PyPI: https://pypi.org/project/tuteliq/
- GitHub: https://github.com/Tuteliq/python