chatlisted
Install: claude install-skill aiskillstore/marketplace
# AI Chat / Text Generation — verging.ai
Generate AI chat completions using GPT-4o through the verging.ai proxy API. Supports both streaming (SSE) and non-streaming responses.
## Authentication
All requests require an API key in the `Authorization` header:
```
Authorization: ApiKey vrg_sk_xxx
```
Replace `vrg_sk_xxx` with your verging.ai API key. You can generate one at https://verging.ai under your account settings.
## Endpoint
```
POST https://verging.ai/api/v1/ai/chat
Content-Type: application/json
```
## Parameters
| 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