register_platform
Register custom AI platforms for prompt optimization by providing category, instructions, and syntax hints to integrate with existing prompt transformation workflows.
Instructions
Register a new custom AI platform for prompt optimization. The platform must belong to an existing category. Use instructions or instructions_file to provide detailed guidance on how prompts should be optimized for this platform.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Unique platform ID (lowercase, alphanumeric with hyphens, e.g. 'my-llm') | |
| category | Yes | Category this platform belongs to | |
| label | Yes | Human-readable platform name (e.g. 'My Custom LLM') | |
| description | Yes | Short description of the platform | |
| syntax_hints | No | Platform-specific syntax hints (e.g. ['system prompts', 'JSON mode']) | |
| instructions | No | Inline instructions for prompt optimization on this platform | |
| instructions_file | No | Path to a .md file with detailed instructions (relative to config dir's instructions/ folder, or absolute) |