chat — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited chat (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Generate AI chat completions using GPT-4o through the verging.ai proxy API. Supports both streaming (SSE) and non-streaming responses.
All requests require an API key in the Authorization header:
Authorization: ApiKey vrg_sk_xxxReplace vrg_sk_xxx with your verging.ai API key. You can generate one at https://verging.ai under your account settings.
POST https://verging.ai/api/v1/ai/chat
Content-Type: application/json| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
| messages | array | Yes | — | Array of message objects {role, content} |
| model | string | No | gpt-4o | Model to use |
| temperature | float | No | — | Sampling temperature (0–2) |
| max_tokens | int | No | — | Maximum tokens in the response |
| stream | boolean | No | false | Enable Server-Sent Events streaming |
Each message object:
| Field | Type | Description |
|---|---|---|
| role | string | system, user, or assistant |
| content | string | The message content |
Requires a minimum balance of 5 credits before calling (post-deduct billing).
curl -X POST https://verging.ai/api/v1/ai/chat \
-H "Authorization: ApiKey vrg_sk_xxx" \
-H "Content-Type: application/json" \
-d '{
"messages": [
{"role": "system", "content": "You are a helpful assistant."},
{"role": "user", "content": "Explain quantum computing in one paragraph."}
],
"temperature": 0.7,
"max_tokens": 256
}'curl -N -X POST https://verging.ai/api/v1/ai/chat \
-H "Authorization: ApiKey vrg_sk_xxx" \
-H "Content-Type: application/json" \
-d '{
"messages": [
{"role": "user", "content": "Write a haiku about coding."}
],
"stream": true
}'{
"content": "Quantum computing leverages quantum mechanical phenomena...",
"usage": {
"prompt_tokens": 24,
"completion_tokens": 85,
"total_tokens": 109
},
"credits_consumed": 1
}The response is a stream of Server-Sent Events. Each content chunk:
data: {"content": "Quantum "}
data: {"content": "computing "}The final chunk includes usage and credits information:
data: {"usage": {"prompt_tokens": 24, "completion_tokens": 85, "total_tokens": 109}, "credits_consumed": 1}
data: [DONE]| Token Type | Rate |
|---|---|
| Input | 1 credit / 10K tokens |
| Output | 3 credits / 10K tokens |
Minimum charge: 1 credit per request.
| HTTP Status | Error Code | Description |
|---|---|---|
| 402 | 40001 | Insufficient credits (minimum 5 required) |
| 429 | — | Rate limit exceeded (check X-RateLimit-Reset) |
| 502 | — | Upstream provider error |
| 503 | — | Service unavailable or upstream timeout |
Error response format:
{
"error_code": 40001,
"message": "Insufficient credits. Required: 5, available: 2",
"upstream_error": null
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.