Skip to main content

A modern toolkit for creating, managing, and testing LLM prompts as code.

Project description

Aydie Banner

aydie-prompt-forge

PyPI version License: MIT Python Versions

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 YAML file with rich metadata like version, author, tags, and description.
  • 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 PyYAML as a dependency, aydie-prompt-forge is 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 prompt_forge

# Define the path to your prompt repository
PROMPT_FILE = "prompts.yml"

try:
    # 1. Load the entire repository from the file.
    repo = 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 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

GitHub Source Code Website LinkedIn Twitter/X Instagram YouTube GitLab Email

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aydie_prompt_forge-1.2.0b0.tar.gz (8.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aydie_prompt_forge-1.2.0b0-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file aydie_prompt_forge-1.2.0b0.tar.gz.

File metadata

  • Download URL: aydie_prompt_forge-1.2.0b0.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.7

File hashes

Hashes for aydie_prompt_forge-1.2.0b0.tar.gz
Algorithm Hash digest
SHA256 7e429d7bdc2732bb0b43c4cc8d03af4df2346b76c8dcef72e3059b4be58c464b
MD5 7b201f0bee121dca62390c5d586fbf6a
BLAKE2b-256 f76caa0eed2d2022ece963cc1300c3e562a7554927314ff8d3cb8efd462871a5

See more details on using hashes here.

File details

Details for the file aydie_prompt_forge-1.2.0b0-py3-none-any.whl.

File metadata

File hashes

Hashes for aydie_prompt_forge-1.2.0b0-py3-none-any.whl
Algorithm Hash digest
SHA256 e880bb343559a96c07021b7775d34848cf08ea1d095916cd5a75c03ed368bde9
MD5 f1203276ac2ce38594096b0c66517d73
BLAKE2b-256 b734842c977a802818ae8558e0b590f9fb6475a707b737e4f9ed4cad0bee6ec3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page