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.1.tar.gz (8.1 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.1-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file aydie_prompt_forge-1.2.1.tar.gz.

File metadata

  • Download URL: aydie_prompt_forge-1.2.1.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for aydie_prompt_forge-1.2.1.tar.gz
Algorithm Hash digest
SHA256 73fdc26096b6ef9471a3cf1e2214264e551809772884b2bc716631df461390f6
MD5 c5e82ad055f232328a6e6f5edd593dcb
BLAKE2b-256 20cc130c50257c6cf745ac239a0990b8978d80979ae9158faeea8037e6b5591f

See more details on using hashes here.

File details

Details for the file aydie_prompt_forge-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for aydie_prompt_forge-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 1dffb581a43365934c38cc30d286b3e3b979e81e732830208ebf477cc6ab335a
MD5 2be3560aca9de57cb2d8e7058a6555db
BLAKE2b-256 cf737bc12f0e3dad8620d3bee40eab34964f5136427fcabf5b2d53cebea228c2

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