PostHog · Schema

LLMPromptEditOperation

A/B TestingAnalyticsFeature FlagsOpen SourceProduct AnalyticsSession Recording

Properties

Name Type Description
old string Text to find in the current prompt. Must match exactly once.
new string Replacement text.
View JSON Schema on GitHub

JSON Schema

posthog-llmprompteditoperation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/LLMPromptEditOperation",
  "title": "LLMPromptEditOperation",
  "type": "object",
  "properties": {
    "old": {
      "type": "string",
      "description": "Text to find in the current prompt. Must match exactly once."
    },
    "new": {
      "type": "string",
      "description": "Replacement text."
    }
  },
  "required": [
    "new",
    "old"
  ]
}