For the complete documentation index, see llms.txt. This page is also available as Markdown.

Chat and Text Generation

Build chatbots, assistants, and text generation pipelines with Parasail's OpenAI-compatible API.

Use Parasail to build chatbots, virtual assistants, content generators, and any application that involves conversational AI. Our API is fully OpenAI-compatible—point your existing OpenAI SDK at our base URL and start building.

Choose your deployment model

Need
Recommended product

Quick experimentation or low-volume production

Serverless—pay per token, no setup

Production with latency/cost control

Dedicated instances—private GPUs, auto-scaling

Large-scale offline processing (evals, data)

Batch—50% off, up to millions of prompts

Quickstart

Make your first chat completion call in under two minutes:

from openai import OpenAI

client = OpenAI(
    base_url="https://api.parasail.io/v1",
    api_key="<PARASAIL_API_KEY>"
)

response = client.chat.completions.create(
    model="parasail-deepseek-r1",
    messages=[{"role": "user", "content": "Explain quantum computing in one paragraph."}]
)

print(response.choices[0].message.content)

See the serverless quickstart for the full guide.

Relevant guides

API reference

Available models

Browse all available serverless models:

See also: Model selection and model-specific Serverless notes.

Last updated