Skip to Content
API ReferenceLlmGPT OSS 120B

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

ParameterTypeRequiredDescription
apikeystringYesYour secret Zapi API key.
promptstringYesThe core instruction or question.
systempromptstringNoSystem-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