GPT OSS 120B
An ultra-large 120B parameter open-source model designed for extreme reasoning and high-fidelity text generation.
Endpoint
POST https://z.os7.site/api/llm/gpt-oss-120b
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
apikey | string | Yes | Your secret Zapi API key. |
prompt | string | Yes | The core instruction or question. |
systemprompt | string | No | System-level instructions for persona. |
Example Request
curl -X POST https://z.os7.site/api/llm/gpt-oss-120b \
-H "Content-Type: application/json" \
-d '{
"apikey": "zp_your_secret_api_key",
"prompt": "Solve the traveling salesman problem for 5 cities.",
"systemprompt": "You are a mathematical expert."
}'Example Response
{
"status": 200,
"data": {
"text": "To solve the Traveling Salesman Problem (TSP) for 5 cities, we first identify the distance matrix...",
"model": "gpt-oss-120b"
}
}Last updated on