Interface ApiCreateChatPromptRequest

CreateChatPromptRequest

interface ApiCreateChatPromptRequest {
    commitMessage?: null | string;
    config?: any;
    labels?: null | string[];
    name: string;
    prompt: ApiChatMessage[];
    tags?: null | string[];
}

Properties

commitMessage?: null | string

Commit message for this prompt version.

config?: any
labels?: null | string[]

List of deployment labels of this prompt version.

name: string
prompt: ApiChatMessage[]
tags?: null | string[]

List of tags to apply to all versions of this prompt.