Type Alias Assistant

type Assistant = {
    createdAt: string;
    createdBy: string;
    customProperties: unknown;
    defaultPromptType?: "thread" | "oneshot";
    description: string;
    hasAvatar?: boolean;
    id: string;
    knowledgeBases: string[];
    name: string;
    orderedStarterIds?: string[];
    ownerId: string;
    spaceId: string;
    systemMessage?: string;
    tags: string[];
    tenantId: string;
    title?: string;
    updatedAt: string;
    updatedBy: string;
    welcomeMessage: string;
}
Index

Properties

createdAt: string

Datetime when the assistant was created.

createdBy: string
customProperties: unknown
defaultPromptType?: "thread" | "oneshot"
description: string
hasAvatar?: boolean
id: string
knowledgeBases: string[]
name: string
orderedStarterIds?: string[]
ownerId: string
spaceId: string
systemMessage?: string

System prompt setting up conversation context.

tags: string[]
tenantId: string
title?: string
updatedAt: string
updatedBy: string
welcomeMessage: string