Platform / Prompt Lab

Engineer prompts. Deploy confidence.

Version control, test, and optimize your prompts collaboratively. Deploy changes without touching code. See what works with real data.

Your prompt engineering workspace

Test, version, and deploy prompts with the same rigor as code.

Prompt Library

Customer Support Agent

Version: v2.3.1
Test with GPT-4

Professional prompt management

Version Control

Git-like version control for prompts. Branch, merge, and rollback with confidence.

A/B Testing

Test multiple prompt variations simultaneously. Let data drive your decisions.

Collaborative Editing

Work together on prompts in real-time. Comments, suggestions, and approvals.

Smart Variables

Dynamic variable injection with type safety. Personalize at scale.

Template Library

Pre-built templates for common use cases. Start fast, customize as needed.

Auto-optimization

AI-powered suggestions to improve your prompts based on performance data.

Deploy prompts via API

Update prompts without deploying code. Your app always uses the latest version.

example.py
# Fetch and use the latest prompt version
from metriqual import Metriqual

client = Metriqual(api_key="your-api-key")

# Get the prompt by ID - always returns latest version
prompt = client.prompts.get("customer-support")

# Use with variables
response = prompt.run({
    "company_name": "Acme Corp",
    "tone": "friendly",
    "customer_message": "I need help with my order"
})

print(response.content)
# Output: "Hello! I'd be happy to help you with your order..."

# Track performance automatically
print(f"Version used: {response.prompt_version}")
print(f"Latency: {response.metrics.latency}ms")
print(f"Cost: ${response.metrics.cost}")

Ship better prompts faster

Stop hardcoding prompts. Start iterating based on real user data.