Store, improve, test, and deploy your prompts in one unified workspace.
Supercharge your prompt workflows
Unleash productivity with a company wide database of AI prompts
Tools to help you improve your prompt responses
Iterate with izlo's prompt management tools to get the best responses possible. Our built in version control automatically keeps a shared history of all prompts your company uses.
As you craft your prompts, we automatically track what has been changed to help you understand how it impacts your responses
Every change made to a prompt is tracked and can be viewed by your team. This helps you understand how a prompt has evolved over time.
Quickly view all activity on a prompt. Every test, change, and remix is tracked and can be viewed by your team.
With our remix functionality, multiple team members can be improving a prompt at the same time. All without affecting the production version of the prompt.
A powerful testing suite
Quickly run different permuatations of a prompt to get the best responses. Try different variables, models, and more. You can even create testing flows to automatically run with every new saved update to a prompt.
Click get started to sign up and start onboarding for your team.
Powerful APIs to enhance your AI workflows
Our API allows you to quickly retrieve and run the prompts stored in Izlo. When you update a prompt, automatically sync it to your app or website, all without having to redeploy.
Example Scenarios
Use this API call to list all of the prompts that you company has stored on Izlo.
The API returns a list of all of your prompts with data for you to leverage in other API calls.
fetch('https://getizlo.com/api/v1/list-prompts/', {
method: 'GET',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer ' + YOUR_API_KEY,
},
})
[
{
"id": "PROMPT_ID",
"name": "Excel Budget Tracker Setup",
"prompt_text": "Could you guide me on how to set up an automated Excel spreadsheet to track monthly income and expenses? Please provide step-by-step instructions and the necessary formulas.",
"description": "This prompt seeks guidance on creating a comprehensive Excel spreadsheet for tracking monthly income and expenses. Follow the steps and formulas provided to get a holistic view of your finances.",
"created_at": "2023-09-18T11:00:46.702877-05:00",
"updated_at": "2023-09-18T11:00:46.702889-05:00"
},
// More objects continued
]