Type Alias CreateAssistantWithAvatar

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

Properties

avatar?: string

user uploaded avatar, filetype must be png

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

System prompt setting up conversation context.

tags: string[]
title: string
welcomeMessage: string