Skip to main content

TreeAgentSystemMessage Interface

A system message providing context to the model.

This API is provided as an alpha preview and may change without notice.

To use, import via @fluidframework/tree-agent/alpha.

For more information about our API support guarantees, see here.

Signature

export interface TreeAgentSystemMessage

Properties

PropertyAlertsModifiersTypeDescription
contentAlphareadonlystringThe text content of the message.
roleAlphareadonly"system"Identifies the message type within a TreeAgentChatMessage array.

Property Details

content

The text content of the message.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

readonly content: string;

Type: string

role

Identifies the message type within a TreeAgentChatMessage array.

This API is provided as an alpha preview and may change without notice.

For more information about our API support guarantees, see here.

Signature

readonly role: "system";

Type: "system"