Type Alias CreateAssistant

type CreateAssistant = {
    customProperties: unknown;
    defaultPromptType?: "thread" | "oneshot";
    description: string;
    knowledgeBases: string[];
    name: string;
    orderedStarterIds?: string[];
    spaceId: string;
    systemMessage?: string;
    tags: string[];
    title: string;
    welcomeMessage: string;
}
Index

Properties

customProperties: unknown

freeform JSON to allow custom customization options.

defaultPromptType?: "thread" | "oneshot"
description: string
knowledgeBases: string[]
name: string
orderedStarterIds?: string[]
spaceId: string
systemMessage?: string

System prompt setting up conversation context.

tags: string[]
title: string
welcomeMessage: string