Features
Everything you need to manage your LLM prompts
HaikuStore provides all the tools you need to create, manage, and optimize your AI prompts.
Powerful Prompt Editor
Create and edit prompts with our intuitive editor featuring syntax highlighting, variable placeholders, and template support. Test your prompts directly in the interface.
Version Control & History
Track changes, compare versions, and roll back to previous prompt iterations. Never lose your best performing prompts again.
Analytics & Instrumentation
Monitor prompt usage, performance metrics, and costs. Identify opportunities to optimize your most expensive or frequently used prompts.
import { PromptManager } from 'haiku-store';
// Initialize the client
const prompts = new PromptManager({
apiKey: process.env.HAIKU_STORE_API_KEY
});
// Fetch a prompt by ID with variables
const response = await prompts.get({
slug: 'product-description',
variables: {
productName: 'Eco-friendly Water Bottle',
features: ['Insulated', 'BPA-free', 'Leak-proof']
},
filters: {
targetModel: 'gpt-4',
version: 'latest'
}
});
console.log(response.text);