create-prompt-version
Generate and manage prompt versions by specifying a name, template, and commit message for organized and trackable updates in the Opik MCP Server.
Instructions
Create a new version of a prompt
Input Schema
Name | Required | Description | Default |
---|---|---|---|
commit_message | Yes | Commit message for the prompt version | |
name | Yes | Name of the original prompt | |
template | Yes | Template content for the prompt version |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"commit_message": {
"description": "Commit message for the prompt version",
"type": "string"
},
"name": {
"description": "Name of the original prompt",
"type": "string"
},
"template": {
"description": "Template content for the prompt version",
"type": "string"
}
},
"required": [
"name",
"template",
"commit_message"
],
"type": "object"
}