Bifrost · JSON Structure

Bifrost Chat Choice Structure

A single completion choice in the response.

Type: object Properties: 3
AI GatewayLLMLoad BalancingOpen SourceOpenAI CompatibleMCP

ChatChoice is a JSON Structure definition published by Bifrost, describing 3 properties. It conforms to the https://json-structure.org/meta/extended/v0/# meta-schema.

Properties

index message finish_reason

Meta-schema: https://json-structure.org/meta/extended/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/extended/v0/#",
  "name": "ChatChoice",
  "type": "object",
  "description": "A single completion choice in the response.",
  "properties": {
    "index": {
      "type": "int32",
      "description": "Index of this choice."
    },
    "message": {
      "type": "string"
    },
    "finish_reason": {
      "type": "string",
      "description": "Reason the generation stopped."
    }
  }
}