Letta · Schema

ChatCompletionContentPartTextParam

Learn about [text inputs](https://platform.openai.com/docs/guides/text-generation).

AIAgentsStateful AgentsMemoryMemGPTContinual LearningMCPMulti-AgentRAGOpen Source

Properties

Name Type Description
text string
type string
View JSON Schema on GitHub

JSON Schema

letta-chatcompletioncontentparttextparam-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ChatCompletionContentPartTextParam",
  "title": "ChatCompletionContentPartTextParam",
  "properties": {
    "text": {
      "type": "string",
      "title": "Text"
    },
    "type": {
      "type": "string",
      "const": "text",
      "title": "Type"
    }
  },
  "type": "object",
  "required": [
    "text",
    "type"
  ],
  "description": "Learn about [text inputs](https://platform.openai.com/docs/guides/text-generation)."
}