Skip to main content

An open-source prompt engineering framework.

Project description

Lilypad

An open-source LLM engineering platform built on these principles:

  • Building with LLMs introduces non-determinisim to your code, which requires...
  • Tracking all input/output pairs and the exact version of the code that produced them so you can...
  • Continuously evaluate and optimize your code, which requires...
  • Involving business users and domain experts.

[!IMPORTANT] Lilypad is still in beta

This means that things like the user interface, database schemas, etc. are still subject to change. We do not yet recommend fully relying on this project in production, but we've found it works quite well in its current stage.

If you're interested in participating in the closed beta of Lilypad Pro, join our community and DM William Bakst :)

We also welcome contributions with open arms! If you're interested in contributing, just do it! We're here to help.

Quickstart

To get started with Lilypad:

  1. Create an account at https://app.lilypad.so. You can also run Lilypad locally if you'd prefer.
  2. Navigate to your organization settings
  3. Create a project, and then create an API key for that project. a. Save your LILYPAD_PROJECT_ID and LILYPAD_API_KEY (e.g. in a .env file).
  4. Install Lilypad: uv add "python-lilypad[openai]" # specify your provider of choice
  5. Run your first generation:
import os

import lilypad
from openai import OpenAI  # use your provider of choice

os.environ["LILYPAD_PROJECT_ID"] = "..."
os.environ["LILYPAD_API_KEY"] = "..."
os.environ["OPENAI_API_KEY"] = "..."

lilypad.configure()    # Automatically trace LLM API calls
client = OpenAI()


@lilypad.generation()  # Automatically version non-deterministic functions
def answer_question(question: str) -> str | None:
    completion = client.chat.completions.create(
        model="gpt-4o",
        messages=[
            {"role": "system", "content": "You are a helpful assistant."},
            {"role": "user", "content": f"Answer this question: {question}"},
        ],
    )
    return completion.choices[0].message.content


answer = answer_question("What is the capital of France?")
print(answer)
# > The capital of France is Paris.

And that's it! Now you've versioned and traced your first non-deterministic function with Lilypad.

Usage

We are actively working on this library and it's documentation, which you can find here

Versioning

Lilypad uses Semantic Versioning

License

This project uses a dual-license model:

Open-Source License (MIT)

Except for the contents and code contained in any ee directory or sub-directory of this repository, which is covered by a commercial license (see below), all code in this repository is licensed under the terms of the MIT License.

Enterprise Edition (EE) License

The contents and code of any ee directory or sub-directory of this repository are licensed under the Enterprise Edition (EE) License. This content and code is only available to users using the Lilypad App or those with a valid Enterprise Edition (EE) License. See ee/LICENSE for the full terms.

Self-Hosting:

For those looking to self-host the Enterprise Edition (EE) of Lilypad, please reach out to sales@mirascope.com.

You can find more information about self-hosting here.

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

python_lilypad-0.0.34.tar.gz (828.0 kB view details)

Uploaded Source

Built Distribution

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

python_lilypad-0.0.34-py3-none-any.whl (1.6 MB view details)

Uploaded Python 3

File details

Details for the file python_lilypad-0.0.34.tar.gz.

File metadata

  • Download URL: python_lilypad-0.0.34.tar.gz
  • Upload date:
  • Size: 828.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.5.6

File hashes

Hashes for python_lilypad-0.0.34.tar.gz
Algorithm Hash digest
SHA256 abe7373cec6e00f1ef82aef3edfb16935ad4dc270ea7806689d6c9a3f47a96fe
MD5 dfe12c4661ea3ffec65fb80cdccc778e
BLAKE2b-256 9fca0aa00c0cd8cdeda217fd8958a26635aeaa88a4f675820d04b33542af49ee

See more details on using hashes here.

File details

Details for the file python_lilypad-0.0.34-py3-none-any.whl.

File metadata

File hashes

Hashes for python_lilypad-0.0.34-py3-none-any.whl
Algorithm Hash digest
SHA256 0aebee4c138e7b5c430673fbbabb704d22abd9337f515d0372e0e5bdd1dbe14b
MD5 6ef1da40fd3ba4e61a9fea3c3cd8cf04
BLAKE2b-256 a3ca3c941f0655dafec21be28f71728b4dca5a259ecf4b96d14dc8a7b0e25a56

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