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-openai-types-chat-chat-completion-token-logprob-toplogprob-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/openai__types__chat__chat_completion_token_logprob__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"
    }
  },
  "additionalProperties": true,
  "type": "object",
  "required": [
    "token",
    "logprob"
  ]
}