ConversationMessage
This is a fully referenced ConversationMessage. This has the minimum amount of properties to keep this light weight (will consider additional properties in the future like people/tags/links xyz)
Properties
Name | Type |
---|---|
schema | EmbeddedModelSchema |
id | string |
created | GroupedTimestamp |
updated | GroupedTimestamp |
deleted | GroupedTimestamp |
model | Model |
fragment | FragmentFormat |
conversation | ReferencedConversation |
sentiment | ConversationMessageSentimentEnum |
role | QGPTConversationMessageRoleEnum |
score | Score |
annotations | FlattenedAnnotations |
Example
import { ConversationMessage } from '@pieces.app/pieces-os-client'
// TODO: Update the object below with actual values
const example: ConversationMessage = {
"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 ConversationMessage
console.log(exampleParsed)