OBJECT

ClassificationReinforcementDocument

link GraphQL Schema definition

  • type ClassificationReinforcementDocument implements Node {
  • id: ID!
  • # Descriptive title for the reinforcement document.
  • title: String
  • # The example document content used for reinforcement learning.
  • body: String!
  • # Special instructions or context for this example.
  • instructions: String
  • # The type of reinforcement this document provides.
  • reinforcement: ClassificationReinforcementDocumentReinforcement!
  • # Order in which this document appears.
  • ordinal: Int!
  • # Whether this reinforcement document is active.
  • active: Boolean!
  • createdAt: Time!
  • updatedAt: Time!
  • # The classification category this reinforcement document belongs to.
  • category: ClassificationCategory!
  • # Optional link to a post if this document was sourced from one.
  • post: Post
  • }