What actually runs where. Useful if you're deciding whether to depend on this API, debugging something unexpected, or just curious.
| Domain / path | What it is |
|---|---|
| www.israelgpt.site | The main site: web chat and docs. |
| www.israelgpt.site/api/v1/chat | The public API described throughout these docs. Offline until accounts come back. |
| www.israelgpt.site/docs | This documentation. |
Always use www.israelgpt.site. No other hostname is supported.
| Service | Role |
|---|---|
| Cloudflare | Hosts everything: the site, the API worker, rate limiting and the database. There is no other hosting, database or cache provider. |
| In-house fine-tuned models | Models fine-tuned by the IsraelGPT team power each completion (see Personas & Models). Only the API worker talks to the model backend. |
| Discord | Only relevant if you use or fork the reference Discord bot (see Discord Bot). It runs as a separate process outside this stack. |
502. There is no switch to a different model. See Errors.www.israelgpt.site.The endpoint returns one complete JSON response, not a token stream. Two reasons: the reference client (a Discord bot) posts one finished message rather than editing it token-by-token, and a plain JSON contract is what keeps onboarding to a curl command and a 10-line snippet instead of an SSE/streaming parser.
// what you get: one response, once generation finishes
const data = await res.json();
console.log(data.reply);