Parasail · Capability

Inference Chat Completions

Inference Chat Completions is a Naftiko capability published by Parasail, one of 6 capabilities the APIs.io network indexes for this provider.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Run with Naftiko

Capability Spec

inference-chat-completions.yaml Raw ↑
name: parasail-inference-chat-completions
description: |
  Generate chat completions against any serverless model exposed by Parasail using the
  OpenAI-compatible /v1/chat/completions endpoint. Supports streaming, tool use, and
  structured outputs across DeepSeek, Qwen, Llama, and other open-weight LLMs.
provider: parasail
api: parasail-inference-api
operations:
  - operationId: createChatCompletion
    method: POST
    path: /chat/completions
inputs:
  - name: model
    required: true
    description: Parasail serverless model identifier.
  - name: messages
    required: true
    description: Ordered list of system/user/assistant/tool messages.
  - name: stream
    description: When true, response is streamed as SSE chunks.
outputs:
  - name: completion
    description: The generated assistant message and usage information.