A modern toolkit for creating, managing, and testing LLM prompts as code.
Project description
aydie-prompt-forge
A modern toolkit for creating, managing, and testing LLM prompts as code.
aydie-prompt-forge is a lightweight but powerful Python library designed to bring standard software engineering discipline to the world of prompt engineering. It helps you move away from messy, hardcoded strings and manage your prompts in a structured, version-controlled, and testable way.
This library is part of the Aydie family of developer tools.
Why aydie-prompt-forge?
In modern AI applications, prompts are not just text—they are a critical part of your application's logic. They deserve to be treated like code. aydie-prompt-forge provides the framework to do just that.
- Reliability & Reproducibility: Stop guessing how a prompt change will affect your app. With a structured repository, you can version and test your prompts to ensure consistent, high-quality outputs.
- Improved Collaboration: Enable product managers, developers, and QA engineers to collaborate seamlessly. Prompts are defined in simple, human-readable YAML files, separate from the application code.
- Increased Efficiency: Automate the loading, templating, and management of your prompts. Spend less time on boilerplate and more time on crafting the perfect prompt.
- Robust Error Handling: With custom, branded exceptions (
AydieException), you can write clean, predictable error-handling logic for all prompt-related operations.
Core Features
- Structured Prompt Repository: Define all your prompts in a clean, simple
YAMLfile with rich metadata likeversion,author,tags, anddescription. - Powerful Templating: Easily load prompts and fill them with dynamic data using a simple, intuitive
.fill()method. - Version Control Friendly: Because your prompts are stored as text, you can use Git to track changes, review diffs, and manage your prompt history just like any other codebase.
- Lightweight & Dependency-Free: With only
PyYAMLas a dependency,aydie-prompt-forgeis easy to add to any project without unnecessary bloat.
Installation
You can install aydie-prompt-forge directly from PyPI:
pip install aydie-prompt-forge
Quick Start Guide
Getting started with aydie-prompt-forge is easy.
1. Create your prompts.yml file
First, create a prompts.yml file to store your prompts. This file should contain a list of prompt objects.
prompts.yml:
- id: summarize_article_v1.1
author: "Aydie"
version: "1.1"
description: "Summarizes a long article into three concise bullet points."
tags: [summarization, production]
model_parameters:
temperature: 0.6
max_tokens: 150
template: |
You are a world-class editor. Summarize the following article into
exactly three concise bullet points.
ARTICLE:
---
{article_text}
---
- id: sentiment_analysis_v1
author: "Aydie"
version: "1.0"
description: "Analyzes the sentiment of a user's comment."
tags: [classification, beta]
template: "Is the sentiment of the following comment positive, negative, or neutral?\n\nCOMMENT: {user_comment}"
2. Load and use your prompts in Python
Now, you can use the load() function to parse your repository and use your prompts.
main.py:
import aydie_prompt_forge
# Define the path to your prompt repository
PROMPT_FILE = "prompts.yml"
try:
# 1. Load the entire repository from the file.
repo = aydie_prompt_forge.load(PROMPT_FILE)
print("Repository loaded successfully!")
# 2. Get a specific prompt by its unique ID.
summarize_prompt = repo.get("summarize_article_v1.1")
if summarize_prompt:
# 3. Prepare your dynamic data.
long_article = "Generative AI is a type of artificial intelligence technology that can produce various types of content, including text, imagery, audio and synthetic data."
# 4. Fill the prompt template with your data.
final_prompt = summarize_prompt.fill(article_text=long_article)
# The final_prompt is now ready to be sent to an LLM API!
print("\n--- Generated Prompt ---")
print(final_prompt)
print("------------------------")
# You can also access the metadata
print(f"\nModel parameters to use: {summarize_prompt.model_parameters}")
except aydie_prompt_forge.AydieException as e:
# Catch any errors from the aydie-prompt-forge library, like a malformed file.
print(f"An error occurred with aydie-prompt-forge: {e}")
except FileNotFoundError:
print(f"Error: The file '{PROMPT_FILE}' was not found.")
Contributing
Contributions are welcome! If you have an idea for a new feature, find a bug, or want to improve the documentation, please open an issue or submit a pull request on our GitHub repository.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Connect with Me
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file aydie_prompt_forge-1.2.2b1.tar.gz.
File metadata
- Download URL: aydie_prompt_forge-1.2.2b1.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7fd0e90bfb0f8dde36bdd3734cd0aa77a65d39ff66e1db93d676737f386c020c
|
|
| MD5 |
024bda1648f713132ae441d5e42fefe3
|
|
| BLAKE2b-256 |
0fb1a6c6e1e045a1fff8be103d04c0cfeda53449fda2cd58ece45ea0c2234d8a
|
File details
Details for the file aydie_prompt_forge-1.2.2b1-py3-none-any.whl.
File metadata
- Download URL: aydie_prompt_forge-1.2.2b1-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7c2b69a6ec4cb51e74e0bb547fea3ab3c97f3b8ffb4482fc0da3b283f47c867
|
|
| MD5 |
8b94732bdf8a324a5b9b67ce0a70b950
|
|
| BLAKE2b-256 |
a1e7943402abcf20c357ce3113f590ad74741188dd07e5bcd68e402c311e1287
|