Example Usage

import { PromptCreate } from "syllable-sdk/models/components";

let value: PromptCreate = {
  name: "<value>",
  type: "<value>",
  llmConfig: {
    provider: "openai",
    model: "gpt-4o",
    version: "2024-05-13",
    apiVersion: "2024-06-01",
  },
};

Fields

FieldTypeRequiredDescription
namestringTRUEThe Prompt name
descriptionstringFALSEThe description of the prompt
typestringTRUEThe type of the prompt
contextstringFALSEThe prompt text
toolsstring[]FALSEThe tools for the prompt
llmConfigcomponents.LlmConfigTRUEThe configuration for the language model used by the Cortex API.