BasePrompt

interface ApiBasePrompt {
    commitMessage?: null | string;
    config: any;
    labels: string[];
    name: string;
    tags: string[];
    version: number;
}

Properties

commitMessage?: null | string

Commit message for this prompt version.

config: any
labels: string[]

List of deployment labels of this prompt version.

name: string
tags: string[]

List of tags. Used to filter via UI and API. The same across versions of a prompt.

version: number