Interface ConfigOptions

interface ConfigOptions {
    autoFocus: boolean;
    codeBlockActions?: CodeBlockActions;
    codeCopyToClipboardEnabled?: boolean;
    codeInsertToCursorEnabled?: boolean;
    dragOverlayIcon?: CustomIcon | MynahIcons | "q" | "at" | "menu" | "minus" | "minus-circled" | "search" | "plus" | "paper-clip" | "pin" | "list-add" | "tabs" | "chat" | "link" | "folder" | "file" | "flash" | "doc" | "dot" | "external" | "cancel" | "cancel-circle" | "calendar" | "comment" | "megaphone" | "magic" | "notification" | "eye" | "ellipsis" | "ellipsis-h" | "ok" | "up-open" | "down-open" | "right-open" | "left-open" | "resize-full" | "resize-small" | "block" | "ok-circled" | "info" | "warning" | "error" | "thumbs-up" | "thumbs-down" | "star" | "stack" | "light-bulb" | "envelope-send" | "enter" | "refresh" | "progress" | "scroll-down" | "user" | "play" | "pause" | "stop" | "pencil" | "code-block" | "copy" | "cursor-insert" | "text-select" | "tools" | "revert" | "undo" | "rocket" | "asterisk" | "bug" | "check-list" | "deploy" | "shell" | "help" | "message" | "mcp" | "trash" | "transform" | "history" | "image";
    feedbackOptions: {
        label: string;
        value: string;
    }[];
    maxTabs: number;
    maxTabsTooltipDuration?: number;
    maxUserInput: number;
    noMoreTabsTooltip?: string;
    showPromptField: boolean;
    tabBarButtons?: TabBarMainAction[];
    test?: boolean;
    userInputLengthWarningThreshold: number;
}

Hierarchy (view full)

Properties

autoFocus: boolean
codeBlockActions?: CodeBlockActions
codeCopyToClipboardEnabled?: boolean
codeInsertToCursorEnabled?: boolean
dragOverlayIcon?: CustomIcon | MynahIcons | "q" | "at" | "menu" | "minus" | "minus-circled" | "search" | "plus" | "paper-clip" | "pin" | "list-add" | "tabs" | "chat" | "link" | "folder" | "file" | "flash" | "doc" | "dot" | "external" | "cancel" | "cancel-circle" | "calendar" | "comment" | "megaphone" | "magic" | "notification" | "eye" | "ellipsis" | "ellipsis-h" | "ok" | "up-open" | "down-open" | "right-open" | "left-open" | "resize-full" | "resize-small" | "block" | "ok-circled" | "info" | "warning" | "error" | "thumbs-up" | "thumbs-down" | "star" | "stack" | "light-bulb" | "envelope-send" | "enter" | "refresh" | "progress" | "scroll-down" | "user" | "play" | "pause" | "stop" | "pencil" | "code-block" | "copy" | "cursor-insert" | "text-select" | "tools" | "revert" | "undo" | "rocket" | "asterisk" | "bug" | "check-list" | "deploy" | "shell" | "help" | "message" | "mcp" | "trash" | "transform" | "history" | "image"
feedbackOptions: {
    label: string;
    value: string;
}[]

Type declaration

  • label: string
  • value: string
maxTabs: number
maxTabsTooltipDuration?: number
maxUserInput: number
noMoreTabsTooltip?: string
showPromptField: boolean
tabBarButtons?: TabBarMainAction[]
test?: boolean
userInputLengthWarningThreshold: number