objectiveai-sdk 2.0.7

ObjectiveAI SDK, definitions, and utilities
Documentation
{
  "title": "error.ErrorCreateParams",
  "description": "Request to trigger an error response for testing purposes.",
  "type": "object",
  "properties": {
    "seed": {
      "description": "Random seed for deterministic error generation.",
      "anyOf": [
        {
          "type": "integer",
          "minimum": -9223372036854775808,
          "maximum": 9223372036854775807
        },
        {
          "type": "null"
        }
      ],
      "omitempty": true
    },
    "stream": {
      "description": "Whether to stream the response.",
      "anyOf": [
        {
          "type": "boolean"
        },
        {
          "type": "null"
        }
      ],
      "omitempty": true
    }
  }
}