Skip to main content

FlattenedConversationMessage

This is a flattened DAG safe version of a ConversationMessage.

Properties

NameType
schemaEmbeddedModelSchema
idstring
createdGroupedTimestamp
updatedGroupedTimestamp
deletedGroupedTimestamp
modelModel
fragmentFragmentFormat
conversationReferencedConversation
sentimentConversationMessageSentimentEnum
roleQGPTConversationMessageRoleEnum
scoreScore
annotationsFlattenedAnnotations

Example

import { FlattenedConversationMessage } from '@pieces.app/pieces-os-client'

// TODO: Update the object below with actual values
const example: FlattenedConversationMessage = {
"schema": null,
"id": null,
"created": null,
"updated": null,
"deleted": null,
"model": null,
"fragment": null,
"conversation": null,
"sentiment": null,
"role": null,
"score": null,
"annotations": null,
}

console.log(example)

// Convert the instance to a JSON string
const exampleJSON: string = JSON.stringify(example)
console.log(exampleJSON)

// Parse the JSON string back to an object
const exampleParsed = JSON.parse(exampleJSON) as FlattenedConversationMessage
console.log(exampleParsed)