Letta · Schema

TopLogprob

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
token string
bytes object
logprob number
View JSON Schema on GitHub

JSON Schema

letta-letta-schemas-openai-chat-completion-response-toplogprob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/letta__schemas__openai__chat_completion_response__TopLogprob",
  "title": "TopLogprob",
  "properties": {
    "token": {
      "type": "string",
      "title": "Token"
    },
    "bytes": {
      "anyOf": [
        {
          "items": {
            "type": "integer"
          },
          "type": "array"
        },
        {
          "type": "null"
        }
      ],
      "title": "Bytes"
    },
    "logprob": {
      "type": "number",
      "title": "Logprob"
    }
  },
  "type": "object",
  "required": [
    "token",
    "logprob"
  ]
}