Type Alias PromptInput

type PromptInput = {
    input?: {
        includeText?: boolean;
        prompt?: string;
        promptType?: "thread";
    };
}
Index

Properties

Properties

input?: { includeText?: boolean; prompt?: string; promptType?: "thread" }

Type declaration

  • OptionalincludeText?: boolean

    Returns text from chunks in sources output. Default value is false.

  • Optionalprompt?: string

    Input prompt string for the Assistant to respond to.

  • OptionalpromptType?: "thread"

    Sets the prompt type to thread.